* {
    box-sizing: border-box;
}
:root {
--app-container: #FAF6F5;
--eggshell: #d0906f70;
--milk-chocolate: #986950;
--tawny: #CEB8A4;
--dark-brown: #3C2722;
--brown: #966851;
--text-color: #545454;
--white: #fff;
}
h2 {
    font-style: normal;
    font-size: 2.5vw;
}

html, body {
    width: 100%;
    height: 100vh;
    margin: 0;
    color: var(--text-color);
}

body {
    background: var(--app-container);
}

/* --------------------------------------------NAVIGATION BAR */


.logo {
    padding-top: 1vh;
    height: 8vh;
    object-fit: contain;
}

nav {
    display: flex;
    justify-content: space-between;
    /*position: fixed;*/
    background-color: var(--white);
    top: 0;
    z-index: 10;
    padding: 0 10vw;
    width: 100%;
    font-family: "Playfair Display", serif;
}
.nav-container{
    display: flex;
    flex-direction: column;
}
.nav-link-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    column-gap: 60px;
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight:400;
    font-size: 1vw;
}
.social-icons{
    position: fixed;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 8vw;
    color: var(--white);
    background-color: var(--dark-brown);
    margin: 0 10px;
    font-size: small;
    padding: 0.5vh;
    border-radius: 0 0 5px 5px;
}
.social-icons a{
    color: var(--white);
    font-size: small;
    padding-right: 5px;
}

/* ----------------------------------------------LANDING VIEW */
.title-card{
    text-align: center;
    padding: 1.2vh;
    font-family: 'Cinzel', serif;
    font-size: 2vw;
    color: var(--text-color);
}

header{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 80%;
    margin: auto;
}

#title-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#title-card-container h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 100;
}

#title-card-container span{
    width: 100%;
    font-style: italic;
}

#title-card-container button {
    border: none;
    background-color: var(--text-color);
    color: var(--app-container);
    font-size: 1vw;
    padding: 1vw;
}

#title-card-container p {
    width: 70%;
    font-size: 1.2vw;
    text-align: center;
    padding: 1vh 0;
    margin: 0;
}

#title-card-container img {
    width: 100%;
}

#title-card-logo {
    width: 40%;
}

.title-card-image {
    width: 100%;
    height: 90%;
    object-fit: cover;
}


/* -------------------------------------------PARTNERS SECTION */

.sponsor-container {
    text-align: center;
    padding: 5vh;
}

.sponsor-container h2 {
    font-size: 2vw;
    font-family: 'Cinzel', serif;
    font-weight: 100;
    margin: 0;
    padding: 0;
}

.sponsor-container hr{
    width: 60%;
}
.sponsors{
    display: flex;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
}
.sponsors img{
    height: 5vw;
}

/* ----------------------------------------------------------------------------------------------------------------------------------------------------- */

.second-container {
    height: fit-content;
    background-color: var(--tawny);
    display: flex;
}

.greeting-container {
    display: flex;
}

.about-text{
    flex: 0.9;
    width: 80%;
    color: var(--dark-brown);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 2vw;
    padding-left: 7vw;
    font-family: 'Playfair Display', serif;
}
.about-text h1{
    font-size: 2.5vh;
    padding: 0;
    font-style: italic;
    margin: 0;
}
.about-text img {
    height: 20vh;
    padding: 1vh;
    object-fit: cover;
}
.about-text h2 {
    text-transform: uppercase;
    font-weight: 100;
    font-size: 7vh;
    margin: 0;
}

.about-text h6 {
    font-size: 2.8vh;
    font-weight: 100;
    padding: 0;
    margin: 0;
}


.about-text-content {
    line-height: 1.5em;
    border-right: 1px solid var(--dark-brown);
    font-weight: 100;
    font-size: 1vw;
    padding-right: 2vw;
}

.about-text button {
    font-family: 'Cinzel', serif;
    border: none;
    background-color: var(--milk-chocolate);
    padding: 2vh;
    color: var(--white);
}

.greeting-imgs-container {
    flex: 1.3;
    display: flex;
    height: 90%;
    position: relative;
}

#first-img{
    align-self: center;
    height: 70vh;
    margin-bottom: 4vh;
}

#second-img{
    width: 20vw;
    top: 50%;
    margin-left: 2vw;
    position: absolute;
}

/*-------------------------CUT TO THE CHASE----------------------------- ---------------------------------------------------------------------- */

.third-container {
    height: fit-content;
    padding-top: 25vh;
    overflow: hidden;
}

