/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f7f4ec;
    color: #17251b;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =====================================================
   COLOUR SYSTEM
===================================================== */

:root {

    --forest: #122218;

    --forest-light: #243b2b;

    --cream: #f7f4ec;

    --cream-dark: #ebe4d5;

    --white: #ffffff;

    --gold: #b78a43;

    --gold-light: #d4b06a;

    --text: #17251b;

    --muted: #77766d;

    --border: rgba(23, 37, 27, 0.15);

}


/* =====================================================
   HEADER
===================================================== */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 15px 6vw;

    color: white;

    background:
        linear-gradient(
            to bottom,
            rgba(8, 20, 12, 0.85),
            transparent
        );

}


/* LOGO */

.logo img {

    width: 105px;

    height: 105px;

    object-fit: contain;

    background: var(--cream);

    border-radius: 50%;

}


/* NAVIGATION */

.navigation {

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.12em;

}


.navigation a {

    transition: 0.3s;

    opacity: 0.9;

}


.navigation a:hover {

    color: var(--gold-light);

}


.nav-button {

    background: var(--gold);

    padding: 13px 22px;

    color: white;

}


.menu-button {

    display: none;

    background: none;

    border: 1px solid rgba(255,255,255,0.5);

    color: white;

    font-size: 22px;

    padding: 7px 12px;

}


/* =====================================================
   HERO
===================================================== */

.hero {

    min-height: 760px;

    position: relative;

    display: flex;

    align-items: center;

    color: white;

    overflow: hidden;

}


/* HERO IMAGE */

.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(8, 24, 13, 0.97),
            rgba(8, 24, 13, 0.75) 35%,
            rgba(8, 24, 13, 0.15)
        ),
        url("images/WhatsApp Image 2026-08-20 at 07.36.58.jpeg");

    background-size: cover;

    background-position: center;

}


/* DARK OVERLAY */

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4,12,7,0.85),
            transparent 55%
        );

}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    width: 600px;

    margin-left: 8vw;

    padding-top: 80px;

}


.small-title {

    font-size: 11px;

    letter-spacing: 0.25em;

    color: var(--gold-light);

    margin-bottom: 25px;

}


.small-title span {

    margin: 0 8px;

}


.hero h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(60px, 7vw, 95px);

    line-height: 0.86;

    font-weight: 500;

    letter-spacing: -2px;

}


.hero h1 span {

    color: var(--gold-light);

    font-style: italic;

}


.hero-description {

    max-width: 480px;

    margin: 35px 0;

    font-size: 15px;

    color: rgba(255,255,255,0.82);

}


/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


.gold-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: var(--gold);

    color: white;

    padding: 14px 25px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-size: 10px;

    transition: 0.3s;

}


.gold-button:hover {

    background: #966d2f;

    transform: translateY(-2px);

}


.outline-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,0.6);

    color: white;

    padding: 14px 25px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-size: 10px;

    transition: 0.3s;

}


.outline-button:hover {

    background: white;

    color: var(--forest);

}


.hero-scroll {

    position: absolute;

    z-index: 3;

    bottom: 35px;

    left: 8vw;

    font-size: 9px;

    letter-spacing: 0.25em;

    opacity: 0.7;

}


.hero-scroll span {

    display: block;

    font-size: 20px;

    text-align: center;

}


/* =====================================================
   QUICK INFORMATION
===================================================== */

.quick-info {

    position: relative;

    z-index: 5;

    width: 86%;

    margin: -55px auto 0;

    background: white;

    border-radius: 12px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.13);

    display: grid;

    grid-template-columns: repeat(4,1fr);

    padding: 30px;

}


.info-box {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    border-right: 1px solid var(--border);

}


.info-box:last-child {

    border-right: none;

}


.info-number {

    font-family: "Cormorant Garamond", serif;

    font-size: 55px;

    color: var(--forest);

}


.info-box strong {

    display: block;

    text-transform: uppercase;

    font-size: 11px;

}


.info-box small {

    color: var(--muted);

    font-size: 10px;

}


/* =====================================================
   GENERAL SECTION
===================================================== */

.section {

    padding: 120px 7vw;

}


.section-label {

    font-size: 10px;

    letter-spacing: 0.3em;

    color: var(--gold);

    margin-bottom: 40px;

}


.gold-text {

    font-size: 10px;

    letter-spacing: 0.25em;

    color: var(--gold);

    margin-bottom: 20px;

    font-weight: 600;

}


/* =====================================================
   ABOUT
===================================================== */

.about {

    background: var(--cream);

}


.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

}


.about h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(55px,6vw,80px);

    line-height: 0.9;

    font-weight: 500;

}


