/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Warm and inviting ice cream palette */
    --primary-coral: #FF6B8A;
    --primary-peach: #FF8E72;
    --primary-cream: #FFF8E7;
    --secondary-mint: #90E0C6;
    --secondary-lavender: #B794F6;
    --secondary-sky: #87CEEB;

    /* Neutral Colors */
    --dark-charcoal: #2D3748;
    --medium-gray: #4A5568;
    --light-gray: #718096;
    --soft-white: #FAFAFA;
    --pure-white: #FFFFFF;

    /* Accent Colors */
    --warm-gold: #F6E05E;
    --success-green: #68D391;
    --warning-orange: #FBB040;

    /* Pattern URL resolves relative to this CSS file, so it works from / and /pages/ */
    --pattern-url: url('../images/pattern-bg.png');

    /* Card design tokens — single source of truth for all card variants */
    --card-radius: 20px;
    --card-radius-lg: 28px;
    --card-radius-pill: 999px;
    --card-pad: 1.75rem;
    --card-pad-lg: 2.25rem;
    --card-border: 1px solid rgba(255, 107, 138, 0.10);
    --card-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
    --card-shadow-md: 0 10px 28px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 20px 44px rgba(255, 107, 138, 0.18);
    --card-lift-hover: translateY(-6px);
    --icon-disc-size: 60px;
    --icon-disc-bg-coral: rgba(255, 107, 138, 0.12);
    --icon-disc-bg-peach: rgba(255, 142, 114, 0.14);
    --icon-disc-bg-mint: rgba(144, 224, 198, 0.20);
    --icon-disc-bg-lavender: rgba(183, 148, 246, 0.16);
    --icon-disc-bg-gold: rgba(246, 224, 94, 0.22);
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-charcoal);
    background-color: #FFF6F0;
    position: relative;
}

/* Seamless ice cream pattern as fixed background layer */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: var(--pattern-url);
    background-size: 360px 360px;
    background-repeat: repeat;
    opacity: 0.7;
    z-index: -2;
    pointer-events: none;
}

/* Soft pastel gradient wash above pattern for warmth */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 248, 231, 0.25) 0%, rgba(255, 209, 220, 0.15) 50%, rgba(144, 224, 198, 0.18) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Reveal-on-scroll baseline (used by script.js) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 rgba(255, 107, 138, 0.10), 0 4px 24px rgba(92, 61, 42, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1px 0 rgba(255, 107, 138, 0.12), 0 6px 28px rgba(92, 61, 42, 0.10);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand {
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-brand:hover { transform: translateY(-1px); }

.nav-brand .brand-cone {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.10));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-brand:hover .brand-cone {
    filter: drop-shadow(0 4px 8px rgba(255, 107, 138, 0.20));
    transform: rotate(-3deg);
}

.nav-brand .brand-wordmark {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.nav-brand .brand-text {
    font-family: 'Fredoka', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.85rem;
    line-height: 0.95;
    color: #5C3D2A; /* warm sepia matching hero logo */
    letter-spacing: -0.005em;
    text-shadow:
        0 1px 0 #FFF8E7,
        0 2px 1px rgba(92, 61, 42, 0.25),
        0 3px 6px rgba(92, 61, 42, 0.15);
    transition: color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.nav-brand .brand-tag {
    font-family: 'Lora', 'Georgia', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1;
    margin-top: 6px;
    color: #5C3D2A;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-brand:hover .brand-text {
    color: #6B4226;
}

@media (max-width: 768px) {
    .nav-brand .brand-cone { height: 46px; }
    .nav-brand .brand-text { font-size: 1.5rem; }
    .nav-brand .brand-tag { font-size: 0.66rem; margin-top: 4px; }
}

@media (max-width: 480px) {
    .nav-brand .brand-cone { height: 40px; }
    .nav-brand .brand-text { font-size: 1.25rem; }
    .nav-brand .brand-tag { font-size: 0.58rem; margin-top: 2px; }
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-coral);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-coral);
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 248, 231, 0.85) 0%, rgba(135, 206, 235, 0.55) 35%, rgba(144, 224, 198, 0.65) 100%);
    padding: 120px 40px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 142, 114, 0.25), transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(183, 148, 246, 0.25), transparent 55%);
    pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-coral), var(--primary-peach));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-coral);
    border: 2px solid var(--primary-coral);
}

