/* ==============================
   GRACEVILLA CASTLE HOTEL
   Main Styles
================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');


/* ==============================
   GLOBAL
================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f5ef;
    color: #1c1c1c;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}


/* ==============================
   NAVIGATION
================================= */

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1400px;
    margin: auto;
    padding: 28px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 155px;
    height: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d8b878;
}

.nav-button {
    border: 1px solid #d8b878;
    color: #ffffff;
    padding: 11px 22px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-button:hover {
    background: #d8b878;
    color: #111111;
}


/* ==============================
   HERO
================================= */

.hero {
    min-height: 100vh;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.68)
        ),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=2000&q=85");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 120px 20px 80px;
}

.hero-content {
    max-width: 850px;
    color: #ffffff;
}

.hero-subtitle {
    color: #d8b878;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(55px, 8vw, 100px);
    line-height: 0.95;
    font-weight: 500;
    margin-bottom: 30px;
}

.hero-description {
    max-width: 650px;
    margin: auto;
    font-size: 16px;
    font-weight: 300;
    color: #eeeeee;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* ==============================
   BUTTONS
================================= */

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s;
}

.primary-button {
    background: #d8b878;
    color: #171717;
}

.primary-button:hover {
    background: #ffffff;
}

.secondary-button {
    border: 1px solid #d8b878;
    color: #ffffff;
}

.secondary-button:hover {
    background: #d8b878;
    color: #171717;
}


/* ==============================
   GENERAL SECTIONS
================================= */

section {
    padding: 110px 7%;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-label {
    color: #a3834b;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 15px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5vw, 65px);
    line-height: 1;
    font-weight: 500;
    margin-bottom: 22px;
}


/* ==============================
   ABOUT
================================= */

.about {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;

    padding: 120px 8%;

    background: #f8f6f1;

}

.about-image {

    width: 100%;

    height: 560px;

    overflow: hidden;

}

.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}

.about-content {

    max-width: 600px;

}

.about-content .section-label {

    margin-bottom: 20px;

}

.about-content h2 {

    font-size: 52px;

    font-weight: 400;

    line-height: 1.15;

    margin-bottom: 30px;

}

.about-content p {

    font-size: 17px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;

}

.text-link {

    display: inline-block;

    margin-top: 15px;

    color: #b08a3c;

    text-decoration: none;

    font-weight: 600;

    letter-spacing: 1px;

}

.text-link:hover {

    color: #8c6b2f;
}


/* ==============================
   ROOMS
================================= */

.rooms {
    background: #ffffff;
}

.room-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.room-card {
    background: #f8f5ef;
    overflow: hidden;
}

.room-image {
    height: 350px;
    background:
        linear-gradient(
            135deg,
            #5b5044,
            #29231e
        );

    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8b878;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
}

.room-info {
    padding: 28px;
}

.room-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.room-info p {
    color: #777777;
    font-size: 14px;
    margin-bottom: 18px;
}

.room-info a {
    color: #a3834b;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ==============================
   DINING
================================= */

.dining {
    min-height: 600px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)
        ),
        linear-gradient(
            135deg,
            #4c3d2d,
            #181818
        );

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dining-content {
    max-width: 750px;
    color: #555555;
font-weight: 500;
}

.dining-content h2 {
    color: #555555;
font-weight: 500;
}

.dining-content p:not(.section-label) {
    color: #555555;
font-weight: 500;
    margin-bottom: 30px;
}


/* ==============================
   GALLERY
================================= */

.gallery {
    background: #f8f5ef;
}