.cut-container {
    display: flex;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cut-img{
    width: 17%;
}

.cut {
    font-family: 'Playfair Display', serif;
    width: 66%;
    background-color: var(--milk-chocolate);
    color: var(--app-container);
    display: flex;
    flex-direction: column;
    height: fit-content;
    padding: 2vw;
}

.cut h1{
    font-style: italic;
    font-size: 6vh;
    font-weight: 100;
    margin: 0;
}

.cut p{
    padding-left: 30%;
    margin: 0;
    font-weight: 100;
}

.cut-first{
    margin-top: -150px;
    padding: 20px;
    align-self: flex-start;
    justify-content: flex-start;
}
.cut-second{
    padding: 0 50px 80px 20px;
    transform: rotateZ(-10deg);
    margin-top: -20px;
}

.choice-container {
    width: 70%;
    margin: auto;
}

.choice-container h1{
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 100;
    font-size: 3vw;
    color: var(--dark-brown);
}

/* ---------------------------------------------------------------------------------------------------------------------------------------------- */

.fifth-container{
    height: fit-content;
    display: flex;
}

.card-container {
    width: 80%;
    margin: auto;
    display: flex;
    gap: 2.2vw;
}

.container-first {
    align-self: flex-end;
    padding: 20px;
}

.card {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--tawny);
    color: var(--dark-brown);
}

.card img{
    flex: 1.5;
    width: 100%;
    height: 20vh;
    object-fit: cover;
}

.card-text {
    flex: 1;
    padding: 2vw 1.5vw;
}

.card h5{
    font-size: 20px;
    margin: 0;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
}

.card p {
    line-height: 1.5;
    font-family: 'Oswald', sans-serif;
    font-weight: 100;
}


/* ----------------------------------------------------REVIEW */
.review {
    position: relative;
    color: var(--text-color);
    height: fit-content;
    width: 60vw;
    object-fit: cover;
    margin: 10vh auto;
    font-family: 'Playfair Display', serif;
}
.single-review{
    display: none;
}
.review-bg {
    width: 60vw;
    height: 60vh;
    margin: auto;
    object-fit: cover;
}
.review-image {
    position: absolute;
    top: 35%;
    left: 37%;
    width: 15.6vw;
}
.reviewer {
    position: absolute;
    font-size: 18px;
    padding: 8px 12px;
    bottom: 20%;
    width: 100%;
    text-align: center;
}
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 15px 2px 0;
    background-color: #000;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
.mobile-review{
    display: none;
}
/* ----------------------------------------------------------------------------------------------------------------------------------------------- */

.sixth-container{
    height: 75vh;
    background-color: var(--milk-chocolate);
    display: flex;
}

.sixth-container img {
    flex: 1;
    width: 50vw;
    object-fit: cover;
}
.contact-container{
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-container h1 {
    font-family: 'Cinzel', serif;
    font-size: 5vh;
    font-weight: 100;
    text-align: center;
}

.contact-container p {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.contact-container form {
    display: flex;
    flex-direction: column;
}

.contact-container input {
    background-color: var(--milk-chocolate);
    padding: 2vh;
    border: none;
    color: var(--white);
    width: 25vw;
    border-bottom: 1px solid var(--white);
    margin-bottom: 2vh;
}


.name-and-email {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
}

.name-and-email input {
    width: 11.5vw;
}

.contact-container input:focus{
    outline: none;
}

::placeholder {
    color: var(--white);
}

.contact-container button {
    align-self: center;
    padding: 1vw 2vw;
    margin: 1vw;
    border: none;
    color: var(--white);
    background-color: var(--tawny);
}

.contact-icons a {
    color: var(--white);
    font-size: 5vh;
    padding: 2.5vh 1vw;
    text-decoration: none;
}

/* ----------------------------------------------------------------------------------------------------------------------------------------- */

.seventh-container{
    height: fit-content;
}
.seventh-container h1{
    text-align: right;
    margin-right: 10vw;
    font-size: 3vw;
    font-weight: 100;
    font-family: 'Cinzel', serif;
}

.events-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5vh;
    width: 80%;
    margin: 5vh auto;
}

.event-item{
    font-family: "Playfair Display", serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-item img{
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 5px;
}

.event-details{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2vh;
    margin-top: 0;
}
.event-tag{
    background-color: var(--dark-brown);
    color: var(--white);
    border: none;
    border-radius: 20px;
    padding: 1vh 2vh;
}
.event-title {
    font-weight: 800;
    margin: 1.2vh 0;
    font-size: 3vh;
}
.event-description{
    margin: 0;
    font-size: 2vh;
}
/* ---------------------------------------------------------------------------------------------------------------------------------------------- */

.eighth-container {
    position: relative;
    width: 70vw;
    margin: auto;
    height: fit-content;
}
#radio-intro{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#radio-intro img{
    width: 50vw;
    object-fit: contain;
}
.eighth-container i {
    height: 50px;
    width: 50px;
    text-align: center;
    background-color: white;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);

}
.eighth-container i:first-child {
    left: 0;
}

.eighth-container i:last-child {
    right: 0;
}