.about h2 em {

    color: var(--gold);

}


.about-text {

    max-width: 520px;

    color: var(--muted);

}


.about-text p {

    margin-bottom: 22px;

}


.text-link {

    color: var(--forest);

    font-size: 12px;

    font-weight: 600;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 5px;

}


/* =====================================================
   ROOMS
===================================================== */

.rooms {

    background: var(--cream-dark);

}


.section-heading {

    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 50px;

}


.section-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 70px;

    line-height: 0.9;

    font-weight: 500;

}


.section-heading > p {

    max-width: 330px;

    color: var(--muted);

}


.room-grid {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 30px;

}


.room-card {

    background: white;

    border: 1px solid var(--border);

}


.room-image {

    height: 370px;

    position: relative;

    overflow: hidden;

}


.room-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.6s;

}


.room-card:hover img {

    transform: scale(1.05);

}


.room-label {

    position: absolute;

    top: 20px;

    left: 20px;

    background: var(--forest);

    color: white;

    padding: 9px 15px;

    font-size: 9px;

    letter-spacing: 0.18em;

}


.room-content {

    padding: 30px;

}


.room-content h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;

}


.room-description {

    color: var(--muted);

    font-size: 13px;

    margin: 12px 0 20px;

}


.room-features {

    list-style: none;

    color: var(--muted);

    font-size: 12px;

}


.room-features li {

    margin-bottom: 7px;

}


.room-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top: 1px solid var(--border);

    margin-top: 25px;

    padding-top: 20px;

}


.room-bottom small {

    color: var(--muted);

}


.room-bottom strong {

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    margin: 0 4px;

}


.room-bottom a {

    background: var(--gold);

    color: white;

    border-radius: 50%;

    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

}


/* =====================================================
   RATES
===================================================== */

.rates {

    margin-top: 80px;

}


.rates-heading {

    text-align: center;

    margin-bottom: 25px;

}


.rates-heading p {

    font-size: 10px;

    letter-spacing: 0.25em;

    color: var(--gold);

}


.rates-heading h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 48px;

}


.table-wrapper {

    overflow-x: auto;

}


table {

    width: 100%;

    min-width: 700px;

    border-collapse: collapse;

    background: white;

}


th {

    background: var(--forest);

    color: white;

    padding: 17px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

}


td {

    border: 1px solid var(--border);

    padding: 18px;

    text-align: center;

    font-size: 13px;

}


td:first-child {

    text-align: left;

    font-weight: 600;

}


/* =====================================================
   AMENITIES
===================================================== */

.amenities {

    background: var(--forest);

    color: white;

    padding: 110px 7vw;

}


.amenities-heading {

    text-align: center;

    margin-bottom: 60px;

}


.amenities-heading p {

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: 0.3em;

}


.amenities-heading h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 70px;

    font-weight: 500;

    line-height: 0.9;

}


.amenities-heading em {

    color: var(--gold-light);

}


.amenity-grid {

    display: grid;

    grid-template-columns: repeat(6,1fr);

}


.amenity {

    text-align: center;

    padding: 30px 20px;

    border-right: 1px solid rgba(255,255,255,0.2);

}


.amenity:last-child {

    border-right: none;

}


.amenity span {

    font-size: 32px;

    color: var(--gold-light);

}


.amenity h3 {

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    margin: 15px 0 8px;

}


.amenity p {

    font-size: 11px;

    color: rgba(255,255,255,0.6);

}


/* =====================================================
   GALLERY
===================================================== */

.gallery {

    background: var(--cream);

}


.gallery-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    height: 500px;

    grid-template-rows: repeat(2, 1fr);

    gap: 8px;

}


.gallery-grid div {

    overflow: hidden;

}


.gallery-large {

    grid-row: span 2;

}


.gallery-grid img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.6s;

}


.gallery-grid img:hover {

    transform: scale(1.04);

}


/* =====================================================
   BOOKING
===================================================== */

.booking {

    background: white;

    padding: 80px 8vw;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;

}


.booking h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 65px;

    line-height: 0.9;

    font-weight: 500;

}


.booking-content > p:last-child {

    max-width: 550px;

    margin-top: 20px;

    color: var(--muted);

}


.booking-contact-details {

    display: grid;

    gap: 7px;

    margin-top: 25px;

    font-size: 12px;

}


.booking-contact-details a:hover {

    color: var(--gold);

}


.booking-form {

    width: min(100%, 430px);

    display: grid;

    gap: 8px;

}


.booking-form label {

    color: var(--forest);

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.08em;

}


