/* =========================
   GENERAL STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: #3D352B;
    background-color: #F7F4EE;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   NAVIGATION
========================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;

    background-color: rgba(61, 53, 43, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 50px;

    color: white;
}

.logo {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: normal;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-size: 14px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.booking-button {
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 13px 22px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: background-color 0.3s ease,
                color 0.3s ease;
}

.booking-button:hover {
    background-color: white;
    color: #3D352B;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.38),
            rgba(0, 0, 0, 0.38)
        ),
        url("../images/exterior.jpg");

    background-size: cover;
    background-position: center;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 30px;
}

.location {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 72px;
    font-weight: normal;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-text {
    font-size: 19px;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.primary-button,
.secondary-button {
    padding: 14px 25px;
    font-size: 13px;
    letter-spacing: 1px;
}

.primary-button {
    background-color: #F7F4EE;
    color: #3D352B;
}

.secondary-button {
    border: 1px solid white;
    color: white;
}

.primary-button:hover {
    background-color: #D8CFC2;
}

.secondary-button:hover {
    background-color: white;
    color: #3D352B;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .room-grid {
        grid-template-columns: 1fr 1fr;
    }

    .room-card:last-child {
        grid-column: auto;
    }

    .explore-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .explore-text,
    .about-text,
    .contact-text {
        max-width: 700px;
    }

    .explore-image,
    .about-image,
    .contact-image {
        height: 450px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact {
        text-align: left;
    }

}

@media (max-width: 600px) {

        .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .rooms,
    .explore,
    .about,
    .gallery,
    .contact,
    .amenities {
        padding: 80px 20px;
    }

    .welcome {
        padding: 90px 20px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-text {
        font-size: 16px;
    }

    .location {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .room-card:last-child {
        grid-column: auto;
    }

    .room-image {
        height: 280px;
    }

    .welcome h2,
    .explore-text h2,
    .about-text h2,
    .contact-text h2,
    .booking-cta h2,
    .gallery .section-heading h2 {
        font-size: 38px;
    }

    .explore-image,
    .about-image,
    .contact-image {
        height: 350px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .gallery-wide {
        grid-column: auto;
    }

    .footer {
        padding: 60px 25px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-contact {
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }

}

/* =========================
   WELCOME SECTION
========================= */

.welcome {
    padding: 120px 20px;
    background-color: #F7F4EE;
    text-align: center;
}

.welcome-content {
    max-width: 750px;
    margin: 0 auto;
}

.section-label {
    font-size: 12px;
    letter-spacing: 3px;
    color: #7C6651;
    margin-bottom: 20px;
}

.welcome h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
    line-height: 1.15;
    color: #3D352B;
    margin-bottom: 30px;
}

.welcome p:not(.section-label) {
    font-size: 16px;
    line-height: 1.8;
    color: #5C554D;
    margin-bottom: 18px;
}

.text-link {
    display: inline-block;
    margin-top: 15px;
    color: #3D352B;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #7C6651;
    padding-bottom: 5px;

    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.65;
}

/* =========================
   ROOMS SECTION
========================= */

.rooms {
    padding: 120px 50px;
    background-color: #D8CFC2;
}

.rooms-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.rooms-heading h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
    color: #3D352B;
    margin-bottom: 20px;
}

.rooms-heading > p:last-child {
    color: #5C554D;
    font-size: 16px;
    line-height: 1.7;
}

.room-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.room-card:last-child {
    grid-column: 2;
}

.room-card {
    background-color: #F7F4EE;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(61, 53, 43, 0.15);
}

.room-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.04);
}

.room-info {
    padding: 30px;
}

.room-type {
    font-size: 11px;
    letter-spacing: 2px;
    color: #7C6651;
    margin-bottom: 12px;
}

.room-info h3 {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: normal;
    color: #3D352B;
    margin-bottom: 15px;
}

.room-info > p:not(.room-type) {
    color: #5C554D;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-content {
    padding: 30px;
}


/* =========================
   ROOMS — MOBILE
========================= */

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.room-features li {
    font-size: 14px;
    color: #5C554D;
    padding: 6px 0;
}

.room-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   BOOKING CTA
========================= */

.booking-cta {
    padding: 110px 25px 55px;
    background-color: #F7F4EE;
    text-align: center;
}

.booking-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking-cta h2 {
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: normal;
    color: #3D352B;
    margin-bottom: 20px;
}

.booking-cta p:not(.section-label) {
    color: #5C554D;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.booking-cta .primary-button {
    display: inline-block;
}

/* =========================
   AMENITIES SECTION
========================= */

