/* WHOLE WEBSITE */
    html {
            scroll-behavior: smooth;
            box-sizing: border-box;
        }
    
        *,
        *::before,
        *::after {
            box-sizing: inherit;
        }

body {
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
    background-color: oklch(96.086% 0.01517 76.978);
    color: #4b2e1e;
    overflow-x: hidden;
}

/* TOP NAVIGATION BAR */
header {
    background-color: #04612b;
    color: white;
    padding: 20px;
    text-align: center;
backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

nav a {
    color: white;
    margin: 0 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 8px 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
}

nav a:hover {
    color: #04612b;
    background-color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* GENERAL PAGE SECTIONS */
section {
   padding: 100px 20px;
    text-align: center;
    scroll-margin-top: 100px;
}

/* ROOM GALLERY */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;

    max-width: 1200px;
    margin: auto;

    padding-top: 20px;
}

/* ROOM IMAGE BOX */
.room-box {
    overflow: hidden;
    border-radius: 20px;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

    cursor: pointer;
}

/* ROOM IMAGES */
.room-box img {
    width: 100%;
    height: 350px;

    object-fit: cover;

    transition: transform 0.4s ease,
        filter 0.4s ease;
}

/* HOVER EFFECT */
.room-box:hover img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

.room-box:hover img {
    transform: scale(1.12);
    filter: brightness(1.05);
}
/* ROOM TITLE */
.menu-area h2 {
    font-size: 3rem;
    margin-bottom: 10px;

    color: #2b1a12;

    letter-spacing: 1px;
}

/* SMALL LUXURY SUBTEXT */
.menu-area p {
    color: #6b4d3d;

    max-width: 700px;

    margin: auto;

    margin-bottom: 40px;

    font-size: 18px;

    line-height: 1.6;
}
/* PREMIUM FOOTER */
footer {
    background-color: #2b1a12;
    color: #c8a96b;
    text-align: center;
    padding: 30px 20px;
    font-family: Georgia, serif;
    border-top: 2px solid #c8a96b;
    letter-spacing: 1px;
    transition: 0.3s ease;
    margin: 0;
}

footer p {
    margin: 0;
    font-size: 14px;
}

footer:hover {
    box-shadow: 0 -5px 20px rgba(200, 169, 107, 0.3);
    transition: 0.3s ease;
}
/* BANNER IMAGE STYLE */
.banner {
    width: 100%;
    min-height: 100vh;
    margin-top: 80px;

    background-image: url("images/qamariabanner.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    position: relative;
    text-align: center;
}
.banner-location {
    position: absolute;
    bottom: 30px;
    color: white;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
    margin: 0;
}

/* BOOKING SECTION */
.booking-area {
    background-color: #f7f1e8;
}

/* BOOKING TITLE */
.booking-area h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2b1a12;
}

/* BOOKING DESCRIPTION */
.booking-area p {
    max-width: 750px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 18px;
    color: #6b4d3d;
}

/* BOOKING FORM */
#bookingForm {
    max-width: 700px;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INPUTS */
#bookingForm input,
#bookingForm select,
#bookingForm textarea {
    padding: 18px;

    border-radius: 14px;
    border: 2px solid #d8c3a5;

    background-color: white;

    font-size: 16px;

    font-family: Georgia, serif;

    transition: all 0.3s ease;
}

/* INPUT HOVER */
#bookingForm input:hover,
#bookingForm select:hover,
#bookingForm textarea:hover {
    transform: scale(1.02);

    border-color: #04612b;
}

/* INPUT FOCUS */
#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
    outline: none;

    border-color: #04612b;

    box-shadow: 0 0 12px rgba(4, 97, 43, 0.2);
}

/* TEXTAREA */
#bookingForm textarea {
    min-height: 130px;
    resize: vertical;
}

/* BOOK BUTTON */
#bookingForm button {
    background-color: #04612b;
    color: white;

    padding: 18px;

    border: none;
    border-radius: 14px;

    font-size: 18px;
    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;
}

/* BUTTON HOVER */
#bookingForm button:hover {
    transform: scale(1.04);

    background-color: #034522;

    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.req-section {
    background: linear-gradient(160deg, #f7f1e8 0%, #eef5ec 100%);
    padding: 100px 20px;
    text-align: center;
    font-family: Georgia, serif;
    scroll-margin-top: 100px;
}

.req-eyebrow {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #04612b;
    margin-bottom: 12px;
}

.req-title {
    font-size: 2.8rem;
    color: #2b1a12;
    margin: 0 0 16px;
}

.req-subtitle {
    color: #6b4d3d;
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 52px;
    line-height: 1.7;
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 860px;
    margin: 0 auto 40px;
}

.req-card {
    background: white;
    border-radius: 18px;
    padding: 28px 20px 22px;
    box-shadow: 0 4px 18px rgba(4, 97, 43, 0.07);
    border: 1.5px solid #e0d6c8;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.req-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(4, 97, 43, 0.13);
}

.req-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.req-card-title {
    font-size: 15px;
    font-weight: bold;
    color: #2b1a12;
    margin: 0 0 6px;
}

.req-card-desc {
    font-size: 14px;
    color: #6b4d3d;
    line-height: 1.55;
    margin: 0;
}

.req-divider {
    width: 50px;
    height: 3px;
    background: #04612b;
    margin: 0 auto 48px;
    border-radius: 99px;
}

.req-approved {
    max-width: 580px;
    margin: 0 auto;
    background: white;
    border-radius: 18px;
    padding: 28px 32px;
    border: 1.5px solid #c6dbc9;
}

.req-approved-title {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #04612b;
    margin-bottom: 16px;
}

.req-approved-items {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.req-pill {
    background: #eef5ec;
    color: #04612b;
    border: 1.5px solid #a8ceae;
    border-radius: 99px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}
@media (max-width: 1024px) {
    .banner {
        background-attachment: scroll;
        background-size: contain;
        background-position: center center;
        background-color: #04612b;
        min-height: 50vw;
    }
}

#bookingForm {
    background-color: white;

    padding: 40px;

    border-radius: 24px;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
    header {
        padding: 10px 12px;
        box-sizing: border-box;
        width: 100%;
    }

    header h1 {
        font-size: 0.85rem;
        letter-spacing: 0px;
        margin-bottom: 8px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    nav a {
        font-size: 10px;
        padding: 5px 8px;
        margin: 0;
        letter-spacing: 0px;
    }

        .banner {
            background-attachment: scroll;
            background-size: contain;
            background-position: center center;
            background-color: #04612b;
            min-height: 56vw;
            margin-top: 80px;
            width: 100%;
        }

    section {
        padding: 60px 16px;
    }
}