* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #F5F3EF;
    color: #2B2B2B;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 85px;
}

body.no-scroll {
    overflow: hidden;
}


img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.section-padding {
    padding: 70px 8%;
}

.img-placeholder {
    width: 100%;
    height: 240px;

    background:
        linear-gradient(
            135deg,
            #e2ded9 0%,
            #cbd1cc 100%
        );

    display: flex;
    align-items: center;
    justify-content: center;

    color: #556057;

    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;

    border-radius: 20px 20px 0 0;

    border: 2px dashed rgba(31, 61, 43, 0.15);
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 8%;

    background: #1F3D2B;

    z-index: 3000;

    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;

    color: #E8DCCB;

    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    position: relative;

    color: #F5F3EF;

    font-size: 15px;
    font-weight: 400;

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #B89A5D;

    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #B89A5D;
}

.menu-toggle {
    display: none;

    width: 32px;
    height: 24px;

    background: transparent;
    border: none;

    cursor: pointer;

    flex-direction: column;
    justify-content: space-between;

    position: relative;
    z-index: 4000;
}

.menu-toggle span {
    width: 100%;
    height: 3px;

    background: #E8DCCB;

    border-radius: 10px;

    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.3s ease, visibility 0.3s ease;

    z-index: 2000;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    position: relative;

    height: calc(100vh - 85px);

    display: flex;
    align-items: center;

    padding: 0 8%;

    background:
        url('images/hero.jpg')
        center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 600px;

    color: white;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 1.1;

    font-family: 'Playfair Display', serif;
}

.hero-content p {
    margin: 20px 0;

    font-size: 18px;
}

.page-banner {
    padding: 60px 20px 40px;

    text-align: center;

    background: #e8e4dc;
}

.page-banner h1,
.section-title h2 {
    font-size: 45px;

    color: #1F3D2B;

    font-family: 'Playfair Display', serif;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.room-grid,
.services-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.room-card,
.service-card {
    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.room-card:hover,
.service-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.room-info {
    padding: 24px;
}

.room-info h3 {
    margin-bottom: 10px;

    color: #1F3D2B;
}

.room-info p {
    font-size: 14px;

    color: #666;
}

.room-info span {
    display: block;

    margin: 15px 0;

    color: #1F3D2B;

    font-size: 18px;
    font-weight: 600;
}

.service-card {
    padding: 40px 30px;

    text-align: center;
}

.service-card h3 {
    margin-bottom: 10px;

    color: #1F3D2B;

    font-size: 24px;

    font-family: 'Playfair Display', serif;
}

.btn,
.btn-small {
    display: inline-block;

    border: none;

    background: #1F3D2B;

    color: #F5F3EF;

    cursor: pointer;

    font-weight: 500;

    transition: 0.3s ease;

    border-radius: 12px;
}

.btn {
    padding: 14px 28px;
}

.btn-small {
    width: 100%;

    padding: 10px 20px;

    font-size: 14px;
}

.btn:hover,
.btn-small:hover {
    background: #4A6B57;

    color: #E8DCCB;
}

.booking-container,
.contact-container,
.about-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.booking-form,
.contact-form {
    background: white;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.booking-form input,
.booking-form select,
.contact-form input,
.contact-form textarea {
    width: 100%;

    padding: 14px;

    margin: 10px 0 20px;

    border: 1px solid #ddd;
    border-radius: 10px;

    background: #FCFBFA;

    font-size: 14px;

    outline: none;

    transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #1F3D2B;
}

.payment-methods {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin-bottom: 20px;
}

.payment-methods button {
    padding: 14px;

    border: 1px solid #ddd;

    background: #F5F3EF;

    border-radius: 10px;

    cursor: pointer;

    transition: 0.3s ease;
}

.payment-methods button:hover {
    background: #1F3D2B;
    color: white;
}

.card-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 15px;
}

.about-text h2 {
    font-size: 36px;

    color: #1F3D2B;

    font-family: 'Playfair Display', serif;
}

.contact-info {
    background: #1F3D2B;

    color: white;

    padding: 40px;

    border-radius: 20px;
}

.contact-info h3 {
    margin-bottom: 20px;

    color: #E8DCCB;

    font-size: 26px;

    font-family: 'Playfair Display', serif;
}

.contact-info p {
    margin-bottom: 15px;
}

footer {
    margin-top: 60px;

    background: #1F3D2B;

    color: white;

    padding: 60px 8% 20px;
}

.footer-container {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 40px;
}

.footer-container h3 {
    margin-bottom: 12px;

    color: #E8DCCB;

    font-size: 24px;

    font-family: 'Playfair Display', serif;
}

.footer-container h4 {
    margin-bottom: 15px;

    color: #E8DCCB;
}

.footer-container a {
    display: block;

    margin: 10px 0;

    color: #F5F3EF;

    transition: color 0.3s ease;
}

.footer-container a:hover {
    color: #B89A5D;
}

.copyright {
    margin-top: 40px;
    padding-top: 20px;

    text-align: center;

    border-top: 1px solid rgba(255,255,255,0.1);

    font-size: 13px;

    color: #a4b3a8;
}

@media screen and (max-width: 991px) {

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;

        width: 30px;
        height: 22px;

        background: transparent;
        border: none;

        cursor: pointer;

        position: relative;
        z-index: 4000;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;

        background: #E8DCCB;

        border-radius: 10px;

        transition: 0.3s;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;

        top: 0;
        right: -280px;

        width: 260px;
        height: 100vh;

        background: #1F3D2B;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        gap: 30px;

        padding: 80px 40px;

        transition: right 0.4s ease;

        z-index: 3500;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        width: 100%;
        padding: 5px 0;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;

        background: rgba(0,0,0,0.5);

        opacity: 0;
        visibility: hidden;

        transition: opacity 0.3s ease, visibility 0.3s ease;

        z-index: 2000;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }


    .booking-container,
    .contact-container,
    .about-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 480px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .page-banner h1,
    .section-title h2 {
        font-size: 32px;
    }
}