/* ================================================
   MICHELLY - Romantic Feminine Gallery Theme
   Colors: Rose Pink, Chocolate Brown, Cream, Gold
   ================================================ */

/* CSS Variables */
:root {
    --pink-100: #fff0f3;
    --pink-200: #ffd6e0;
    --pink-300: #ffb3c6;
    --pink-400: #ff8fa3;
    --pink-500: #ff6b8a;
    --pink-600: #e84670;
    --pink-700: #c9184a;

    --chocolate-100: #f5e6d3;
    --chocolate-200: #e8d0b3;
    --chocolate-300: #d4a574;
    --chocolate-400: #b8865a;
    --chocolate-500: #8b6f47;
    --chocolate-600: #6b4f30;
    --chocolate-700: #4a3520;

    --cream: #fdf8f0;
    --cream-dark: #f8f0e3;
    --gold: #d4a853;
    --gold-light: #f0d68a;

    --rose-white: #fff5f7;
    --rose-bg: #fef0f3;

    --text-dark: #3d2c2c;
    --text-medium: #6b5050;
    --text-light: #9a7e7e;

    --shadow-sm: 0 2px 8px rgba(139, 111, 71, 0.08);
    --shadow-md: 0 4px 20px rgba(139, 111, 71, 0.12);
    --shadow-lg: 0 8px 40px rgba(139, 111, 71, 0.16);
    --shadow-xl: 0 16px 60px rgba(139, 111, 71, 0.2);
    --shadow-pink: 0 4px 20px rgba(255, 107, 138, 0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --font-display: 'Dancing Script', cursive;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body[data-theme="noturno"] {
    --pink-100: #2a1a1d;
    --pink-200: #3a2229;
    --pink-300: #5a2a37;
    --pink-400: #893a4f;
    --pink-500: #c04b69;
    --pink-600: #db5f81;
    --pink-700: #f0749a;
    --chocolate-100: #271f1b;
    --chocolate-200: #3a2c24;
    --chocolate-300: #5a4032;
    --chocolate-400: #7a563d;
    --chocolate-500: #9f704e;
    --chocolate-600: #c18a62;
    --chocolate-700: #e0a67a;
    --cream: #141112;
    --rose-bg: #1b1416;
    --text-dark: #f8e9ed;
    --text-medium: #d9bdc6;
    --text-light: #b18d97;
}

body[data-theme="michelly"] {
    --pink-100: #fff1f3;
    --pink-200: #ffd7de;
    --pink-300: #ffb3c1;
    --pink-400: #ff7f98;
    --pink-500: #e63956;
    --pink-600: #c81f42;
    --pink-700: #9d1331;
    --chocolate-100: #faece5;
    --chocolate-200: #f5d6ca;
    --chocolate-300: #eeb4a2;
    --chocolate-400: #d88776;
    --chocolate-500: #bd5d50;
    --chocolate-600: #953a35;
    --chocolate-700: #6f2329;
    --cream: #fff7f8;
    --rose-bg: #ffecee;
    --text-dark: #4e2028;
    --text-medium: #7a3a44;
    --text-light: #9f5a66;
    --font-display: 'Great Vibes', cursive;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--pink-300);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--pink-400);
}

/* Selection */
::selection {
    background: var(--pink-200);
    color: var(--chocolate-700);
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 179, 198, 0.2);
}

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

.theme-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 179, 198, 0.4);
    border-radius: var(--radius-full);
    padding: 4px;
    gap: 4px;
    box-shadow: var(--shadow-sm);
}

.theme-btn {
    border: none;
    border-radius: var(--radius-full);
    padding: 7px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-medium);
    transition: all var(--transition-base);
}

.theme-btn.active {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: #fff;
    box-shadow: var(--shadow-pink);
}

.mobile-theme-switcher {
    margin-top: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--chocolate-600);
    transition: transform var(--transition-spring);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-600);
    background: var(--pink-100);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--pink-500);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1002;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--chocolate-600);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 248, 240, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 16px 40px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--chocolate-600);
    transition: all var(--transition-base);
}

.mobile-nav-link:hover {
    color: var(--pink-600);
    transform: scale(1.05);
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
        135deg,
        var(--pink-100) 0%,
        var(--cream) 25%,
        var(--chocolate-100) 50%,
        var(--pink-200) 75%,
        var(--cream) 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
    overflow: hidden;
    padding: 120px 24px 80px;
}

