/* 1 - Landing Page */
    .landingPage {
        position: relative; 
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .landingPage img {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: absolute;
        left: 0;
        z-index: -1;
    }

    #landingImage {
        display: none;
    }

    .landingPage h1 {
        font-family: "Parisienne", cursive;
        font-weight: 400;
        font-style: normal;
        font-size: 7.5rem;
        color: white;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }

/* 2 - Welcome */
    .welcome{
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        width: 100vw; 
        height: fit-content;
        padding: 10% 0 10% 0;
        background-color: whitesmoke;
        gap: 10px;
    }

    .welcome h1{
        font-size: clamp(1.5rem, 4vw, 4rem);
        margin: 0 0 -1% 0;
    }

    .welcome .description{
        font-size: clamp(1.25rem, 1.25rem, 1.5rem);
        max-width: 70%; 
        line-height: 1.5;
        font-weight: 500;
        text-align: justify;
        justify-content: center;
    }

/* 3 - Place & Date */ 
.place_date {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    text-align: center;
    width: 100vw; 
    height: fit-content;
    margin: 10% 0 10% 0;
}

.place_date h1{
    font-size: clamp(2rem, 2.5rem, 3rem);
    text-transform: uppercase;
    margin: 0 0 5% 0;
    text-align: center;
    hyphens: none !important;
}

.place_date .threeColumn h2{
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.fa-church,
.fa-martini-glass,
.fa-utensils{
    font-size: 35px;
}

.columnItem {
    width: 33%;
}

.placeDescription {
    max-width: 60%; 
    word-wrap: break-word; 
    text-align: center; 
    font-size: clamp(1rem, 1rem, 1.2rem); 
    line-height: 1.5; 
    overflow-wrap: break-word;
    margin: 0 auto; 

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
}

.placeDescription .time{
    font-size: 2rem;
}

.locationName{
    font-size: clamp(1.2rem, 1.2rem, 1.4rem); 
    font-weight: 100;
}

.placeDescription a {
    color: black;
    text-decoration: none; 
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    display: inline-block; 
    transform: scale(1); 
    font-style: italic;

    margin-top: 15px;
}

.placeDescription a:hover {
    transform: scale(1.2);
}

/* 4 - Wedding Overview */
.rsvp{
    background-color: whitesmoke;
    padding-top: 3%;
    padding-bottom: 4%;
    width: 100vw !important;
}

.rsvpInner{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    text-align: center;
}

.rsvp h1{
    font-size: clamp(3rem, 3.5rem, 4rem);
    margin-top: 0;
    margin-bottom: 3%;
}

.rsvp img{
    width: 50%;
    border-radius: 25px;
    box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.6);
}

.rsvpButton{
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-top: -40px;
    font-size: clamp(15px, 1.2rem, 30px);
    border: 1px solid black;
    color: black;
    padding: 25px 50px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    transform: scale(1);
}

.rsvpButton::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    z-index: -1;
}

.rsvpButton:hover{
    color: white;
    border: 1px solid white;
    background-color: rgba(0, 0, 0, 0.203);
    transform: scale(1.2);
}

/* 5 - Image Carousel */
    .image_carousel{
        text-align: center;
        width: 100vw; 
        height: fit-content;
        margin: 5% 0 7% 0;
        cursor: cell;
    }

    .image_carousel h1{
        font-size: clamp(3rem, 3.5rem, 4rem);
        margin: 0 0 3% 0;
    }


/* 8 - Footer */ 
.footer {
    position: relative;
    margin: 5% 0 0% 0;
    padding-bottom: 5%;
    text-align: center;
    background-color: whitesmoke;
}

.footer-container {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 5%;
}

.footer-container h1 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 10;
    hyphens: none !important;
}

.footer-container img {
    width: 50%; 
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    filter: grayscale(100%);
    display: block;
    margin: 0 auto;
    
    box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.6);
}

.advertisement{
    text-align: center;
    text-decoration: underline;
    margin-top: 1%;
}

.advertisement a {
    text-decoration: none;
    color: black;
}
.advertisement a:hover {
    color: blue;
}

.footer-image{
    margin: 1% 0 1% 0;
    text-align: center;
}

.footer-image img{
    width: 220px;
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
}

.footer-image img:hover{
    transform: scale(1.3);
}