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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f8f7f3;
    color: #222;
}

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

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


/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 80px;

    padding: 0 7%;

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

    background: rgba(20, 20, 20, .94);

    color: white;

    z-index: 1000;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    font-weight: 700;
}

.logo span,
.footer-logo span {
    color: #c9a45c;
}

.nav {
    display: flex;
    gap: 27px;
}

.nav a {
    font-size: 13px;
    transition: .3s;
}

.nav a:hover {
    color: #c9a45c;
}

.btn-header {
    background: #c9a45c;
    color: #111;

    padding: 12px 25px;

    font-weight: 600;

    transition: .3s;
}

.btn-header:hover {
    background: white;
}

.menu-btn {
    display: none;

    background: none;
    border: none;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


/* HERO */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 130px 8% 180px;

    background:
        linear-gradient(
            rgba(0,0,0,.55),
            rgba(0,0,0,.55)
        ),
        url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=2000&q=80");

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

    color: white;
}

.hero-content {
    max-width: 750px;
}

.subtitle,
.section-label {
    color: #c9a45c;

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(50px, 7vw, 90px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span,
.about h2 span,
.section-header h2 span,
.experience h2 span,
.reservation h2 span,
.location h2 span {
    color: #c9a45c;
}

.hero-text {
    max-width: 600px;

    line-height: 1.8;

    color: #ddd;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

    padding: 15px 28px;

    font-weight: 600;

    transition: .3s;
}

.btn-primary {
    background: #c9a45c;
    color: #111;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #111;
}


/* BOOKING BOX */

.booking-box {
    position: absolute;

    left: 8%;
    right: 8%;
    bottom: 35px;

    display: grid;

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

    background: white;

    color: #222;

    box-shadow:
        0 15px 50px rgba(0,0,0,.3);
}

.booking-item {
    padding: 20px;

    border-right: 1px solid #ddd;
}

.booking-item label {
    display: block;

    font-size: 11px;

    color: #777;

    text-transform: uppercase;

    margin-bottom: 8px;

    letter-spacing: 1px;
}

.booking-item input,
.booking-item select {
    width: 100%;

    border: none;

    outline: none;

    font-family: inherit;

    font-size: 14px;

    background: transparent;
}

.search-btn {
    border: none;

    background: #c9a45c;

    font-weight: 700;

    cursor: pointer;

    font-family: inherit;
}


/* ABOUT */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    padding: 130px 8%;
}

.about-image img {
    height: 580px;

    object-fit: cover;
}

.about-content {
    align-self: center;
}

.about h2,
.section-header h2,
.experience h2,
.reservation h2,
.location h2 {
    font-family: 'Playfair Display', serif;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.1;

    margin-bottom: 25px;
}

.about-content > p:not(.section-label) {
    color: #666;

    line-height: 1.8;

    margin-bottom: 18px;
}

.features {
    display: flex;

    gap: 45px;

    margin-top: 35px;
}

.features div {
    display: flex;

    flex-direction: column;
}

.features strong {
    font-family: 'Playfair Display', serif;

    font-size: 35px;

    color: #b08c43;
}

.features span {
    color: #777;

    font-size: 12px;
}


/* ROOMS */

.rooms {
    padding: 120px 8%;

    background: #eeece6;
}

.section-header {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px;
}

.section-header > p:last-child {
    color: #666;

    line-height: 1.7;
}

.room-grid {
    display: grid;

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

    gap: 25px;
}

.room-card {
    background: white;

    transition: .3s;
}

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

    box-shadow:
        0 15px 40px rgba(0,0,0,.12);
}

.room-card > img {
    height: 260px;

    object-fit: cover;
}

.room-info {
    padding: 25px;
}

.room-title {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    margin-bottom: 12px;
}

.room-title h3 {
    font-family: 'Playfair Display', serif;

    font-size: 21px;
}

.room-title span {
    color: #a57f32;

    font-weight: 700;

    white-space: nowrap;
}

.room-title small {
    color: #888;

    font-size: 10px;

    font-weight: 400;
}

.room-info > p {
    color: #777;

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 20px;
}

.room-features {
    display: flex;

    flex-direction: column;

    gap: 8px;

    font-size: 12px;

    color: #666;

    margin-bottom: 25px;
}

