/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, sans-serif;
    background-color: #f5f2eb;
    color: #222;
}


/* =========================
   NAVBAR
========================= */

.navbar {

    height: 80px;

    width: 100%;

    background-color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 60px;

    position: fixed;

    top: 0;

    left: 0;

    z-index: 1000;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}


/* =========================
   LOGO
========================= */

.logo {

    font-size: 22px;

    letter-spacing: 3px;

    font-weight: 500;

}


/* =========================
   MENU
========================= */

.navbar nav {

    display: flex;

    gap: 30px;

}


.navbar nav a {

    text-decoration: none;

    color: #333;

    font-size: 12px;

    letter-spacing: 1.5px;

    transition: 0.3s;

}


.navbar nav a:hover {

    color: #999;

}


/* =========================
   BOOK BUTTON
========================= */

.book-button {

    background-color: #222;

    color: white;

    text-decoration: none;

    padding: 14px 22px;

    font-size: 11px;

    letter-spacing: 1.5px;

    transition: 0.3s;

}


.book-button:hover {

    background-color: #555;

}


/* =========================
   HERO SECTION
========================= */

.hero {

    height: 100vh;

    width: 100%;

    background-image: url("images/hero.jpg");

    background-size: cover;

    background-position: center;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

}


/* DARK OVERLAY */

.hero-overlay {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.35);

}


/* HERO CONTENT */

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

    padding: 20px;

}


/* SMALL TEXT */

.hero-label {

    font-size: 11px;

    letter-spacing: 4px;

    margin-bottom: 25px;

}


/* MAIN TITLE */

.hero h1 {

    font-family: Georgia, serif;

    font-size: 80px;

    font-weight: 400;

    line-height: 0.95;

    margin-bottom: 30px;

}


/* DESCRIPTION */

.hero-description {

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 35px;

}


/* BUTTON */

.hero-button {

    display: inline-block;

    padding: 17px 30px;

    border: 1px solid white;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.3s;

}


/* BUTTON HOVER */

.hero-button:hover {

    background-color: white;

    color: #222;

}

/* =========================
   ABOUT SECTION
========================= */

.about {
    padding: 120px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;

    background-color: #f5f2eb;
}


.about-image img {
    width: 100%;

    height: 550px;

    object-fit: cover;

    display: block;
}


.about-content {
    padding: 20px;
}


.section-label {
    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 20px;

    color: #555;
}


.about-content h2 {
    font-family: Georgia, serif;

    font-size: 60px;

    font-weight: 400;

    line-height: 1;

    margin-bottom: 30px;
}


.about-content p:not(.section-label) {
    font-size: 14px;

    line-height: 1.9;

    color: #666;

    margin-bottom: 20px;
}


.text-button {
    display: inline-block;

    margin-top: 15px;

    color: #222;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    border-bottom: 1px solid #222;

    padding-bottom: 8px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .about {
        grid-template-columns: 1fr;

        padding: 80px 6%;

        gap: 40px;
    }


    .about-image img {
        height: 400px;
    }


    .about-content h2 {
        font-size: 45px;
    }

}
/* =========================
   VILLA DETAILS
========================= */

.villa-details {

    padding: 120px 8%;

    background-color: #ffffff;

}


/* SECTION HEADING */

.section-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px auto;

}


.section-heading h2 {

    font-family: Georgia, serif;

    font-size: 60px;

    font-weight: 400;

    line-height: 1;

    margin-bottom: 25px;

}


.section-heading > p:last-child {

    font-size: 14px;

    line-height: 1.8;

    color: #777;

}


/* =========================
   BEDROOM CARD
========================= */

.detail-card {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    max-width: 1200px;

    margin: 0 auto 100px auto;

    background-color: #f5f2eb;

}


.detail-image img {

    width: 100%;

    height: 550px;

    object-fit: cover;

    display: block;

}


.detail-content {

    padding: 70px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.detail-content h3 {

    font-family: Georgia, serif;

    font-size: 45px;

    font-weight: 400;

    line-height: 1.1;

    margin-bottom: 25px;

}


.detail-content p:not(.section-label) {

    font-size: 14px;

    line-height: 1.9;

    color: #666;

}


/* =========================
   FACILITIES
========================= */

.facilities {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    max-width: 1200px;

    margin: 0 auto;

}


.facility-card {

    text-align: center;

}


.facility-card img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    display: block;

    margin-bottom: 25px;

}


.facility-card h3 {

    font-family: Georgia, serif;

    font-size: 28px;

    font-weight: 400;

    margin-bottom: 12px;

}


.facility-card p {

    font-size: 12px;

    line-height: 1.7;

    color: #777;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .villa-details {

        padding: 80px 6%;

    }


    .section-heading h2 {

        font-size: 45px;

    }


    .detail-card {

        grid-template-columns: 1fr;

        margin-bottom: 70px;

    }


    .detail-image img {

        height: 400px;

    }


    .detail-content {

        padding: 45px 30px;

    }


    .detail-content h3 {

        font-size: 38px;

    }


    .facilities {

        grid-template-columns: 1fr 1fr;

        gap: 30px 15px;

    }


    .facility-card img {

        height: 220px;

    }

}
/* =========================
   GALLERY
========================= */

.gallery {

    padding: 120px 8%;

    background-color: #f5f2eb;

}


.gallery-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 60px auto;

}


.gallery-heading h2 {

    font-family: Georgia, serif;

    font-size: 60px;

    font-weight: 400;

    margin-bottom: 25px;

}


