/* ===================================================
   STYLE.CSS - Mobile-First Romantic Bucin Website
   ================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500&family=Dancing+Script:wght@400;600;700&display=swap');

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --rose: #e8748a;
    --rose-dark: #c4506a;
    --rose-light: #f5a8b8;
    --blush: #fce4ec;
    --wine: #7b1f3a;
    --cream: #fff8f5;
    --gold: #d4a373;
    --gold-light: #f7e3c4;
    --dark: #1a0a10;
    --dark-2: #2d1520;
    --text-light: rgba(255,255,255,0.85);
    --shadow-rose: 0 8px 32px rgba(232,116,138,0.3);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 15px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========== FLOATING PARTICLES ========== */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    animation: floatUp linear infinite;
    opacity: 0;
    font-size: 12px;
    color: var(--rose-light);
}

@keyframes floatUp {
    0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

/* ========== HIDDEN ========== */
.hidden { display: none !important; }

/* ========== MUSIC BUTTON ========== */
.music-btn {
    position: fixed;
    bottom: calc(1.5rem + var(--safe-bottom));
    right: 1.2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose), var(--wine));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(232,116,138,0.55);
    transition: var(--transition);
    gap: 4px;
    overflow: hidden;
}

.music-btn i {
    font-size: 1.1rem;
    color: white;
    position: absolute;
    transition: var(--transition);
}

.music-wave {
    display: none;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.music-wave.active { display: flex; }
.music-wave.active ~ i { opacity: 0; }

.music-wave span {
    display: block;
    width: 3px;
    border-radius: 2px;
    background: white;
    animation: wave 1.2s ease-in-out infinite;
}

.music-wave span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.music-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.music-wave span:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.music-wave span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.music-wave span:nth-child(5) { height: 6px;  animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50%       { transform: scaleY(0.3); }
}

/* ========== INTRO SCREEN ========== */
.intro-screen {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, #3d0c20, #1a0a10 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding: 2rem 1.5rem;
    padding-top: calc(2rem + var(--safe-top));
    padding-bottom: calc(2rem + var(--safe-bottom));
}

.intro-screen.exit {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.intro-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 0.8s ease both;
    width: 100%;
    max-width: 380px;
}

.intro-heart {
    font-size: 4.5rem;
    color: var(--rose);
    animation: heartPulse 1.5s ease-in-out infinite;
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 24px rgba(232,116,138,0.7));
    display: block;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.18); }
}

.intro-sub {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--rose-light);
    margin-bottom: 0.5rem;
}

.intro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.25;
}

.intro-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--rose), var(--wine));
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(232,116,138,0.45);
    letter-spacing: 0.5px;
    min-height: 54px;
    width: 100%;
    max-width: 280px;
}

.intro-btn:active { transform: scale(0.97); }

.intro-btn i { transition: transform 0.3s ease; }

.intro-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 0 50% 50% 50%;
    opacity: 0;
    animation: petalFall linear infinite;
}

@keyframes petalFall {
    0%   { opacity: 0; transform: translateY(-20px) rotate(0deg); }
    10%  { opacity: 0.8; }
    90%  { opacity: 0.4; }
    100% { opacity: 0; transform: translateY(100vh) rotate(540deg); }
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: saturate(1.2);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(26,10,16,0.88) 0%,
        rgba(123,31,58,0.55) 50%,
        rgba(26,10,16,0.92) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    animation: fadeInUp 1s ease both;
    width: 100%;
}

.hero-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--rose-light);
    letter-spacing: 3px;
    margin-bottom: 0.8rem;
    opacity: 0.9;
    display: block;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 13vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--rose-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.72);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    padding: 0 0.5rem;
}

.hero-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bounce {
    animation: bounce 2s infinite;
}

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

/* ========== SECTION COMMON ========== */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.section-label {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    color: var(--rose-light);
    letter-spacing: 2px;
    margin-bottom: 0.7rem;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    font-weight: 300;
    color: white;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== QUOTE SECTION ========== */
.quote-section {
    padding: 70px 1.5rem;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    text-align: center;
}

.quote-container {
    max-width: 100%;
    margin: 0 auto;
}

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

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    color: white;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    transition: opacity 0.35s ease;
    min-height: 4rem;
}