.gallery-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 280px;
    background:
        linear-gradient(
            135deg,
            #51483f,
            #28231f
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d8b878;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ==============================
   CONTACT
================================= */

.contact {
    background: #171717;
    text-align: center;
    color: #ffffff;
}

.contact-content {
    max-width: 750px;
    margin: auto;
}

.contact h2 {
    color: #ffffff;
}

.contact-content > p:not(.section-label) {
    color: #bbbbbb;
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #111111;
    color: #ffffff;
    padding: 70px 8% 25px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-column h3 {
    font-family: Georgia, serif;
    font-size: 28px;
}

.footer-column p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cfcfcf;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d4af37;
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;
    justify-content: space-between;
    align-items: center;

    color: #999999;
    font-size: 14px;
}

.footer-tagline {
    color: #d4af37;
}


/* ==============================
   MOBILE
================================= */

@media (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .navbar {
        padding: 22px 5%;
    }

    .logo img {
    width: 125px;
}

    .hero h1 {
        font-size: 60px;
    }

    .room-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 80px 6%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}


@media (max-width: 600px) {

    .nav-button {
        display: none;
    }

    .hero {
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 240px;
    }
}

/* ==============================
   HOTEL EXPERIENCES
================================= */

.experiences {
    background: #ffffff;
}

.experience-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.experience-card {
    text-align: center;
    padding: 45px 25px;

    background: #f8f5ef;

    border: 1px solid rgba(163, 131, 75, 0.15);

    transition: all 0.35s ease;
}

.experience-card:hover {
    transform: translateY(-8px);

    border-color: #d8b878;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}

.experience-icon {
    width: 55px;
    height: 55px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d8b878;

    color: #a3834b;

    font-size: 22px;
}

.experience-card h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 28px;

    font-weight: 600;

    margin-bottom: 12px;
}

.experience-card p {
    color: #777777;

    font-size: 13px;

    line-height: 1.8;
}


/* EXPERIENCE MOBILE */

@media (max-width: 900px) {

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .experience-grid {
        grid-template-columns: 1fr;
    }

}

/* ==============================
   ABOUT GRACEVILLA
================================= */

.about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 30px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;
    display: block;
}

.about-image::after {
    content: "";

    position: absolute;

    top: 20px;
    left: 20px;

    width: 100%;
    height: 100%;

    border: 1px solid #d8b878;

    z-index: -1;
}

.about-content {
    padding-right: 20px;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;

    margin: 15px 0 25px;
}

.about-content p {
    color: #777;

    font-size: 15px;
    line-height: 1.9;

    margin-bottom: 20px;
}

.about-content .text-link {
    display: inline-block;

    margin-top: 10px;

    color: #a3834b;

    text-decoration: none;

    font-size: 13px;
    letter-spacing: 1.5px;

    transition: 0.3s;
}

.about-content .text-link:hover {
    color: #d8b878;
}

@media (max-width: 768px) {

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 6%;
    }

    .about-image {
        height: 400px;
    }

    .about-content h2 {
        font-size: 40px;
    }

}

/* ==============================
   ABOUT MOBILE
================================= */

@media (max-width: 800px) {

    .about {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 80px 20px;
    }

    .about-image img {
        height: 400px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-content h2 {
        font-size: 42px;
    }

}

/* =========================================
   ROOMS & SUITES - LUXURY HOTEL DESIGN
   ========================================= */

.rooms {
    padding: 100px 5%;
    background: #f8f6f1;
}

.section-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-heading .section-label {
    color: #b58a2a;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    font-weight: 400;
    color: #18202d;
    margin: 0 0 20px;
}

.section-heading > p:last-child {
    font-size: 18px;
    color: #5f6368;
    line-height: 1.7;
}


/* ROOM GRID */

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto;
}


/* ROOM CARD */

.room-card {
    background: #ffffff;
    border: 1px solid #e5e0d6;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}


/* ROOM IMAGE */

.room-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #252b35;
}

.room-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.04);
}


/* ROOM INFORMATION */

.room-info {
    padding: 30px 26px 32px;
}

.room-info h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: #18202d;
    margin: 0 0 14px;
}

.room-info > p {
    color: #62666b;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 22px;
}


/* AMENITIES */

.room-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.room-info li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #45494d;
    font-size: 15px;
}

.room-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #b58a2a;
    color: #ffffff;
    font-size: 12px;
    line-height: 19px;
    text-align: center;
}


/* DISCOVER ROOM BUTTON */

.room-link {
    display: inline-block;
    padding: 13px 25px;
    border: 1px solid #b58a2a;
    color: #a47720;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.room-link:hover {
    background: #b58a2a;
    color: #ffffff;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .room-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 46px;
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

    .rooms {
        padding: 70px 6%;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .section-heading > p:last-child {
        font-size: 16px;
    }

    .room-grid {
        grid-template-columns: 1fr;
    }

    .room-image {
        height: 280px;
    }

    .room-info {
        padding: 25px 22px 28px;
    }

}

/* =========================
   GALLERY SECTION
========================= */

.gallery {
    padding: 120px 8%;
    background: #ffffff;
}

.gallery .section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.gallery .section-heading h2 {
    font-size: 52px;
    font-weight: 400;
    margin: 15px 0 20px;
}

.gallery .section-heading p {
    color: #777;
    line-height: 1.8;
}


/* GALLERY GRID */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 360px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}


