/* ============================================
   PINK CAKES BY MARINA - Los Angeles Cake Artist
   Brand: Pink, Playful, Feminine
   Style: Bright, Fun, LA Vibes
   ============================================ */

/* === VARIABLES === */
:root {
    /* Fonts */
    --font-display: 'Pacifico', 'Dancing Script', cursive;
    --font-body: 'Poppins', -apple-system, sans-serif;

    /* Brand Colors - PINK THEME! */
    --color-primary: #FF69B4;          /* Hot pink - main brand color */
    --color-primary-light: #FF85C1;
    --color-primary-dark: #E05A9E;

    --color-secondary: #FFB6C1;        /* Light pink */
    --color-secondary-light: #FFC8D6;
    --color-secondary-dark: #F5A3B0;

    --color-accent: #FF1493;           /* Deep pink - for CTAs */
    --color-accent-light: #FF5CAD;
    --color-accent-dark: #D10077;

    --color-cream: #FFF0F5;            /* Lavender blush - main bg */
    --color-white: #FFFFFF;

    /* Glow Colors */
    --color-glow-primary: rgba(255, 105, 180, 0.4);
    --color-glow-accent: rgba(255, 20, 147, 0.4);

    /* Backgrounds */
    --color-bg: #FFF0F5;               /* Lavender blush main */
    --color-bg-light: #FFFAFA;         /* Snow white */
    --color-bg-pink: #FFE4EC;          /* Soft pink sections */
    --color-bg-dark: #FF69B4;          /* Hot pink for contrast sections */
    --color-bg-elevated: #FFFAFA;      /* For shared components */
    --color-bg-card: #FFFFFF;          /* Card backgrounds */

    /* Text */
    --color-text: #4A4A4A;             /* Dark gray on light bg */
    --color-text-dark: #333333;
    --color-text-secondary: #6B6B6B;
    --color-text-dim: #888888;
    --color-text-muted: #999999;
    --color-text-light: #FFFFFF;

    /* Borders */
    --border-subtle: rgba(255, 105, 180, 0.15);
    --border-default: rgba(255, 105, 180, 0.25);
    --border-accent: rgba(255, 20, 147, 0.5);

    /* Radius - PLAYFUL rounded corners */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--color-primary);
    color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-spiral {
    position: relative;
    width: 70px;
    height: 70px;
}

.loader-spiral span {
    position: absolute;
    border: 4px solid transparent;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spiralSpin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-spiral span:nth-child(1) {
    width: 70px;
    height: 70px;
    animation-delay: -0.4s;
}

.loader-spiral span:nth-child(2) {
    width: 52px;
    height: 52px;
    top: 9px;
    left: 9px;
    animation-delay: -0.25s;
    border-top-color: var(--color-accent);
}

.loader-spiral span:nth-child(3) {
    width: 34px;
    height: 34px;
    top: 18px;
    left: 18px;
    animation-delay: -0.1s;
    border-top-color: var(--color-secondary);
}

@keyframes spiralSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--color-primary);
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* === PROGRESS BAR === */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
    z-index: 1000;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--color-glow-primary);
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: 14px 48px;
    background: rgba(255, 240, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(255, 105, 180, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s var(--ease-out);
}

.nav-logo:hover {
    transform: scale(1.03);
}

.logo-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(255, 105, 180, 0.3));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--color-primary);
    text-shadow: 0 2px 8px rgba(255, 105, 180, 0.2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 4px 20px var(--color-glow-primary);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--color-glow-accent);
}

.nav-cta svg {
    transition: transform 0.3s var(--ease-out);
}

.nav-cta:hover svg {
    transform: translateX(4px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s var(--ease-out);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: var(--color-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.cta {
    color: var(--color-primary);
    text-shadow: 0 0 20px var(--color-glow-primary);
}

@media (max-width: 768px) {
    .nav {
        padding: 14px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px 80px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-pink) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1558636508-e0db3814bd1d?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
    filter: saturate(1.2);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(255, 240, 245, 0.9) 0%,
            rgba(255, 228, 236, 0.85) 50%,
            rgba(255, 240, 245, 0.95) 100%),
        radial-gradient(ellipse at 70% 20%, rgba(255, 105, 180, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(255, 20, 147, 0.1) 0%, transparent 40%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 105, 180, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 105, 180, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
}

/* Floating decorations - hearts and sprinkles */
.hero-floats {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.float-heart {
    position: absolute;
    font-size: 24px;
    animation: floatHeart 10s ease-in-out infinite;
    opacity: 0.6;
}

.float-heart:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.float-heart:nth-child(2) { left: 85%; top: 30%; animation-delay: 2s; }
.float-heart:nth-child(3) { left: 15%; top: 75%; animation-delay: 4s; }
.float-heart:nth-child(4) { left: 75%; top: 65%; animation-delay: 1s; }
.float-heart:nth-child(5) { left: 50%; top: 15%; animation-delay: 3s; }

.float-sprinkle {
    position: absolute;
    width: 8px;
    height: 24px;
    background: var(--color-primary);
    border-radius: 4px;
    animation: floatSprinkle 12s ease-in-out infinite;
    opacity: 0.4;
}

.float-sprinkle:nth-child(6) { left: 20%; top: 40%; background: var(--color-accent); animation-delay: 0.5s; transform: rotate(45deg); }
.float-sprinkle:nth-child(7) { left: 70%; top: 20%; background: var(--color-secondary); animation-delay: 2.5s; transform: rotate(-30deg); }
.float-sprinkle:nth-child(8) { left: 80%; top: 70%; background: var(--color-primary); animation-delay: 4.5s; transform: rotate(60deg); }

@keyframes floatHeart {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(15px, -20px) scale(1.1) rotate(10deg);
    }
    50% {
        transform: translate(-10px, -30px) scale(1) rotate(-5deg);
    }
    75% {
        transform: translate(20px, -15px) scale(1.15) rotate(8deg);
    }
}

@keyframes floatSprinkle {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-25px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    text-align: center;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(255, 105, 180, 0.15);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
    backdrop-filter: blur(10px);
}

.badge-icon {
    color: var(--color-accent);
    filter: drop-shadow(0 2px 4px rgba(255, 20, 147, 0.3));
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.03em;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 9vw, 80px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.5s forwards;
    color: var(--color-primary);
    text-shadow: 0 4px 20px var(--color-glow-primary);
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--color-accent);
    text-shadow:
        0 0 40px rgba(255, 20, 147, 0.5),
        0 4px 20px rgba(255, 20, 147, 0.3);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.6s forwards;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 0.9s forwards;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 6px 30px var(--color-glow-primary);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-glow-accent);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid rgba(255, 105, 180, 0.4);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 105, 180, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-dim);
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out) 1.2s forwards;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hero-scroll:hover {
    color: var(--color-primary);
}

.hero-scroll span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: bounce 2s ease-in-out infinite;
    color: var(--color-primary);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 24px 60px;
    }

    .hero-floats {
        opacity: 0.5;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* === MARQUEE BANNER === */
.marquee-banner {
    padding: 20px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    position: relative;
}

.marquee-banner::before,
.marquee-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-banner::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
}

