* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;

}

/* GENERAL STYLING */
img {
    width: 100%;
    height: auto;
}

.container {
    padding: 9.6rem 4.8rem;
}

.heading-secondary {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3.2rem;
}
/* NAV BAR */
.top-nav {
    display: flex;
    padding: 2rem;
    justify-content: space-between;
    height: 14rem;
}

.top-nav-container {
    position: relative;
    border-bottom: double rgb(153, 8, 8);
}


.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    align-self: flex-end;
    font-weight: 700;
    text-align: center;
    color: rgb(153, 8, 8)

}

/** BTN **/
.booking-btn,
.link {
    border: 1.5px solid rgb(153, 8, 8);
    border-radius: 2px;
    background: #fff;
    padding: 1rem 1.4rem;
    text-transform: uppercase;
    font-size: 1.0rem;
    color: #333;
    font-weight: 700;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.2px;

}

.booking-btn span,
.plan-event-link span {
    font-weight: 700;
    color: rgb(153, 8, 8);
    letter-spacing: 1px;
}


.link {
    text-decoration: none;
}

.nav-list {
    display: none;
}

.nav-list a:link,
.nav-list a:visited {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
}

.nav-btn {
    background: transparent;
    border: none;
    font-size: 2.4rem;
    display: inline-block;
    padding: 2rem;
    color: rgb(153, 8, 8);
}

/* HERO SECTION */

.hero-section {
    background-image: linear-gradient( to bottom, rgba(48, 48, 48, 0.116), rgba(55, 54, 54, 0.412) ),
    url("https://images.pexels.com/photos/3403505/pexels-photo-3403505.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
    background-size: cover;
    min-height: 75vh;
    position: relative;
    padding: 4.8rem;
}

.hero-section-text {
    background: rgba(255, 255, 255, 0.693);
    backdrop-filter: blur(4px);
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4.8rem 9.6rem;
    gap: 3.2rem;
}

h1 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: 1.2px;
    color: rgb(121, 5, 5);
}

.hero-section-text p {
    font-size: 1.6rem;
    letter-spacing: 1.4px;
    text-align: center;
}

.reservation-link {
    width: 100%;
    text-decoration: none;
    background-color: transparent;
    font-weight: 700;
    letter-spacing: 1.2px;

}

/* NEWS SECTION */

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 3.2rem;
}

.news {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.news-title,
h3 {
    margin-top: 1.2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

/* BOOKING SECTION */
.booking-section {
    background: #eee;
}


.booking-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 4.8rem;
}
.booking-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    background: #fff;
    padding: 3.2rem 1.8rem;

}

.booking-text p,
.subcribe-section p {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
}

/* SUBCRIBE SECTION */
.subcribe-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.subcribe-section p {
    font-size: 1.6rem;
}

.subcribe-btn {
    font-size: 1.6rem;
    text-decoration: none;
    color: rgb(153, 8, 8);
    border-bottom: solid 1px rgb(153, 8, 8);
}

/* FOOTER */
footer {
    background: rgb(153, 8, 8);
    padding: 4.8rem 9.6rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:1.2rem;
}

footer p {
    font-size: 1.4rem;
}

.number:link,
.number:visited {
    font-size: 1.4rem;
    text-decoration: none;
    color: #fff;
}


.number:hover,
.number:active {
    color: #eee;
}

.footer-logo {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: "Playfair Display", serif;
}

@media (min-width: 768px) {
    .nav-list {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        padding: 2rem;
    }

    .nav-list li {
        list-style: none;
    }
    
    .nav-list a:hover,
    .nav-list a:active {
        color: rgb(153, 8, 8);
    }

    .nav-btn {
        display: none;
    }

    .logo {
        font-size: 5.2rem;
    }
    
    .link, .booking-btn {
        font-size: 1.2rem;
    }

   .hero-section {
       padding: 14rem 20rem;
   }
   
   .hero-section-text {
       padding: 4.8rem;
   }
   h1 {
       font-size: 3.1rem;
       font-weight: 600;
       letter-spacing: 2px;
       line-height: 1.3;
   }

  
}