.btn-secondary:hover {
    background: var(--primary-coral);
    color: white;
    transform: translateY(-2px);
}

/* Hero Image Gallery */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    height: 500px;
    background: transparent;
    animation: float 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-logo-container:hover {
    transform: translateY(-10px);
}

.hero-logo-large {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.hero-logo-container:hover .hero-logo-large {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Ice Cream Gallery */
.ice-cream-gallery {
    padding: 80px 0;
    background: transparent;
}

.section-lead {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 720px;
    margin: -2rem auto 3rem;
    line-height: 1.6;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.photo-tile {
    display: block;
    background: white;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 107, 138, 0.10);
}

.photo-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(255, 107, 138, 0.20);
}

.photo-tile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(255, 248, 231, 0.6), rgba(255, 209, 220, 0.45));
    padding: 12px;
    transition: transform 0.4s ease;
}

.photo-tile:hover img {
    transform: scale(1.04);
}

.photo-tile-caption {
    padding: 1.1rem 1.4rem 1.4rem;
}

.photo-tile-caption h3 {
    color: var(--primary-coral);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.photo-tile-caption p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.45;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.gallery-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.ice-cream-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.gallery-item:nth-child(2) .ice-cream-visual {
    animation-delay: 1s;
}

.gallery-item:nth-child(3) .ice-cream-visual {
    animation-delay: 2s;
}

.gallery-item:nth-child(4) .ice-cream-visual {
    animation-delay: 3s;
}

/* Sundae Visual */
.sundae-glass {
    position: relative;
    width: 80px;
    height: 100px;
    background: linear-gradient(to bottom, transparent 30%, rgba(255, 255, 255, 0.3) 30%);
    border: 3px solid var(--light-gray);
    border-radius: 0 0 40px 40px;
    border-top: none;
}

.scoop-stack {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.mini-scoop {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: -15px;
    position: relative;
}

.cherry {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #FF0000;
    border-radius: 50%;
}

.cherry::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 8px;
    background: #00AA00;
}

.whipped-cream {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.9;
}

.hot-fudge {
    position: absolute;
    top: 10px;
    left: 20%;
    width: 60%;
    height: 40px;
    background: linear-gradient(45deg, #8B4513, #654321);
    border-radius: 10px;
    opacity: 0.8;
}

/* Milkshake Visual */
.shake-glass {
    position: relative;
    width: 60px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary-cream) 0%, var(--secondary-mint) 100%);
    border: 3px solid var(--light-gray);
    border-radius: 10px;
}

.shake-content {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    height: 80%;
    background: linear-gradient(to bottom, var(--primary-peach) 0%, var(--primary-coral) 100%);
    border-radius: 5px;
}

.shake-foam {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 25px;
    background: #FFFFFF;
    border-radius: 50%;
    opacity: 0.9;
}