/* IMAGE HOVER */

.gallery-item:hover img {
    transform: scale(1.06);
}


/* MOBILE */

@media (max-width: 768px) {

    .gallery {
        padding: 80px 6%;
    }

    .gallery .section-heading h2 {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item {
        height: 300px;
    }

}

/* =========================================
   CONTACT SECTION
========================================= */

.contact {
    background: #171b23;
    color: #ffffff;
    padding: 110px 8%;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 520px;
}


/* CONTACT CONTENT */

.contact-content {
    padding: 60px 70px 60px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content .section-label {
    color: #d8b878;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 18px;
}

.contact-content h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;

    margin: 0 0 25px;
}

.contact-intro {
    color: #c5c5c5;

    font-size: 15px;
    line-height: 1.9;

    max-width: 520px;

    margin-bottom: 35px;
}


/* CONTACT DETAILS */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    border: 1px solid #b89555;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d8b878;
}

.contact-detail h4 {
    margin: 0 0 5px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;
    font-weight: 500;
}

.contact-detail p {
    margin: 0;

    color: #aaa;

    font-size: 14px;
    line-height: 1.6;
}


/* CONTACT BUTTONS */

.contact-buttons {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 14px 28px;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.3s ease;
}

.primary-button {
    background: #b89555;
    color: #ffffff;
}

.primary-button:hover {
    background: #d8b878;
}

.secondary-button {
    border: 1px solid #b89555;
    color: #d8b878;
}

.secondary-button:hover {
    background: #b89555;
    color: #ffffff;
}


/* CONTACT VISUAL */

.contact-visual {
    min-height: 520px;

    background:
        linear-gradient(
            rgba(15, 18, 24, 0.35),
            rgba(15, 18, 24, 0.65)
        ),
        url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=1200&q=80");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;
}

.contact-visual-content {
    padding: 50px;
}

.contact-visual-content p {
    color: #d8b878;

    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.contact-visual-content h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 48px;

    line-height: 1.1;

    font-weight: 400;

    margin: 0 0 20px;
}

.contact-visual-content span {
    color: #ddd;

    font-size: 12px;

    letter-spacing: 2px;
}


/* =========================================
   CONTACT MOBILE
========================================= */

@media (max-width: 800px) {

    .contact {
        padding: 80px 6%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 0 0 60px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .contact-visual {
        min-height: 400px;
    }

    .contact-visual-content {
        padding: 35px;
    }

    .contact-visual-content h3 {
        font-size: 40px;
    }

}

@media (max-width: 500px) {

    .contact-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
    }

}

/* =========================================
   CONTACT SECTION
========================================= */

.contact {
    background: #171b23;
    color: #ffffff;
    padding: 110px 8%;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 520px;
}


/* CONTACT CONTENT */

.contact-content {
    padding: 60px 70px 60px 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content .section-label {
    color: #d8b878;
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 18px;
}

.contact-content h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 50px;
    font-weight: 400;
    line-height: 1.15;

    margin: 0 0 25px;
}

.contact-intro {
    color: #c5c5c5;

    font-size: 15px;
    line-height: 1.9;

    max-width: 520px;

    margin-bottom: 35px;
}


/* CONTACT DETAILS */

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    width: 42px;
    height: 42px;

    border: 1px solid #b89555;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d8b878;
}

.contact-detail h4 {
    margin: 0 0 5px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 21px;
    font-weight: 500;
}

.contact-detail p {
    margin: 0;

    color: #aaa;

    font-size: 14px;
    line-height: 1.6;
}


/* CONTACT BUTTONS */

.contact-buttons {
    display: flex;
    gap: 15px;

    margin-top: 35px;
}

.primary-button,
.secondary-button {
    display: inline-block;

    padding: 14px 28px;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: 0.3s ease;
}

.primary-button {
    background: #b89555;
    color: #ffffff;
}

.primary-button:hover {
    background: #d8b878;
}

.secondary-button {
    border: 1px solid #b89555;
    color: #d8b878;
}

.secondary-button:hover {
    background: #b89555;
    color: #ffffff;
}


/* CONTACT VISUAL */