.quote-author {
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
    color: var(--rose-light);
    margin-bottom: 1.8rem;
}

.quote-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.quote-btn {
    background: none;
    border: 1px solid rgba(232,116,138,0.4);
    color: var(--rose-light);
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.quote-btn:active {
    background: var(--rose);
    border-color: var(--rose);
    color: white;
    transform: scale(0.93);
}

.quote-dots { display: flex; gap: 8px; }

.q-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: var(--transition);
}

.q-dot.active {
    background: var(--rose);
    transform: scale(1.3);
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 70px 1rem;
    background: var(--dark-2);
}

/* Mobile: 2 column masonry-feel grid */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    max-width: 500px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Vary heights for masonry feel */
.gallery-item:nth-child(1) { aspect-ratio: 3/4; }
.gallery-item:nth-child(2) { aspect-ratio: 2/3; }
.gallery-item:nth-child(3) { aspect-ratio: 2/3; }
.gallery-item:nth-child(4) { aspect-ratio: 3/4; }
.gallery-item:nth-child(5) { aspect-ratio: 3/4; }
.gallery-item:nth-child(6) { aspect-ratio: 2/3; }
.gallery-item:nth-child(7) { aspect-ratio: 2/3; }
.gallery-item:nth-child(8) { aspect-ratio: 3/4; }
.gallery-item:nth-child(9) { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-item:active { transform: scale(0.97); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.88) saturate(1.1);
    display: block;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(123,31,58,0.65) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 0.8rem;
}

.gallery-overlay-icon {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

/* ========== LETTER SECTION ========== */
.letter-section {
    padding: 70px 1.2rem;
    background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-container {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
}

.letter-envelope {
    cursor: pointer;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, #4a1128, #2d0f1d);
    border-radius: 20px;
    border: 1px solid rgba(232,116,138,0.3);
    transition: var(--transition);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

.letter-envelope::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% -20%, rgba(232,116,138,0.18), transparent 60%);
}

.letter-envelope:active { transform: scale(0.97); }

.envelope-flap {
    width: 60px; height: 45px;
    background: linear-gradient(135deg, var(--rose), var(--wine));
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin: 0 auto 1rem;
    filter: drop-shadow(0 4px 10px rgba(232,116,138,0.4));
}

.envelope-icon {
    font-size: 2.5rem;
    color: var(--rose-light);
    margin-bottom: 0.8rem;
    display: block;
    animation: heartPulse 2s infinite;
}

.envelope-hint {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
}

.letter-paper {
    background: linear-gradient(135deg, #fff9f5, #ffeef2);
    border-radius: 16px;
    padding: 2rem 1.4rem;
    color: var(--dark);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    animation: paperUnfold 0.5s ease both;
}

@keyframes paperUnfold {
    0%   { transform: scaleY(0); opacity: 0; transform-origin: top; }
    100% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

.letter-heart {
    font-size: 1.8rem;
    color: var(--rose);
    margin-bottom: 0.4rem;
    display: block;
}

.letter-date {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--rose-dark);
    margin-bottom: 1.2rem;
}

.letter-body p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #3d1a27;
    margin-bottom: 1rem;
}

.letter-closing { margin-top: 1.5rem !important; font-style: italic; }

.letter-signature {
    font-family: 'Dancing Script', cursive;
    font-size: 1.3rem;
    color: var(--rose-dark);
    display: block;
    margin-top: 0.4rem;
}

/* ========== REASONS SECTION ========== */
.reasons-section {
    padding: 70px 1rem;
    background: var(--dark);
}

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.reason-card {
    background: linear-gradient(135deg, rgba(45,21,32,0.9), rgba(26,10,16,0.9));
    border: 1px solid rgba(232,116,138,0.15);
    border-radius: 18px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition);
}

.reason-card:active {
    transform: scale(0.97);
    border-color: rgba(232,116,138,0.5);
}

.reason-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
    display: block;
}

.reason-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--rose-light);
    margin-bottom: 0.5rem;
}

.reason-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    font-weight: 300;
}

