﻿.landing {
    width: 100%;
    overflow: hidden;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px;
    overflow: hidden;
}

.background-light {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.9), transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.hero-content {
    text-align: center;
}

.subtitle {
    letter-spacing: 5px;
    font-size: .8rem;
    color: var(--olive);
    text-transform: uppercase;
}

.couple-name {
    font-size: 5.5rem;
    margin-top: 20px;
}

    .couple-name span {
        display: block;
        margin: 15px 0;
        font-size: 3rem;
    }

.date {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #777;
}

.scroll-indicator {
    margin-top: 60px;
    animation: bounce 2s infinite;
    color: var(--olive);
    font-weight: 600;
}

.floating-leaf {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(102,114,78,.08);
    border-radius: 60% 40% 70% 30%;
    animation: floatingLeaf 8s infinite;
}

.leaf-1 {
    left: 8%;
    top: 20%;
}

.leaf-2 {
    right: 12%;
    top: 35%;
    animation-delay: 2s;
}

.leaf-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@media(max-width:768px) {

    .hero {
        padding: 25px;
    }

    .couple-name {
        font-size: 3.2rem;
    }

        .couple-name span {
            font-size: 2rem;
        }
}
