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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #fdf6ee;
    color: #5a3e2b;
    line-height: 1.7;
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-divider {
    text-align: center;
    color: #d4af37;
    font-size: 0.9rem;
    letter-spacing: 8px;
    margin-bottom: 50px;
    opacity: 0.7;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf6ee 0%, #f5e6d3 30%, #fce8d5 60%, #fdf0e0 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ===== GUEST NAME ===== */
.guest-name-wrapper {
    margin-bottom: 24px;
    display: none;
}

.guest-name-wrapper.active {
    display: block;
    animation: fadeInUp 1s ease 0.3s both;
}

.guest-label {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    color: #a08050;
    letter-spacing: 2px;
    margin-bottom: 6px;
    font-weight: 300;
}

.guest-name {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #8b6914;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* ===== INVITATION BACKGROUND IMAGE ===== */
.hero-invitation-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.06;
}

.hero-invitation-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ===== BACKGROUND SILHOUETTES ===== */
.hero-bg-silhouettes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-silhouette {
    position: absolute;
    bottom: 0;
    width: clamp(220px, 32vw, 420px);
    opacity: 0.25;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.15));
}

.bg-silhouette img {
    width: 100%;
    height: auto;
    display: block;
}

.bg-bride {
    left: -5%;
    transform: scaleX(-1);
    animation: silhouetteBride 5s ease-in-out infinite;
}

.bg-bride::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at bottom center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.bg-groom {
    right: -5%;
    animation: silhouetteGroom 5s ease-in-out infinite 1s;
}

.bg-groom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(ellipse at bottom center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes silhouetteBride {
    0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
    30% { transform: scaleX(-1) translateY(-12px) rotate(-1deg); }
    70% { transform: scaleX(-1) translateY(-4px) rotate(1deg); }
}

@keyframes silhouetteGroom {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    30% { transform: translateY(-12px) rotate(1deg); }
    70% { transform: translateY(-4px) rotate(-1deg); }
}

/* ===== HERO ORNAMENTS ===== */
.hero-ornaments {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.ornament-flower {
    position: absolute;
    animation: flowerSway 4s ease-in-out infinite;
}

.ornament-flower svg {
    display: block;
}

.of-left-top {
    top: 3%;
    left: 5%;
    animation-delay: 0s;
}

.of-right-top {
    top: 3%;
    right: 5%;
    animation-delay: 1s;
}

.of-left-bottom {
    bottom: 8%;
    left: 6%;
    animation-delay: 0.5s;
}

.of-right-bottom {
    bottom: 8%;
    right: 6%;
    animation-delay: 1.5s;
}

@keyframes flowerSway {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50% { transform: rotate(5deg) translateY(-8px); }
}

.ornament-love {
    position: absolute;
    animation: loveFloat 3s ease-in-out infinite;
}

.ornament-love svg {
    display: block;
}

.ol-1 {
    top: 12%;
    left: 30%;
    animation-delay: 0s;
}

.ol-2 {
    top: 20%;
    right: 28%;
    animation-delay: 0.8s;
}

.ol-3 {
    bottom: 18%;
    left: 28%;
    animation-delay: 1.6s;
}

.ol-4 {
    bottom: 15%;
    right: 30%;
    animation-delay: 2.4s;
}

.ol-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: lovePulse 2.5s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes loveFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-15px) scale(1.15); opacity: 0.7; }
}

@keyframes lovePulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

/* ===== INVITATION CONTENT (hidden initially) ===== */
.invitation-content {
    display: none;
    opacity: 0;
}

.invitation-content.revealed {
    display: block;
    animation: fadeInContent 1.2s ease forwards;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 1.6rem;
    color: #d4af37;
    margin-bottom: 16px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: #8b6914;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.hero-title .ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2rem, 6vw, 4rem);
    color: #b8860b;
    display: inline-block;
    margin: 0 10px;
}