.gallery-heading p:last-child {

    font-size: 14px;

    line-height: 1.8;

    color: #777;

}


.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 300px;

    gap: 15px;

}


.gallery-item {

    overflow: hidden;

}


.gallery-item.large {

    grid-column: span 2;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.6s ease;

}


.gallery-item:hover img {

    transform: scale(1.05);

}


/* MOBILE */

@media (max-width: 768px) {

    .gallery {

        padding: 80px 6%;

    }


    .gallery-heading h2 {

        font-size: 45px;

    }


    .gallery-grid {

        grid-template-columns: 1fr 1fr;

        grid-auto-rows: 220px;

    }


    .gallery-item.large {

        grid-column: span 2;

    }

}
/* =========================
   CONTACT SECTION
========================= */

.contact {

    padding: 120px 8%;

    background-color: #ffffff;

}


.contact-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px auto;

}


.contact-heading h2 {

    font-family: Georgia, serif;

    font-size: 60px;

    font-weight: 400;

    line-height: 1;

    margin-bottom: 25px;

}


.contact-heading p:last-child {

    font-size: 14px;

    line-height: 1.8;

    color: #777;

}


.contact-container {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    max-width: 1200px;

    margin: 0 auto;

}


/* CONTACT INFO */

.contact-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.contact-item {

    border-bottom: 1px solid #ddd;

    padding: 22px 0;

}


.contact-item span {

    display: block;

    font-size: 10px;

    letter-spacing: 3px;

    color: #777;

    margin-bottom: 10px;

}


.contact-item p {

    font-size: 14px;

    color: #333;

}


.contact-button {

    display: inline-block;

    width: fit-content;

    margin-top: 35px;

    padding: 16px 25px;

    background-color: #222;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.3s;

}


.contact-button:hover {

    background-color: #555;

}


/* GOOGLE MAP */

.map-container {

    width: 100%;

    overflow: hidden;

}


.map-container iframe {

    width: 100%;

    min-height: 450px;

    display: block;

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .contact {

        padding: 80px 6%;

    }


    .contact-heading h2 {

        font-size: 45px;

    }


    .contact-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .map-container iframe {

        min-height: 350px;

    }

}
/* =========================
   CONTACT SECTION
========================= */

.contact {

    padding: 120px 8%;

    background-color: #ffffff;

}


.contact-heading {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px auto;

}


.contact-heading h2 {

    font-family: Georgia, serif;

    font-size: 60px;

    font-weight: 400;

    line-height: 1;

    margin-bottom: 25px;

}


.contact-heading p:last-child {

    font-size: 14px;

    line-height: 1.8;

    color: #777;

}


.contact-container {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 70px;

    max-width: 1200px;

    margin: 0 auto;

}


/* CONTACT INFORMATION */

.contact-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.contact-item {

    border-bottom: 1px solid #ddd;

    padding: 22px 0;

}


.contact-item span {

    display: block;

    font-size: 10px;

    letter-spacing: 3px;

    color: #777;

    margin-bottom: 10px;

}


.contact-item p {

    font-size: 14px;

    color: #333;

}


.map-button {

    display: inline-block;

    width: fit-content;

    margin-top: 35px;

    padding: 16px 25px;

    background-color: #222;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.3s;

}


.map-button:hover {

    background-color: #555;

}


/* MAP */

.map-placeholder {

    height: 450px;

    background-color: #e9e6df;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

}


.map-content {

    padding: 30px;

}


.map-content h3 {

    font-family: Georgia, serif;

    font-size: 42px;

    font-weight: 400;

    margin: 15px 0;

}


.map-content p:not(.section-label) {

    color: #666;

    font-size: 14px;

}


/* MOBILE */

@media (max-width: 768px) {

    .contact {

        padding: 80px 6%;

    }


    .contact-heading h2 {

        font-size: 45px;

    }


    .contact-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .map-placeholder {

        height: 350px;

    }

}

/* CONTACT BUTTONS */

.contact-buttons {

    display: flex;

    gap: 12px;

    margin-top: 35px;

}


.contact-buttons a {

    margin-top: 0;

}


.contact-button,
.map-button {

    display: inline-block;

    padding: 16px 25px;

    background-color: #222;

    color: white;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

    transition: 0.3s;

}


.contact-button:hover,
.map-button:hover {

    background-color: #555;

}


@media (max-width: 768px) {

    .contact-buttons {

        flex-direction: column;

    }

}
/* =========================
   FOOTER
========================= */

.footer {

    background-color: #222;

    color: #fff;

    padding: 70px 8% 25px 8%;

}


.footer-content {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 50px;

    padding-bottom: 60px;

}


.footer-brand h2 {

    font-family: Georgia, serif;

    font-size: 32px;

    font-weight: 400;

    margin-bottom: 15px;

}


.footer-brand p {

    font-size: 13px;

    color: #aaa;

}


.footer-links {

    display: flex;

    gap: 30px;

    flex-wrap: wrap;

}


.footer-links a {

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2px;

}


.footer-links a:hover {

    color: #aaa;

}


.footer-bottom {

    border-top: 1px solid #444;

    padding-top: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    font-size: 11px;

    color: #888;

}


/* MOBILE */

@media (max-width: 768px) {

    .footer {

        padding: 60px 6% 25px 6%;

    }


    .footer-content {

        flex-direction: column;

        gap: 40px;

    }


    .footer-links {

        gap: 20px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;

    }

}