.contact-visual {
    min-height: 520px;

    background:
        linear-gradient(
            rgba(15, 18, 24, 0.35),
            rgba(15, 18, 24, 0.65)
        ),
        url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=1200&q=80");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: flex-end;
}

.contact-visual-content {
    padding: 50px;
}

.contact-visual-content p {
    color: #d8b878;

    font-size: 11px;

    letter-spacing: 3px;

    margin-bottom: 15px;
}

.contact-visual-content h3 {
    font-family: 'Cormorant Garamond', serif;

    font-size: 48px;

    line-height: 1.1;

    font-weight: 400;

    margin: 0 0 20px;
}

.contact-visual-content span {
    color: #ddd;

    font-size: 12px;

    letter-spacing: 2px;
}


/* =========================================
   CONTACT MOBILE
========================================= */

@media (max-width: 800px) {

    .contact {
        padding: 80px 6%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 0 0 60px;
    }

    .contact-content h2 {
        font-size: 40px;
    }

    .contact-visual {
        min-height: 400px;
    }

    .contact-visual-content {
        padding: 35px;
    }

    .contact-visual-content h3 {
        font-size: 40px;
    }

}

@media (max-width: 500px) {

    .contact-buttons {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        text-align: center;
    }

}

/* MOBILE MENU */

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #d8b878;
    color: #d8b878;
    font-size: 22px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}


@media (max-width: 900px) {

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        display: none;

        position: absolute;
        top: 85px;
        left: 5%;
        right: 5%;

        background: #111111;

        padding: 25px;

        flex-direction: column;
        gap: 20px;

        text-align: center;

        border: 1px solid rgba(216, 184, 120, 0.3);

        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
    }

}

.nav-links {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 900px) {

    .nav-links {
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 10px;
    }

}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 900px) {

    .footer {
        width: 100%;
        overflow: hidden;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
        padding: 50px 25px;
        box-sizing: border-box;
    }

    .footer-column {
        width: 100%;
        max-width: 100%;
    }

    .footer-column h3,
    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-column p {
        max-width: 100%;
        line-height: 1.7;
    }

    .footer-column ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer-column li {
        margin-bottom: 12px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 25px 20px;
    }

    .footer-bottom p {
        margin: 0;
    }

    .footer-tagline {
        text-align: center;
    }

    body {
        overflow-x: hidden;
    }

}

/* =========================================
   MOBILE ROOMS
========================================= */

@media (max-width: 900px) {

    .room-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .room-card {
        width: 100%;
        box-sizing: border-box;
    }

    .room-image {
        width: 100%;
        height: 260px;
    }

    .room-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .room-info {
        padding: 28px 22px;
    }

    .room-info h3 {
        font-size: 28px;
    }

    .room-info p {
        line-height: 1.7;
    }

}

/* =========================================
   RESPONSIVE GALLERY
========================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* MOBILE GALLERY */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-item {
        height: 280px;
    }

}

/* =========================================
   FINAL MOBILE POLISH
========================================= */

@media (max-width: 900px) {

    /* HERO */

    .hero {
        min-height: 85vh;
        padding: 100px 20px 70px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(42px, 10vw, 64px);
        line-height: 1.05;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
        text-align: center;
    }


    /* ABOUT */

    .about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 70px 20px;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: 350px;
        object-fit: cover;
    }

    .about-content {
        width: 100%;
        text-align: center;
    }

    .about-content h2 {
        font-size: 38px;
        line-height: 1.15;
    }

    .about-content p {
        line-height: 1.8;
    }


    /* SECTION HEADINGS */

    .section-heading {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-heading h2 {
        font-size: 40px;
        line-height: 1.15;
    }


    /* EXPERIENCES */

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .experience-card {
        width: 100%;
        box-sizing: border-box;
    }


    /* DINING */

    .dining {
        padding: 90px 20px;
    }

    .dining-content {
        width: 100%;
        max-width: 600px;
        text-align: center;
        margin: auto;
    }

    .dining-content h2 {
        font-size: 40px;
        line-height: 1.15;
    }


    /* CONTACT */

    .contact {
        padding: 70px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        width: 100%;
        text-align: center;
    }

    .contact-content h2 {
        font-size: 40px;
        line-height: 1.15;
    }

    .contact-details {
        text-align: left;
    }

    .contact-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-visual {
        width: 100%;
        min-height: 420px;
    }

}

/* =========================================
   MOBILE MENU - FINAL VERSION
========================================= */