/* ========== COUNTDOWN SECTION ========== */
.countdown-section {
    padding: 70px 1.2rem;
    background: linear-gradient(135deg, var(--wine), #3d0c20, var(--dark-2));
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23e8748a' fill-opacity='0.06'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h-5V20.5h5zM40 20.5V18H20v5h5v5H20v5h20v-2.5h-5V20.5h5z'/%3E%3C/g%3E%3C/svg%3E");
}

.countdown-container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.countdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    font-weight: 300;
    color: white;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.countdown-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.countdown-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.8rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 1rem 0.5rem;
}

.count-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: white;
    line-height: 1;
    text-shadow: 0 0 20px rgba(232,116,138,0.5);
    transition: transform 0.2s ease, color 0.2s ease;
}

.count-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.countdown-divider {
    font-size: 2rem;
    color: var(--rose-light);
    font-weight: 300;
    margin-bottom: 1.2rem;
    opacity: 0.8;
}

.countdown-since {
    font-family: 'Dancing Script', cursive;
    font-size: 1.1rem;
    color: var(--rose-light);
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: 70px 1rem;
    background: var(--dark-2);
}

.video-wrapper {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    position: relative;
}

.love-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 60vh;
    object-fit: cover;
    border-radius: 20px;
}

.video-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
    background: linear-gradient(0deg, rgba(26,10,16,0.95), transparent);
    position: absolute;
    bottom: 0; left: 0; right: 0;
    color: rgba(255,255,255,0.65);
    font-family: 'Dancing Script', cursive;
    font-size: 1rem;
}

/* ========== FINAL SECTION ========== */
.final-section {
    position: relative;
    padding: 90px 1.5rem;
    background: radial-gradient(ellipse at center bottom, #4a0f25, var(--dark) 70%);
    text-align: center;
    overflow: hidden;
}

.final-content {
    position: relative;
    z-index: 2;
}

.final-hearts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--rose);
    animation: heartPulse 1.5s infinite;
}

.final-hearts .big {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 16px rgba(232,116,138,0.8));
}

.final-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 12vw, 5rem);
    font-weight: 300;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.final-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.final-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, rgba(232,116,138,0.2), rgba(123,31,58,0.3));
    border: 1px solid rgba(232,116,138,0.4);
    border-radius: 50px;
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--rose-light);
    backdrop-filter: blur(10px);
}

.final-petals {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.97);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    backdrop-filter: blur(8px);
    padding: 1rem;
    padding-top: calc(4rem + var(--safe-top));
    padding-bottom: calc(4rem + var(--safe-bottom));
}

.lightbox.active { display: flex; }

.lb-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(232,116,138,0.15);
    animation: lbZoom 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

@keyframes lbZoom {
    0%   { transform: scale(0.88); opacity: 0; }
    100% { transform: scale(1);    opacity: 1; }
}

.lb-close {
    position: absolute;
    top: calc(1rem + var(--safe-top));
    right: 1rem;
    background: rgba(232,116,138,0.25);
    border: 1px solid rgba(232,116,138,0.4);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 10;
}

.lb-prev, .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(232,116,138,0.2);
    border: 1px solid rgba(232,116,138,0.3);
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    z-index: 10;
}

.lb-prev { left: 0.5rem; }
.lb-next { right: 0.5rem; }

.lb-close:active, .lb-prev:active, .lb-next:active {
    background: var(--rose);
    transform: translateY(-50%) scale(0.95);
}
.lb-close:active { transform: scale(0.95); }

.lb-counter {
    margin-top: 1rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-align: center;
}

/* ========== SWIPE HINT ========== */
.swipe-hint {
    position: absolute;
    bottom: calc(1rem + var(--safe-bottom));
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 0.7rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--rose), var(--wine));
    border-radius: 2px;
}

/* ========== DESKTOP BREAKPOINT (hanya untuk desktop) ========== */
@media (min-width: 600px) {
    html { font-size: 16px; }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
        gap: 1rem;
    }

    .gallery-item:nth-child(9) {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }

    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }

    .countdown-grid { gap: 0.8rem; }
    .count-num { font-size: 3.5rem; }
    .intro-title { font-size: 3rem; }
}