.straw {
    position: absolute;
    right: -5px;
    top: -20px;
    width: 4px;
    height: 60px;
    background: linear-gradient(45deg, #FF0000, #FFFF00);
    border-radius: 2px;
}

/* Banana Split Visual */
.split-dish {
    position: relative;
    width: 100px;
    height: 40px;
    background: linear-gradient(to bottom, #FFFFFF, #F0F0F0);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
}

.banana-slices {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.banana-slice {
    width: 30px;
    height: 15px;
    background: linear-gradient(45deg, #FFE135, #FFF8DC);
    border-radius: 50%;
    border: 1px solid #E6D200;
}

.triple-scoops {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.triple-scoops .mini-scoop {
    width: 25px;
    height: 25px;
    margin-bottom: 0;
}

.split-toppings {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

.nuts {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 4px;
    height: 4px;
    background: #8B4513;
    border-radius: 50%;
    box-shadow: 10px 0 0 #8B4513, 20px 0 0 #8B4513, 30px 0 0 #8B4513;
}

.cherries {
    position: absolute;
    top: 0;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #FF0000;
    border-radius: 50%;
    box-shadow: 15px 3px 0 #FF0000;
}

/* Snow Cone Visual */
.cone-cup {
    position: relative;
    width: 60px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #FFFFFF);
    border: 2px solid var(--light-gray);
    border-radius: 0 0 30px 30px;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}

.shaved-ice {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 60px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.ice-layer {
    position: absolute;
    width: 100%;
    height: 33.33%;
    border-radius: inherit;
}

.ice-layer.blue {
    top: 0;
    background: linear-gradient(45deg, #87CEEB, #4169E1);
}

.ice-layer.red {
    top: 33.33%;
    background: linear-gradient(45deg, #FF6B6B, #FF1493);
}

.ice-layer.yellow {
    top: 66.66%;
    background: linear-gradient(45deg, #FFE135, #FFA500);
}

.gallery-item h3 {
    color: var(--dark-charcoal);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.55) 0%, rgba(255, 248, 231, 0.45) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-charcoal);
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: var(--card-pad-lg) var(--card-pad);
    border-radius: var(--card-radius);
    background: white;
    box-shadow: var(--card-shadow-md);
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: var(--card-lift-hover);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    width: var(--icon-disc-size);
    height: var(--icon-disc-size);
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--icon-disc-bg-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-coral);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08);
}

/* Rotate accent colors across feature-cards in the same grid for visual rhythm */
.features-grid > .feature-card:nth-child(3n+2) .feature-icon { background: var(--icon-disc-bg-peach); color: var(--primary-peach); }
.features-grid > .feature-card:nth-child(3n+3) .feature-icon { background: var(--icon-disc-bg-mint); color: #2D8068; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--dark-charcoal);
    font-weight: 600;
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Location Preview */
.location-preview {
    padding: 80px 0;
    background: transparent;
}

.locations-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.location-card-preview {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.location-card-preview:hover {
    transform: translateY(-10px);
}

.location-map-preview {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.location-map-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-info-preview {
    padding: 2rem;
}

.location-info-preview h3 {
    color: var(--primary-coral);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-info-preview h3 i {
    margin-right: 0.5rem;
}

.location-info-preview p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-info-preview p strong {
    color: var(--dark-charcoal);
}

.locations-cta {
    text-align: center;
}

.placeholder-map {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.placeholder-map i {
    font-size: 4rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.placeholder-map p {
    color: #666;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 248, 231, 0.55) 0%, rgba(255, 248, 231, 0.45) 100%);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: var(--card-pad-lg) var(--card-pad);
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow-md);
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: var(--card-lift-hover);
    box-shadow: var(--card-shadow-hover);
}

.contact-item > i {
    flex-shrink: 0;
    width: var(--icon-disc-size);
    height: var(--icon-disc-size);
    border-radius: 50%;
    background: var(--icon-disc-bg-coral);
    color: var(--primary-coral);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info > .contact-item:nth-child(2) > i { background: var(--icon-disc-bg-mint); color: #2D8068; }
.contact-info > .contact-item:nth-child(3) > i { background: var(--icon-disc-bg-peach); color: var(--primary-peach); }

.contact-item h3 {
    color: var(--dark-charcoal);
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.contact-item p,
.contact-item a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--primary-coral);
}

.social-links-inline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links-inline a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links-inline a:hover {
    color: var(--primary-coral);
}

.social-links-inline i {
    width: 20px;
    text-align: center;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b9d;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-coral);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:nth-child(2) {
    background: linear-gradient(45deg, var(--primary-peach), var(--secondary-lavender));
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 30px 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .locations-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 30px;
    }
    
    .hero-logo-container {
        max-width: 400px;
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-item {
        padding: 1.5rem;
    }
    
    .ice-cream-visual {
        height: 100px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .hero-logo-container {
        max-width: 320px;
        height: 280px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ice-cream-visual {
        height: 80px;
    }
    
    .gallery-item h3 {
        font-size: 1.1rem;
    }
    
    .sundae-glass, .shake-glass {
        transform: scale(0.8);
    }
    
    .split-dish, .cone-cup {
        transform: scale(0.8);
    }
}