.eighth-container .radio-gallery-container {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.radio-gallery-container::-webkit-scrollbar {
    display: none;
}

.radio-gallery-container :where(.radio-item, .radio-img) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-gallery-container.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.radio-gallery-container.no-transition {
    scroll-behavior: auto;
}

.radio-gallery-container.dragging .radio-item {
    cursor: grab;
    user-select: none;
}

.radio-gallery-container .radio-item {
    scroll-snap-align: start;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    width: 98%;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.radio-item img{
    width: 320px;
    height: 320px;
    object-fit: cover;
}


/* ------------------------------------------------FOOTER */


footer{
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--dark-brown);
}

@media (max-width:1200px){
    .social-icons {
        display: none;
    }
    .skew {
        display: none;
    }
    #first-img {
        margin: -3vh auto 3vh;
    }
    .review-bg{
        height: 40vh;
    }
    .reviewer{
        font-size: 12px;
        bottom: 19%;
    }
    .card-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }
    .card-container br{
        display: none;
    }
    .greeting-imgs-container{
        flex: 1;
    }
    .contact-icons a {
        font-size: 3vh;
    }
    .event-description{
        font-size: 1.5vh;
    }
    .radio-item img{
        width: 200px;
        height: 200px;
    }
    .eighth-container{
        padding-bottom: 20px;
    }
}

@media (max-width:1024px) {
    .logo img{
        height: 4vh;
    }
    header{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .title-two{
        display: none;
    }
    #title-card-container h2 {
        font-size: 3vh;
        margin: 0.5vh;
        text-align: center;
        line-height: 100%;
    }

    #title-card-container span {
        font-weight: 600;
    }

    #title-card-container button {
        border: none;
        background-color: var(--text-color);
        color: var(--tawny);
        font-size: 1.5vw;
        padding: 1.5vw;
    }

    #title-card-container p {
        width: 80%;
        font-size: 2.2vw;
    }
    .about-text h1, .about-text h6 {
        font-size: 2.5vw;
        border: none;
    }
    .about-text-content{
        font-size: 2vw;
        border: none;
    }
    .greeting-container{
        flex-direction: column;
    }
    .second-container{
        height: fit-content;
    }
    .greeting-imgs-container{
        display: none;
    }
    .about-container{
        display: flex;
        flex-direction: column;
    }

    .about-text{
        padding: 6vh 2vh;
        flex: 1.7;

    }
    .third-container{
        padding: 0;
    }
    .cut-container{
        display: none;
    }

    .sixth-container {
        height: fit-content;
    }
    .sixth-container img {
        width: 100%;
    }
    .reviewer {
         bottom: 25%;
    }
    .review-bg{
        height: 30vh;
    }
    .contact-container {
        padding: 10vh;
    }
    .contact-container button{
        padding: 2.5vh;
        margin-bottom: 4vh;
    }

    .sixth-container{
        flex-direction: column;
    }
    .choice-container h1, .cut h1, .about-text h2{
        font-size: 5vw;
    }

    .cut p{
        font-size: 1.5vw;
        padding-top: 1.5vw;
    }
    .cut-container{
        margin-bottom: 20vh;
    }

    .card p{
        font-family: 'Playfair Display', serif;
        font-weight: 400;
    }

    .contact-container h1{
        font-size: 4vh;
    }
    .contact-container input{
        padding: 2vw;
        width: 50vw;
    }
    .name-and-email input{
        width: 24.5vw;
    }
    .events-container{
        grid-template-columns: repeat(2, 1fr);
    }
    #radio-intro img{
        width: 90vw;
    }
    .eighth-container .radio-gallery-container {
        grid-auto-columns: calc((100%/2) - 12px);
    }
    .radio-item img{
        width: 250px;
        height: 250px;
    }
}
@media (max-width:600px) {
    header{
        grid-template-columns: repeat(1, 1fr);
    }
    .nav-container, .nav-link-container{
        display: none;
    }
    nav {
        align-items: center;
        justify-content: center;
    }
    .sponsor-container{
        padding: 1vh;
    }
    .choice-container h1, .cut h1, .about-text h2{
        font-size: 7vw;
    }
    .about-text h1, .about-text h6, .about-text-content {
        font-size: 3.5vw;
        border: none;
    }
    .third-container{
        padding: 0;
        position: relative;
    }
    .cut-container{
        position: absolute;
        top: 30%;
    }
    .cut {
        text-align: center;
        padding: 2vw;
    }
    .cut h1{
        font-size: 7vw;
    }
    .cut p {
        font-size: 2vh;
        padding: 1vw;
    }
    .card-text{
        padding: 5vw;
    }

    .card-container{
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 5vh;
    }
     .review{
        display: none;
    }
    .mobile-review{
        display: block;
        position: relative;
        color: var(--text-color);
        height: fit-content;
        object-fit: cover;
        margin: 10vh auto;
        font-family: 'Playfair Display', serif;
    }
    .mobile-single-review{
        display: none;
    }
    .review-bg {
        width: 100%;
        height: fit-content;
    }
    .mobile-dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 15px 2px 0;
        background-color: #000;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
    }

    .active,
    .mobile-dot:hover {
        background-color: #717171;
    }
    .contact-container h1{
        width: 100%;
        font-size: 3vh;
    }
    .events-container{
        grid-template-columns: repeat(1, 1fr);
    }
    .eighth-container .radio-gallery-container {
        grid-auto-columns: calc((100%/1) - 12px);
    }

}