.hero-divider {
    font-size: 1rem;
    letter-spacing: 12px;
    color: #d4af37;
    margin: 24px 0;
    opacity: 0.6;
}

.hero-date {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: #8b6914;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-scroll {
    display: inline-block;
    padding: 14px 40px;
    border: 1.5px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
}

.btn-scroll:hover {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    background: linear-gradient(180deg, #fff8f0 0%, #fef4e8 100%);
    text-align: center;
    padding: 80px 20px;
    position: relative;
}

.quote-section::before,
.quote-section::after {
    content: '"';
    position: absolute;
    font-family: 'Great Vibes', cursive;
    font-size: 5rem;
    color: #d4af37;
    opacity: 0.1;
}

.quote-section::before {
    top: 20px;
    left: 30px;
}

.quote-section::after {
    bottom: 20px;
    right: 30px;
    transform: rotate(180deg);
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-style: italic;
    color: #7a6548;
    max-width: 750px;
    margin: 0 auto 20px;
    line-height: 1.9;
}

.quote-reference {
    font-size: 0.85rem;
    color: #d4af37;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* ===== COUPLE SECTION ===== */
.couple-section {
    background: linear-gradient(180deg, #fef4e8 0%, #fdf6ee 100%);
}

.couple-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.couple-card {
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 350px;
    padding: 30px 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #fffcf7;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.couple-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.couple-avatar {
    position: relative;
    width: 140px;
    height: 180px;
    margin: 0 auto 24px;
}

.avatar-ring {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floral-svg {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    to { transform: rotate(360deg); }
}

.avatar-icon {
    width: 100px;
    height: 130px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
}

.avatar-icon svg {
    width: 100%;
    height: 100%;
}

/* Couple Photos (wanita.png & pria.png) */
.couple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    border-radius: 8px;
}

.couple-img-bride .couple-photo {
    animation: bridePhotoFloat 3s ease-in-out infinite;
}

.couple-img-groom .couple-photo {
    animation: groomPhotoFloat 4s ease-in-out infinite;
}

@keyframes bridePhotoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes groomPhotoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(0.5deg); }
    50% { transform: translateY(-3px) rotate(0deg); }
    75% { transform: translateY(-6px) rotate(-0.5deg); }
}

/* ===== ANIMATED COUPLE CHARACTERS ===== */
/* Bride - flowing dress animation */
.bride-character {
    animation: brideFloat 3s ease-in-out infinite;
}

@keyframes brideFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.bride-dress {
    transform-origin: 50% 0;
    animation: dressSway 3s ease-in-out infinite;
}

@keyframes dressSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.bride-veil {
    transform-origin: 50% 0;
    animation: veilFloat 4s ease-in-out infinite;
}

@keyframes veilFloat {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    33% { transform: rotate(2deg) translateY(-2px); }
    66% { transform: rotate(-1deg) translateY(1px); }
}

/* Groom - gentle bow animation */
.groom-character {
    animation: groomBow 4s ease-in-out infinite;
}

@keyframes groomBow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    15% { transform: translateY(-4px); }
    30% { transform: translateY(0) rotate(0deg); }
    45% { transform: translateY(-2px) rotate(0.5deg); }
}

.groom-blazer {
    animation: blazerSway 3.5s ease-in-out infinite;
    transform-origin: 50% 0;
}

@keyframes blazerSway {
    0%, 100% { transform: rotate(0deg); }
    30% { transform: rotate(1.5deg); }
    60% { transform: rotate(-1deg); }
}

.groom-tie {
    transform-origin: 50% 0;
    animation: tieSway 2.5s ease-in-out infinite;
}

@keyframes tieSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

.heart-particle {
    animation: heartFloat 2s ease-out infinite;
}

@keyframes heartFloat {
    0% { opacity: 1; transform: translateY(0) scale(0.5); }
    100% { opacity: 0; transform: translateY(-40px) scale(1.2); }
}

.couple-divider-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Love Icon Animation */
.love-icon {
    overflow: visible;
}

