/* ================= BANNER / SECTIONS ================= */
/* All design tokens sourced from hero-section.css :root  */

.wrap {
    width: 100%;
    height: 94vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 0;
    padding: 20px;
}

.wrap::before {
    content: "";
    background: var(--section-bg-warm);
    position: absolute;
    inset: 0;
    z-index: -2;
}

.corner-image {
    position: absolute;
    height: auto;
    z-index: -1;
    opacity: 0.9;
}

/* Corner positions */
.bottom-left-corner {
    position: absolute;
    bottom: 55px;
    left: 0;
    width: 180px;
}

.bottom-right-corner {
    bottom: 55px;
    right: 0;
    width: 150px;
}

.top-left-corner {
    top: 0;
    left: 0;
    width: 150px;
}

.top-right-corner {
    top: 0;
    right: 0;
    width: 150px;
}

.title-section {
    position: relative;
    text-align: center;
    background-size: 95%;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    padding: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.title-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/center.png');
    background-size: 210px !important;
    filter: brightness(-10);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
}

.name {
    font-family: var(--font-display);
    margin: -0.5rem !important;
    width: 200px;
}

.and {
    font-size: 2rem;
}

.title h3 {
    font-weight: 300;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 30px;
    color: var(--temple-dark);
    margin-top: 5px;
}

.title-label {
    font-size: 20px;
    font-family: var(--font-body);
}

.wrap-details {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
}

.title {
    color: var(--temple-dark);
}

.main-date {
    border: 0px solid black;
    width: 140px;
}

.main-date p:first-child {
    border-bottom: 1px solid var(--gold);
    padding: 0px;
}

.main-date p:nth-child(2) {
    margin-top: -12px;
}

.wrap-location {
    width: 300px;
    text-align: center;
    font-family: var(--font-body);
}

/* ================= SECTION BACKGROUNDS ================= */
.brideandgroom {
    color: var(--temple-dark);
    background: var(--section-bg-warm);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.brideandgroom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/bg.png');
    background-size: cover;
    transform: rotate(180deg);
    z-index: -1;
}

.venue-details {
    background: var(--section-bg-warm-reverse);
    padding: 10px;
    width: 100%;
    color: var(--temple-dark);
}

.venueContainer {
    border: var(--border-accent) !important;
}

.wedding-date {
    background: var(--section-bg-warm);
    color: var(--temple-dark);
}

.welcome-page {
    background: var(--section-bg-warm);
    color: var(--temple-dark);
}

.gallery {
    background: var(--section-bg-warm-reverse);
    color: var(--temple-dark);
}

.end-section {
    background: var(--section-bg-warm);
    color: var(--temple-dark);
}

.joinUs {
    font-size: 15px;
    margin-bottom: 0px !important;
}

/* ================= SCROLL ANIMATION ================= */
.scroll-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-down {
    height: 30px;
    width: 10px;
    position: absolute;
    border-radius: 50px;
    cursor: pointer;
}

.scroll-down::before,
.scroll-down::after {
    content: "";
    position: absolute;
    top: 20%;
    left: 50%;
    height: 10px;
    width: 10px;
    transform: translate(-50%, -100%) rotate(45deg);
    border: 2px solid var(--gold-light);
    border-top: transparent;
    border-left: transparent;
    animation: scroll-down 1s ease-in-out infinite;
}

.scroll-down::before {
    top: 30%;
    animation-delay: 0.3s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    60% {
        opacity: 1;
    }
    100% {
        top: 90%;
        opacity: 0;
    }
}