.amenities {
    padding: 60px 50px 110px;
    background-color: #F7F4EE;
}

.amenities .section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
}

.amenities-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px 30px;
}

.amenity {
    text-align: center;
}

.amenity h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: normal;
    color: #3D352B;
    margin-bottom: 12px;
}

.amenity p {
    color: #5C554D;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================
   EXPLORE THE AREA
========================= */

.explore {
    padding: 120px 50px;
    background-color: #D8CFC2;
}

.explore-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.explore-text {
    max-width: 560px;
}

.explore-text h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
    color: #3D352B;
    line-height: 1.15;
    margin-bottom: 25px;
}

.explore-text > p:not(.section-label) {
    color: #5C554D;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.explore-places {
    margin-top: 35px;
}

.place {
    border-top: 1px solid rgba(61, 53, 43, 0.2);
    padding: 18px 0;
}

.place h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: normal;
    color: #3D352B;
    margin-bottom: 7px;
}

.place p {
    color: #5C554D;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.explore-image {
    height: 600px;
    overflow: hidden;
}

.explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   ABOUT SECTION
========================= */

.about {
    padding: 120px 50px;
    background-color: #F7F4EE;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    height: 550px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text {
    max-width: 560px;
}

.about-text h2 {
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: normal;
    line-height: 1.2;
    color: #3D352B;
    margin-bottom: 25px;
}

.about-text > p:not(.section-label) {
    color: #5C554D;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* =========================
   GALLERY SECTION
========================= */

.gallery {
    padding: 120px 50px;
    background-color: #D8CFC2;
}

.gallery .section-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.gallery .section-heading h2 {
    font-family: Georgia, serif;
    font-size: 48px;
    font-weight: normal;
    color: #3D352B;
    margin-bottom: 20px;
}

.gallery .section-heading > p:last-child {
    color: #5C554D;
    font-size: 16px;
    line-height: 1.7;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-wide {
    grid-column: span 2;
}

/* =========================
   CONTACT SECTION
========================= */

.contact {
    padding: 120px 50px;
    background-color: #F7F4EE;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-text {
    max-width: 560px;
}

.contact-text h2 {
    font-family: Georgia, serif;
    font-size: 46px;
    font-weight: normal;
    line-height: 1.2;
    color: #3D352B;
    margin-bottom: 25px;
}

.contact-text > p:not(.section-label) {
    color: #5C554D;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 35px;
}

.contact-item {
    border-top: 1px solid rgba(61, 53, 43, 0.2);
    padding: 18px 0;
}

.contact-item h3 {
    font-family: Georgia, serif;
    font-size: 21px;
    font-weight: normal;
    color: #3D352B;
    margin-bottom: 7px;
}

.contact-item p {
    color: #5C554D;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.contact-item a {
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.6;
}

.contact-image {
    height: 550px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 70px 50px 25px;
    background-color: #3D352B;
    color: #F7F4EE;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand h2 {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 12px;
}

.footer-brand p,
.footer-contact p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.75;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 0.6;
}

.footer-contact {
    text-align: right;
}

.footer-contact a {
    display: inline-block;
    margin-top: 10px;
    border-bottom: 1px solid rgba(247, 244, 238, 0.5);
    padding-bottom: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(247, 244, 238, 0.2);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 768px) {

    header .nav-links {
        display: none !important;
    }

    .room-grid {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .room-card {
        min-width: 0;
    }

    .room-card:nth-child(n) {
    display: block !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

    .explore-content,
    .about-content,
    .contact-content {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 40px;
    }

    .explore-text,
    .about-text,
    .contact-text,
    .explore-image,
    .about-image,
    .contact-image {
        min-width: 0;
    }

    .explore-image,
    .about-image,
    .contact-image {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
  .booking-cta {
    min-height: auto !important;
    padding: 80px 24px !important;
  }

  .amenities-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 20px;
}

header {
  background-color: rgba(61, 53, 43, 0.94);
}

nav {
  padding: 16px 24px;
}

.about-text h2 {
  font-size: 38px;
}

.footer {
  padding: 60px 24px 25px;
}

.footer-content {
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  padding-bottom: 35px;
}

.footer-brand {
  grid-column: 1 / -1;
}

.footer-contact {
  text-align: left;
}

.footer-bottom {
  flex-direction: column;
  gap: 8px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #F7F4EE;
}

header .nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none !important;
  flex-direction: column;
  gap: 0;
  padding: 12px 24px 20px;
  background: rgba(61, 53, 43, 0.97);
}

header .nav-links.open {
  display: flex !important;
}

header .nav-links a {
  padding: 12px 0;
}
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}