@media (max-width: 900px) {

    .nav-links {
        position: absolute;

        top: 100%;
        left: 15px;
        right: 15px;

        background: #171717;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 15px 20px;

        gap: 0;

        border: 1px solid rgba(212, 175, 55, 0.45);

        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);

        z-index: 9999;

        box-sizing: border-box;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;

        width: 100%;
        padding: 14px 10px;

        box-sizing: border-box;

        color: #ffffff;

        font-size: 13px;
        font-weight: 500;

        letter-spacing: 2px;

        text-decoration: none;
    }

    .nav-links li a:hover {
        color: #d4af37;
        background: rgba(212, 175, 55, 0.08);
    }

    .menu-toggle {
        position: relative;
        z-index: 10000;
    }

}

/* =========================================
   MOBILE LOGO SIZE
========================================= */

@media (max-width: 900px) {

    .logo img {
        width: 105px;
        height: auto;
        display: block;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .navbar {
        padding: 15px 20px;
        min-height: 70px;
    }

    .hero {
        padding-top: 110px;
    }

}

/* =========================================
   RESERVATION CTA
========================================= */

.reservation-cta {
    padding: 110px 30px;
    background: #151515;
    text-align: center;
}

.reservation-content {
    max-width: 750px;
    margin: 0 auto;
}

.reservation-content h2 {
    font-size: 52px;
    line-height: 1.15;
    margin: 15px 0 25px;
}

.reservation-content p:not(.section-label) {
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.reservation-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* MOBILE */

@media (max-width: 900px) {

    .reservation-cta {
        padding: 80px 20px;
    }

    .reservation-content h2 {
        font-size: 40px;
    }

    .reservation-content p:not(.section-label) {
        font-size: 15px;
    }

    .reservation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .reservation-buttons a {
        width: 100%;
        max-width: 280px;
        box-sizing: border-box;
        text-align: center;
    }

}

/* =========================================
   RESERVATION CTA TEXT
========================================= */

.reservation-content h2 {
    color: #ffffff;
}

.reservation-content p:not(.section-label) {
    color: #d6d6d6;
}

/* =========================================
   LOCATION / GOOGLE MAP
========================================= */

.location-section {
    padding: 100px 30px;
    background: #f7f5ef;
}

.location-section .section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.location-section .section-heading h2 {
    color: #222;
}

.location-section .section-heading > p:not(.section-label) {
    color: #666;
    line-height: 1.8;
}

.map-container {
    max-width: 1200px;
    height: 450px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(180, 145, 50, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            rgba(20, 20, 20, 0.78),
            rgba(20, 20, 20, 0.78)
        ),
        url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1600&q=80");

    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 30px;
    box-sizing: border-box;
}

.map-placeholder-icon {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 15px;
}

.map-placeholder h3 {
    color: #ffffff;
    font-size: 32px;
    margin: 0 0 12px;
}

.map-placeholder p {
    color: #dddddd;
    margin-bottom: 25px;
}


/* MOBILE MAP */

@media (max-width: 900px) {

    .location-section {
        padding: 70px 20px;
    }

    .location-section .section-heading h2 {
        font-size: 38px;
    }

    .map-container {
        height: 380px;
    }

    .map-placeholder h3 {
        font-size: 26px;
    }

}

/* =========================================
   DINING SECTION
========================================= */

.dining {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: #f7f5ef;
}

.dining-image {
    width: 100%;
    min-height: 600px;
    overflow: hidden;
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dining-image:hover img {
    transform: scale(1.04);
}

.dining-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    max-width: 600px;
}

.dining-content h2 {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
    margin: 15px 0 25px;
    color: #222;
}

.dining-content > p:not(.section-label) {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.dining-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 20px 0 30px;
}

.dining-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dining-feature span {
    color: #b89555;
    font-size: 18px;
}

.dining-feature p {
    margin: 0;
    color: #444;
    font-size: 14px;
}


/* DINING MOBILE */

@media (max-width: 900px) {

    .dining {
        grid-template-columns: 1fr;
    }

    .dining-image {
        min-height: 380px;
        height: 380px;
    }

    .dining-content {
        padding: 70px 25px;
        text-align: center;
        align-items: center;
    }

    .dining-content h2 {
        font-size: 40px;
    }

    .dining-features {
        width: 100%;
        max-width: 300px;
        text-align: left;
    }

}