body[data-theme="michelly"] .hero {
    padding-top: 140px;
    background: linear-gradient(140deg, #fff3f6 0%, #ffe1e8 35%, #ffc8d4 70%, #ffd4dc 100%);
}

body[data-theme="michelly"] .hero-content {
    max-width: 820px;
}

body[data-theme="michelly"] .section-header {
    margin-bottom: 58px;
}

body[data-theme="michelly"] .section-title {
    letter-spacing: 0.4px;
}

body[data-theme="michelly"] .gallery-section,
body[data-theme="michelly"] .about-section,
body[data-theme="michelly"] .video-section {
    padding: 110px 0;
}

body[data-theme="noturno"] .theme-switcher {
    background: rgba(38, 24, 28, 0.88);
    border-color: rgba(219, 95, 129, 0.4);
}

body[data-theme="noturno"] .header.scrolled {
    background: rgba(20, 17, 18, 0.94);
}

body[data-theme="noturno"] .gallery-card,
body[data-theme="noturno"] .instagram-card,
body[data-theme="noturno"] .video-content {
    background: rgba(34, 24, 26, 0.9);
    border-color: rgba(223, 166, 122, 0.12);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 179, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(255, 107, 138, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--pink-600);
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 179, 198, 0.3);
}

.hero-badge i {
    font-size: 0.7rem;
    animation: heartPulse 1.5s ease-in-out infinite;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-name {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--chocolate-600);
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(107, 79, 48, 0.1);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pink-400), transparent);
}

.divider-heart {
    color: var(--pink-500);
    font-size: 0.8rem;
    animation: heartPulse 1.5s ease-in-out infinite;
}

.hero-subtitle {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-medium);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: white;
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 138, 0.35);
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--pink-600), var(--pink-700));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--chocolate-600);
    border: 2px solid var(--chocolate-200);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--pink-400);
    color: var(--pink-600);
    box-shadow: var(--shadow-md);
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    font-size: 1.05rem;
    padding: 16px 40px;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    animation: bounceDown 2s ease-in-out infinite;
}

/* ========================
   MARQUEE SECTION
   ======================== */
.marquee-section {
    background: linear-gradient(135deg, var(--pink-500), var(--chocolate-400));
    padding: 14px 0;
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* ========================
   SECTION HEADER
   ======================== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pink-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label i {
    font-size: 0.65rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--chocolate-700);
    margin-bottom: 16px;
    line-height: 1.3;
}

.highlight {
    color: var(--pink-600);
    font-style: italic;
}

.section-description {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 550px;
    margin: 0 auto;
}

/* ========================
   GALLERY SECTION
   ======================== */
.gallery-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--rose-bg), transparent);
    pointer-events: none;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    background: white;
    border: 1px solid var(--chocolate-200);
    transition: all var(--transition-spring);
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-btn:hover {
    border-color: var(--pink-400);
    color: var(--pink-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-pink);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    grid-auto-rows: 280px;
}

.gallery-carousel {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.gallery-carousel .gallery-grid {
    display: flex;
    gap: 0;
    grid-auto-rows: unset;
    transition: transform 1.4s ease;
    will-change: transform;
}

.gallery-carousel .gallery-item {
    min-width: 100%;
    padding: 6px;
    overflow: visible;
}

.gallery-carousel .gallery-item-wide,
.gallery-carousel .gallery-item-tall {
    grid-column: unset;
    grid-row: unset;
}

.gallery-carousel .gallery-card {
    height: min(72vh, 620px);
    background: #111;
}

.gallery-carousel .gallery-image {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: var(--chocolate-600);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-nav:hover {
    background: var(--pink-500);
    color: #fff;
}

.carousel-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--pink-200);
    border: none;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    width: 24px;
    border-radius: 20px;
    background: var(--pink-500);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-slow);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-spring);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-image.real-photo .gallery-placeholder {
    display: none;
}

.gallery-placeholder i {
    font-size: 2.5rem;
    opacity: 0.8;
}

.placeholder-emoji {
    font-size: 3rem;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(74, 53, 32, 0.85) 0%,
        rgba(74, 53, 32, 0.3) 40%,
        transparent 70%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 4px;
}

.gallery-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.gallery-tags {
    display: flex;
    gap: 8px;
}

.tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all var(--transition-base);
}

.gallery-zoom:hover {
    background: var(--pink-500);
    transform: scale(1.1);
}

/* Gallery Heart */
.gallery-heart {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--pink-400);
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-spring);
    cursor: pointer;
}

.gallery-card:hover .gallery-heart {
    opacity: 1;
    transform: scale(1);
}

.gallery-heart.liked {
    color: var(--pink-600);
    animation: heartPop 0.4s ease;
}

/* Gallery Hint */
.gallery-hint {
    margin-top: 40px;
    text-align: center;
}

.hint-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px dashed var(--pink-300);
    color: var(--text-medium);
    font-size: 0.85rem;
}

.hint-card i {
    color: var(--pink-400);
}

.hint-card code {
    background: var(--pink-100);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--pink-600);
}

/* ========================
   QUOTE SECTION
   ======================== */
.quote-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--chocolate-600), var(--chocolate-700));
    overflow: hidden;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 107, 138, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.author-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.author-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-light);
}

.quote-decoration {
    font-size: 1.2rem;
    letter-spacing: 12px;
    opacity: 0.6;
}

/* ========================
   ABOUT SECTION
   ======================== */
