.hero-secondary {
    padding: 90px 0;
    background: var(--bg);
    position: relative;
}

.card-modern {
    border-radius: 32px;
    padding: 50px;
    backdrop-filter: blur(12px);
    animation: fadeUp 0.9s ease;
    min-height: 400px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.couple-data h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.9rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    color: transparent;
}

.romantic-gallery {
    position: relative;
    width: 100%;
    margin: 0 auto 40px auto;
    overflow: hidden;
}

.gallery-main {
    position: relative;
    width: 100%;
    height: 380px;
}

.gallery-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateX(40px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 14px 18px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(255,255,255,0.28);
}

.gallery-prev {
    left: 10px;
}
.gallery-next {
    right: 10px;
}

.couple-message {
    margin: 40px auto 0;
    max-width: 650px;
    background: var(--glass);
    padding: 30px 34px;
    border-radius: 24px;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
    color: #e5e7eb;
    line-height: 1.8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.snowflake {
    position: absolute;
    user-select: none;
    will-change: transform, opacity;
    animation-name: fall;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    top: -220px !important;
}

@keyframes fall {
    0% {
        transform: translateY(-60px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(120vh) rotate(360deg);
        opacity: 0.35;
    }
}