.heart-main {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawHeart 3s ease-in-out infinite;
}

@keyframes drawHeart {
    0% { stroke-dashoffset: 200; }
    30% { stroke-dashoffset: 0; }
    70% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 200; }
}

.heart-fill {
    animation: heartFillPulse 3s ease-in-out infinite;
}

@keyframes heartFillPulse {
    0%, 100% { fill: rgba(201,168,76,0.08); transform: scale(1); }
    50% { fill: rgba(201,168,76,0.25); transform: scale(1.05); }
}

.sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

.s1 { animation-delay: 0s; }
.s2 { animation-delay: 0.5s; }
.s3 { animation-delay: 1s; }
.s4 { animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.2; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.couple-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8b6914;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.couple-desc {
    font-size: 0.85rem;
    color: #a08050;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.couple-parents {
    font-size: 0.8rem;
    color: #8a7a60;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

/* ===== DETAILS SECTION ===== */
.details-section {
    background: linear-gradient(180deg, #fef4e8 0%, #fdf6ee 100%);
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
    padding: 20px 16px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: #fffcf7;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.countdown-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #8b6914;
    line-height: 1;
    margin-bottom: 6px;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a08050;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.event-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #fffcf7;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.event-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.08);
    transform: translateY(-3px);
}

.event-icon {
    margin-bottom: 20px;
    opacity: 0.7;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #8b6914;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.event-time {
    font-size: 1rem;
    color: #a08050;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.event-date {
    font-size: 0.85rem;
    color: #8a7a60;
    margin-bottom: 16px;
}

.event-divider {
    color: #d4af37;
    letter-spacing: 4px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.event-location {
    font-size: 0.85rem;
    color: #8a7a60;
    line-height: 1.8;
}

/* ===== GUEST SECTION ===== */
.guest-section {
    background: linear-gradient(180deg, #fdf6ee 0%, #fff8f0 100%);
}

.guest-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guest-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: #fffcf7;
    transition: all 0.3s ease;
}

.guest-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.06);
}

.guest-badge {
    flex-shrink: 0;
    opacity: 0.7;
}

.guest-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.guest-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #8b6914;
    letter-spacing: 0.5px;
}

.guest-relation {
    font-size: 0.78rem;
    color: #8a7a60;
    font-style: italic;
}

.guest-item-full {
    border-color: rgba(212, 175, 55, 0.25);
    background: #fffcf7;
}

.guest-item-full .guest-name {
    font-size: 1.05rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: linear-gradient(180deg, #fef4e8 0%, #fdf6ee 100%);
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 28px;
    border: 1.5px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    background: transparent;
    text-align: center;
}

.btn-map:hover {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* ===== GIFT SECTION ===== */
.gift-section {
    background: linear-gradient(180deg, #fdf6ee 0%, #fef4e8 100%);
    text-align: center;
}

.gift-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #7a6548;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.9;
}

.gift-methods {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.gift-card {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    padding: 30px 24px;
    background: #fffcf7;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.gift-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.gift-logo-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fffcf7;
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    padding: 14px;
    transition: all 0.4s ease;
}

.gift-card:hover .gift-logo-wrapper {
    border-color: rgba(212, 175, 55, 0.5);
    background: #ffffff;
}

.gift-logo {
    width: 100%;
    height: auto;
    display: block;
}

.gift-details {
    margin-top: 4px;
}

.gift-number-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: #8b6914;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-copy:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #d4af37;
    color: #d4af37;
}

.btn-copy.copied {
    background: #d4af37;
    border-color: #d4af37;
    color: #fff;
}

.btn-copy.copied svg {
    animation: copyPop 0.3s ease;
}

@keyframes copyPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.gift-bank {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #8b6914;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.gift-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #5a3e2b;
    letter-spacing: 2px;
    margin-bottom: 4px;
    user-select: all;
}

.gift-name {
    font-size: 0.85rem;
    color: #8a7a60;
    letter-spacing: 0.5px;
}

/* ===== PHYSICAL GIFT SECTION ===== */
.gift-physical-section {
    background: linear-gradient(180deg, #fef4e8 0%, #fdf6ee 100%);
    text-align: center;
}

.physical-gift-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 32px;
    background: #fffcf7;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.physical-gift-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.physical-gift-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.physical-gift-icon svg {
    opacity: 0.7;
}

.physical-gift-address {
    margin-bottom: 24px;
}

.physical-gift-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #8b6914;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
}

.physical-gift-street {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #5a3e2b;
    line-height: 1.9;
    letter-spacing: 0.5px;
}

.physical-gift-note {
    font-size: 0.78rem;
    color: #a08050;
    margin-top: 14px;
    font-style: italic;
    opacity: 0.8;
}

/* ===== CLOSING SECTION ===== */
.closing-section {
    background: linear-gradient(180deg, #fdf6ee 0%, #fef4e8 100%);
    text-align: center;
}

.closing-ornament {
    margin: 0 auto 30px;
    opacity: 0.6;
}

.closing-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: #7a6548;
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 2;
}

.closing-thanks {
    font-family: 'Great Vibes', cursive;
    font-size: 1.5rem;
    color: #8b6914;
    margin-bottom: 30px;
    opacity: 0.9;
}

.closing-names {
    margin-top: 10px;
}

.closing-couple {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #8b6914;
    letter-spacing: 2px;
}

/* ===== FOOTER ===== */
.footer {
    background: #f5e6d3;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer p {
    font-size: 0.75rem;
    color: #8a7a60;
    letter-spacing: 1px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .couple-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .couple-divider-icon {
        transform: rotate(90deg);
    }

    .couple-card {
        max-width: 100%;
    }

    .countdown-wrapper {
        gap: 12px;
    }

    .countdown-item {
        min-width: 65px;
        padding: 14px 10px;
    }

    .countdown-num {
        font-size: 1.6rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-date {
        font-size: 0.85rem;
        letter-spacing: 4px;
    }

    .btn-scroll {
        padding: 12px 28px;
        font-size: 0.75rem;
    }

    .countdown-item {
        min-width: 55px;
        padding: 10px 8px;
    }

    .countdown-num {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .guest-item {
        padding: 12px 14px;
    }

    .guest-name {
        font-size: 0.9rem;
    }
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(212, 175, 55, 0.3);
    color: #fff;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #fdf6ee;
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

/* ===== RESPONSIVE ORNAMENTS ===== */
@media (max-width: 768px) {
    .of-left-top svg,
    .of-right-top svg {
        width: 70px;
        height: 70px;
    }

    .of-left-bottom svg,
    .of-right-bottom svg {
        width: 55px;
        height: 55px;
    }

    .ol-center svg {
        width: 40px;
        height: 40px;
    }

    .ol-1 svg { width: 22px; height: 22px; }
    .ol-2 svg { width: 18px; height: 18px; }
    .ol-3 svg { width: 16px; height: 16px; }
    .ol-4 svg { width: 20px; height: 20px; }
}

@media (max-width: 768px) {
    .bg-silhouette {
        width: clamp(100px, 20vw, 180px);
        opacity: 0.06;
    }
}

@media (max-width: 480px) {
    .bg-silhouette {
        width: 80px;
        opacity: 0.05;
    }

    .of-left-top svg,
    .of-right-top svg {
        width: 50px;
        height: 50px;
    }

    .of-left-bottom svg,
    .of-right-bottom svg {
        width: 40px;
        height: 40px;
    }

    .ol-center svg {
        width: 30px;
        height: 30px;
    }

    .ol-1 svg { width: 16px; height: 16px; }
    .ol-2 svg { width: 14px; height: 14px; }
    .ol-3 svg { width: 12px; height: 12px; }
    .ol-4 svg { width: 14px; height: 14px; }
}