.about-section {
    padding: 100px 0;
    background: var(--rose-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.placeholder-emoji-large {
    font-size: 5rem;
}

.about-image-decoration {
    position: absolute;
    top: -16px;
    right: -16px;
}

.decoration-heart {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pink-500);
    color: white;
    border-radius: 50%;
    font-size: 1.1rem;
    box-shadow: var(--shadow-pink);
    animation: heartPulse 2s ease-in-out infinite;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: var(--chocolate-700);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.about-tag {
    padding: 8px 18px;
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--chocolate-600);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-spring);
    display: flex;
    align-items: center;
    gap: 6px;
}

.about-tag:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--pink-600);
}

.about-tag i {
    color: var(--pink-500);
    font-size: 0.75rem;
}

.about-social {
    margin-top: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-spring);
}

.social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.25);
}

.social-link.instagram:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.35);
}

/* ========================
   INSTAGRAM CTA SECTION
   ======================== */
.instagram-section {
    padding: 80px 0;
    background: var(--cream);
}

/* ========================
   VIDEO SECTION
   ======================== */
.video-section {
    padding: 90px 0;
    background: linear-gradient(to bottom, var(--cream), var(--rose-bg));
}

.video-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.video-content {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.video-content .section-description {
    margin: 0;
    max-width: 100%;
}

.video-badges {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.video-badges span {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: var(--pink-100);
    color: var(--pink-600);
    font-size: 0.85rem;
    font-weight: 500;
}

.video-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 179, 198, 0.25);
    background: #000;
}

.video-preview {
    width: 100%;
    display: block;
    position: relative;
    border: none;
    padding: 0;
    background: #000;
}

.video-poster-image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.video-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.12));
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--pink-600);
    font-size: 1.4rem;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base);
}

.video-preview:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-preview-text {
    position: absolute;
    left: 18px;
    bottom: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
}

.romantic-video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #000;
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: 20px;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-dialog {
    position: relative;
    width: min(960px, 92vw);
}

.video-modal-player {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.video-modal-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--chocolate-700);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.video-modal-close:hover {
    background: var(--pink-500);
    color: #fff;
}

.instagram-card {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--pink-100), white, var(--chocolate-100));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 179, 198, 0.2);
}

.instagram-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: var(--radius-lg);
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
    animation: float 3s ease-in-out infinite;
}

.instagram-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--chocolate-700);
    margin-bottom: 12px;
}

.instagram-text {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.instagram-hearts i {
    position: absolute;
    color: var(--pink-300);
    opacity: 0.15;
    animation: float 4s ease-in-out infinite;
}

.heart-1 { top: 10%; left: 10%; font-size: 1.5rem; animation-delay: 0s; }
.heart-2 { top: 20%; right: 15%; font-size: 1rem; animation-delay: 0.5s; }
.heart-3 { bottom: 15%; left: 20%; font-size: 1.2rem; animation-delay: 1s; }
.heart-4 { bottom: 25%; right: 10%; font-size: 0.8rem; animation-delay: 1.5s; }
.heart-5 { top: 50%; left: 5%; font-size: 1.3rem; animation-delay: 2s; }

/* ========================
   FOOTER
   ======================== */
.footer {
    background: var(--chocolate-700);
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-top: 20px;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    color: var(--chocolate-700);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--pink-300);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all var(--transition-spring);
}

.footer-social a:hover {
    background: var(--pink-500);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================
   LIGHTBOX
   ======================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all var(--transition-base);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--pink-500);
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 80vw;
    max-height: 80vh;
    position: relative;
}

.lightbox-image {
    width: 100%;
    height: 60vh;
    border-radius: var(--radius-lg);
    background-size: cover;
    background-position: center;
}

.lightbox-info {
    text-align: center;
    padding: 20px;
    color: white;
}

.lightbox-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.lightbox-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ========================
   BACK TO TOP
   ======================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-pink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-spring);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 138, 0.4);
}

.btt-heart {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    color: var(--pink-500);
    font-size: 0.5rem;
    box-shadow: var(--shadow-sm);
    animation: heartPulse 1.5s ease-in-out infinite;
}

/* ========================
   FLOATING HEARTS
   ======================== */
.floating-hearts {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-heart {
    position: absolute;
    color: var(--pink-300);
    opacity: 0;
    animation: floatHeart 8s ease-in-out infinite;
}

/* ========================
   PETALS
   ======================== */
.petals-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--pink-300);
    border-radius: 50% 0 50% 50%;
    opacity: 0;
    animation: fallPetal 10s linear infinite;
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .gallery-carousel .gallery-card {
        height: min(62vh, 520px);
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .theme-switcher {
        display: none;
    }

    .mobile-theme-switcher {
        display: inline-flex;
    }

    .gallery-carousel .gallery-card {
        height: min(56vh, 440px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-layout {
        grid-template-columns: 1fr;
    }

    .video-content {
        order: 2;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-name {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

@media (max-width: 480px) {
    .gallery-carousel .gallery-card {
        height: min(52vh, 360px);
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .video-play-button {
        width: 62px;
        height: 62px;
        font-size: 1.2rem;
    }

    .video-modal-close {
        top: -10px;
        right: -6px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .instagram-card {
        padding: 40px 24px;
    }
}