.marquee-banner::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 100%);
}

.marquee-track {
    display: flex;
    gap: 50px;
    animation: marqueeScroll 35s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-white);
    flex-shrink: 0;
}

.marquee-divider {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    flex-shrink: 0;
    align-self: center;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === SECTIONS === */
.section {
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover no-repeat;
    filter: grayscale(100%);
    opacity: 0.03;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 105, 180, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 20, 147, 0.04) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.section-pink {
    background: var(--color-bg-pink);
}

.section-white {
    background: var(--color-white);
}

.section-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(255, 105, 180, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    color: var(--color-text-dark);
    margin-bottom: 16px;
}

.section-title em {
    font-style: normal;
    color: var(--color-primary);
}

.section-desc {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 24px;
    }
}

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content .section-label {
    display: inline-block;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--color-primary);
    font-weight: 600;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 105, 180, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 105, 180, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 24px;
    color: var(--color-white);
}

.image-text {
    font-family: var(--font-display);
    font-size: 26px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.image-sub {
    font-size: 14px;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 14px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.08);
    transition: all 0.3s var(--ease-out);
}

.highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
}

.highlight-icon {
    color: var(--color-primary);
}

.highlight-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .section-label {
        text-align: center;
        display: block;
    }

    .about-text {
        text-align: center;
    }
}

/* === GALLERY SECTION === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(255, 105, 180, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s var(--ease-out);
}

.gallery-item:hover img {
    filter: grayscale(0%) saturate(1.1);
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(255, 20, 147, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* === SERVICES SECTION === */
.section-cakes {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
}

.section-cakes::before {
    opacity: 0.08;
    filter: grayscale(100%) brightness(0.5);
}

.section-cakes .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.section-cakes .section-title {
    color: var(--color-white);
}

.section-cakes .section-title em {
    color: var(--color-cream);
}

.section-cakes .section-desc {
    color: rgba(255, 255, 255, 0.9);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(10px);
    text-align: center;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* === CONTACT SECTION === */
.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    color: var(--color-primary);
    margin-bottom: 24px;
}

.contact-desc {
    font-size: 18px;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
    box-shadow: 0 6px 30px var(--color-glow-primary);
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--color-glow-accent);
}

.contact-btn.phone {
    background: linear-gradient(135deg, #4A90D9, #357ABD);
    box-shadow: 0 6px 30px rgba(74, 144, 217, 0.3);
}

.contact-btn.phone:hover {
    box-shadow: 0 12px 40px rgba(74, 144, 217, 0.4);
}

.contact-social {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 105, 180, 0.1);
    border: 2px solid rgba(255, 105, 180, 0.3);
    border-radius: var(--radius);
    color: var(--color-primary);
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--color-glow-primary);
}

.contact-location {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 105, 180, 0.2);
}

.location-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--color-text-secondary);
}

.location-text svg {
    color: var(--color-primary);
}

/* === FOOTER === */
.footer {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent-dark));
    color: var(--color-white);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&q=80') center/cover no-repeat;
    opacity: 0.05;
    filter: grayscale(100%) brightness(0.5);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 10%, rgba(255, 182, 193, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 60px 48px 50px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    font-size: 36px;
}

.footer-logo .logo-text {
    font-size: 28px;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.footer-social .social-link:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    padding: 20px 48px;
    background: rgba(0, 0, 0, 0.15);
    text-align: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 24px 40px;
    }

    .footer-bottom {
        padding: 18px 24px;
    }
}

/* === SCROLL REVEAL ANIMATIONS === */
.section-header,
.about-grid,
.gallery-item,
.service-card,
.contact-content {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition:
        opacity 1s var(--ease-out),
        transform 1s var(--ease-out),
        filter 0.8s var(--ease-out);
}

.section-header.revealed,
.about-grid.revealed,
.gallery-item.revealed,
.service-card.revealed,
.contact-content.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