.booking-form input,
.booking-form textarea {

    width: 100%;

    border: 1px solid var(--border);

    padding: 12px 13px;

    background: var(--cream);

    color: var(--text);

    font: inherit;

    font-size: 13px;

    resize: vertical;

}


.booking-form button {

    border: 0;

    cursor: pointer;

    margin-top: 10px;

}


.booking-form-note {

    color: var(--muted);

    font-size: 11px;

}


.booking-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


.dark-button {

    color: var(--forest);

    border-color: var(--forest);

}


/* =====================================================
   LOCATION
===================================================== */

.location {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

}


.location-content {

    background: var(--cream-dark);

    padding: 100px 7vw;

}


.location-content h2 {

    font-family: "Cormorant Garamond", serif;

    font-size: 70px;

    line-height: 0.9;

    font-weight: 500;

}


.location-content h2 em {

    color: var(--gold);

}


.address {

    margin: 30px 0;

    color: var(--muted);

}


.check-times {

    display: flex;

    gap: 50px;

    margin-bottom: 30px;

}


.check-times span {

    display: block;

    font-size: 9px;

    letter-spacing: 0.15em;

    color: var(--gold);

}


.check-times strong {

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

}


.map iframe {

    width: 100%;

    height: 100%;

    min-height: 520px;

    border: 0;

}


/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: #09160e;

    color: rgba(255,255,255,0.7);

    padding: 70px 7vw;

    display: grid;

    grid-template-columns: 1.5fr repeat(4,1fr);

    gap: 45px;

}


.footer-brand img {

    width: 100px;

    height: 100px;

    border-radius: 50%;

    object-fit: contain;

    margin-bottom: 15px;

}


.footer h4 {

    color: var(--gold-light);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.2em;

    margin-bottom: 20px;

}


.footer a,
.footer p {

    display: block;

    font-size: 11px;

    margin-bottom: 8px;

}


.footer a:hover {

    color: var(--gold-light);

}


.copyright {

    text-align: center;

    padding: 20px;

    background: #050d08;

    color: rgba(255,255,255,0.4);

    font-size: 10px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .navigation {

        display: none;

        position: absolute;

        top: 95px;

        left: 5%;

        right: 5%;

        background: var(--forest);

        padding: 25px;

        flex-direction: column;

        align-items: stretch;

    }


    .navigation.open {

        display: flex;

    }


    .menu-button {

        display: block;

    }


    .quick-info {

        grid-template-columns: repeat(2,1fr);

    }


    .info-box {

        border-right: none;

        border-bottom: 1px solid var(--border);

        padding: 15px;

    }


    .about-grid {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .room-grid {

        grid-template-columns: 1fr;

    }


    .amenity-grid {

        grid-template-columns: repeat(3,1fr);

    }


    .amenity {

        border-bottom: 1px solid rgba(255,255,255,0.2);

    }


    .footer {

        grid-template-columns: repeat(2,1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .header {

        padding: 12px 5vw;

    }


    .logo img {

        width: 75px;

        height: 75px;

    }


    .hero {

        min-height: 720px;

    }


    .hero-content {

        width: 90%;

        margin-left: 7vw;

        padding-top: 100px;

    }


    .hero h1 {

        font-size: 57px;

    }


    .hero-description {

        font-size: 13px;

    }


    .hero-background {

        background-position: center;

    }


    .quick-info {

        width: 92%;

        padding: 15px;

    }


    .info-number {

        font-size: 40px;

    }


    .info-box strong {

        font-size: 9px;

    }


    .section {

        padding: 80px 7vw;

    }


    .section-heading {

        display: block;

    }


    .section-heading h2 {

        font-size: 55px;

        margin-bottom: 25px;

    }


    .room-image {

        height: 270px;

    }


    .amenities {

        padding: 80px 7vw;

    }


    .amenities-heading h2 {

        font-size: 55px;

    }


    .amenity-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .gallery-grid {

        height: auto;

        grid-template-columns: 1fr;

    }


    .gallery-grid div {

        height: 300px;

    }


    .booking {

        padding: 70px 7vw;

        display: block;

    }


    .booking h2 {

        font-size: 52px;

    }


    .booking-buttons {

        margin-top: 30px;

    }


    .location {

        grid-template-columns: 1fr;

    }


    .location-content {

        padding: 80px 7vw;

    }


    .location-content h2 {

        font-size: 55px;

    }


    .map iframe {

        min-height: 380px;

    }


    .footer {

        grid-template-columns: 1fr;

        padding: 60px 7vw;

    }

}


.copyright p,
.copyright a {

    display: block;

    margin: 3px 0;

}


.copyright a:hover {

    color: var(--gold-light);

}