.room-button {
    color: #a57f32;

    font-weight: 700;

    font-size: 13px;
}


/* SERVICES */

.services {
    padding: 120px 8%;
}

.services-grid {
    display: grid;

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

    gap: 40px;
}

.service {
    text-align: center;

    padding: 30px;
}

.service-icon {
    font-size: 38px;

    margin-bottom: 20px;
}

.service h3 {
    font-family: 'Playfair Display', serif;

    font-size: 22px;

    margin-bottom: 12px;
}

.service p {
    color: #777;

    font-size: 14px;

    line-height: 1.7;
}


/* EXPERIENCE */

.experience {
    min-height: 600px;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    background:
        linear-gradient(
            rgba(0,0,0,.6),
            rgba(0,0,0,.6)
        ),
        url("https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=2000&q=80");

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

    color: white;
}

.experience-content {
    max-width: 650px;
}

.experience-content > p:not(.section-label) {
    color: #ddd;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* GALLERY */

.gallery {
    padding: 120px 8%;
}

.gallery-grid {
    display: grid;

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

    gap: 15px;
}

.gallery-grid img {
    height: 300px;

    object-fit: cover;

    transition: .4s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}


/* RESERVATION */

.reservation {
    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 80px;

    padding: 110px 8%;

    background: #151515;

    color: white;
}

.reservation-text {
    align-self: center;
}

.reservation-text > p:not(.section-label) {
    color: #aaa;

    line-height: 1.8;
}

.reservation-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.form-group label {
    font-size: 12px;

    color: #aaa;
}

.form-group input,
.form-group select {
    padding: 15px;

    border: 1px solid #444;

    background: #222;

    color: white;

    outline: none;

    font-family: inherit;
}

.reservation-form button {
    border: none;

    cursor: pointer;

    grid-column: span 2;

    margin-top: 5px;
}


/* LOCATION */

.location {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    padding: 120px 8%;
}

.location-info > p:not(.section-label) {
    color: #666;

    line-height: 1.8;

    margin-bottom: 30px;
}

.location-data {
    display: flex;

    flex-direction: column;

    gap: 25px;
}

.location-data strong {
    color: #a57f32;

    font-size: 14px;
}

.location-data p {
    color: #777;

    margin-top: 5px;

    line-height: 1.5;
}

.map iframe {
    width: 100%;

    height: 450px;

    border: none;
}


/* FOOTER */

footer {
    background: #101010;

    color: white;

    padding: 50px 8%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: wrap;

    gap: 25px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;

    font-size: 28px;
}

footer p {
    color: #777;

    font-size: 12px;
}

.social {
    display: flex;

    gap: 20px;

    color: #aaa;

    font-size: 13px;
}

.social a:hover {
    color: #c9a45c;
}


/* WHATSAPP */

.whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 60px;
    height: 60px;

    display: flex;

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

    background: #25d366;

    border-radius: 50%;

    color: white;

    font-size: 27px;

    z-index: 1000;

    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .nav {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        padding: 25px;

        background: #151515;

        display: none;

        flex-direction: column;
    }

    .nav.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .btn-header {
        display: none;
    }

    .booking-box {
        grid-template-columns: 1fr 1fr;
    }

    .booking-item:nth-child(2) {
        border-right: none;
    }

    .search-btn {
        padding: 18px;
    }

    .about,
    .reservation,
    .location {
        grid-template-columns: 1fr;
    }

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

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


@media (max-width: 650px) {

    .hero {
        padding: 120px 6% 300px;
    }

    .booking-box {
        left: 6%;
        right: 6%;
        bottom: 25px;

        grid-template-columns: 1fr;
    }

    .booking-item {
        border-right: none;

        border-bottom: 1px solid #ddd;
    }

    .about,
    .rooms,
    .services,
    .gallery,
    .reservation,
    .location {
        padding: 80px 6%;
    }

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

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

    .gallery-grid img {
        height: 350px;
    }

    .reservation-form {
        grid-template-columns: 1fr;
    }

    .reservation-form button {
        grid-column: span 1;
    }

    .features {
        gap: 20px;
    }

    footer {
        flex-direction: column;

        align-items: flex-start;
    }
}