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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #2d2a26;
    background: #f8f6f1;
    line-height: 1.7;
}

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

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

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* ================= HEADER ================= */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 50%;
}

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    letter-spacing: 4px;
    color: white;
}

.brand-name small {
    color: #c8a66b;
    letter-spacing: 3px;
    font-size: 10px;
    margin-top: 5px;
}

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

.nav a {
    color: white;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

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

.contact-btn {
    border: 1px solid #c8a66b;
    color: white;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #c8a66b;
    color: white;
}


/* ================= HERO ================= */

.hero {
    height: 100vh;
    min-height: 650px;

    background-image: url("images/exterior-entrance.webp");
    background-size: cover;
    background-position: center;

    position: relative;

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

    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            rgba(20, 18, 15, 0.55),
            rgba(20, 18, 15, 0.45)
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 850px;
    padding: 20px;
}

.hero-small {
    letter-spacing: 5px;
    font-size: 13px;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(55px, 8vw, 100px);
    font-weight: 500;
    line-height: 1;
}

.hero-location {
    color: #c8a66b;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-top: 10px;
}

.hero-description {
    margin: 25px auto;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-btn {
    display: inline-block;
    border: 1px solid #c8a66b;
    padding: 14px 28px;
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #c8a66b;
}


/* ================= SECTIONS ================= */

.section {
    padding: 110px 0;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-label {
    color: #b18a4a;
    letter-spacing: 4px;
    font-size: 12px;
    margin-bottom: 12px;
}

.section-heading h2,
.about-content h2,
.location-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1.1;
}

.section-heading p:last-child {
    margin-top: 20px;
    color: #777;
}


/* ================= ABOUT ================= */

.about {
    background: #f8f6f1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    position: relative;
    z-index: 1;
    height: 550px;
    object-fit: cover;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.about-content {
    padding: 20px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    color: #666;
    margin-bottom: 18px;
}

.text-btn {
    display: inline-block;
    margin-top: 15px;
    color: #9b7638;
    letter-spacing: 1px;
    font-size: 13px;
}


/* ================= FEATURES ================= */

.features {
    background: #292720;
    color: white;
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature {
    text-align: center;
    padding: 20px 30px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.feature:last-child {
    border-right: none;
}

.feature-icon {
    color: #c8a66b;
    font-size: 25px;
    margin-bottom: 15px;
}

.feature h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 500;
}

.feature p {
    color: #aaa;
    font-size: 13px;
    margin-top: 8px;
}


/* ================= ROOMS ================= */

.rooms {
    background: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


.room-card {
    background: #f8f6f1;
}

.room-card img {
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
}

.room-info p {
    color: #777;
    font-size: 13px;
    margin-top: 8px;
}


/* ================= GALLERY ================= */
.gallery {
    position: relative;
    background:
        radial-gradient(circle at 15% 10%, rgba(200,166,107,.08), transparent 28%),
        linear-gradient(180deg, #fbfaf7 0%, #f4f0e8 100%);
    overflow: hidden;
}

.gallery-heading {
    margin-bottom: 48px;
}

.gallery-heading h2 {
    font-size: clamp(42px, 5vw, 62px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 235px;
    gap: 18px;
    align-items: stretch;
}

.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #e9e3d8;
    cursor: zoom-in;
    box-shadow: 0 10px 28px rgba(50,42,31,.08);
    isolation: isolate;
}

.gallery-item.gallery-feature {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24,20,15,.02) 30%, rgba(24,20,15,.58) 100%);
    opacity: .15;
    transition: opacity .4s ease;
    z-index: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.045);
    filter: saturate(1.03) contrast(1.02);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 19px;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    letter-spacing: .3px;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.gallery-zoom {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    flex: 0 0 auto;
}

.gallery-item:focus-visible {
    outline: 2px solid #c8a66b;
    outline-offset: 3px;
}

/* ================= GALLERY LIGHTBOX ================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 40px 80px;
    background: rgba(14,12,9,.94);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-figure {
    max-width: min(1180px, 88vw);
    max-height: 88vh;
    margin: 0;
    text-align: center;
}

.lightbox-figure img {
    width: auto;
    height: auto;
    max-width: min(1180px, 88vw);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
}

.lightbox-figure figcaption {
    margin-top: 14px;
    color: rgba(255,255,255,.88);
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: 1px solid rgba(200,166,107,.6);
    background: rgba(20,18,15,.35);
    color: #fff;
    cursor: pointer;
    transition: .25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: #c8a66b;
    border-color: #c8a66b;
}

.lightbox-close {
    top: 22px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 58px;
    border-radius: 2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    line-height: 1;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

body.lightbox-open { overflow: hidden; }

/* ================= EVENTS ================= */
.events {
    background: #fff;
}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: -20px auto 40px;
}

.event-tab {
    border: 1px solid #c8a66b;
    background: transparent;
    color: #8c682d;
    padding: 11px 22px;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .3s;
}

.event-tab.active,
.event-tab:hover {
    background: #c8a66b;
    color: #fff;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Keep a single event invitation visually centered without changing the
   multi-event layout used when more events are added later. */
.events-grid.single-event {
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.event-card {
    background: #f8f6f1;
    border: 1px solid rgba(177,138,74,.16);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    width: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45,42,38,.10);
}

.event-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f1ede5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f1ede5;
}

.event-image-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b18a4a;
    font-size: 42px;
}

.event-info {
    padding: 28px 30px 30px;
    text-align: center;
}

.event-info h3 {
    margin: 4px auto 0;
    max-width: 720px;
}

.event-info .event-link {
    margin-top: 18px;
}

.event-date {
    color: #b18a4a;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.event-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 29px;
    font-weight: 500;
}

.event-info p {
    color: #777;
    font-size: 13px;
    margin-top: 8px;
}

.event-info .event-location {
    color: #8c682d;
    font-size: 12px;
}

.event-time {
    color: #8c682d !important;
    font-size: 12px !important;
}

.event-link {
    display: inline-block;
    margin-top: 16px;
    padding: 9px 14px;
    border: 1px solid #b18a4a;
    color: #8c682d;
    font-size: 11px;
    letter-spacing: .4px;
    transition: .25s;
}

.event-link:hover {
    background: #b18a4a;
    color: white;
}

.events-empty {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 35px 20px;
    border: 1px dashed rgba(177,138,74,.45);
    background: #fbfaf7;
}

.events-empty-icon {
    color: #c8a66b;
    font-size: 28px;
    margin-bottom: 8px;
}

.events-empty h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
}

.events-empty p {
    color: #777;
    font-size: 13px;
    margin-top: 7px;
}

/* ================= LOCATION ================= */

.location {
    background: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.location-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    margin-bottom: 25px;
}

.location-content p {
    color: #777;
    max-width: 500px;
}

.location-btn {
    display: inline-block;
    border: 1px solid #b18a4a;
    padding: 13px 22px;
    width: fit-content;
    margin-top: 25px;
    color: #8c682d;
    font-size: 12px;
}

.map-placeholder {
    background: #e9e5dc;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-placeholder span {
    font-size: 45px;
}

.map-placeholder p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
}

.map-placeholder small {
    color: #777;
}


/* ================= CONTACT ================= */

.contact {
    background: #292720;
    color: white;
}

.contact .section-heading p:last-child {
    color: #aaa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-box {
    text-align: center;
    padding: 35px;
    border: 1px solid rgba(255,255,255,0.12);
}

.contact-icon {
    font-size: 25px;
    color: #c8a66b;
    margin-bottom: 15px;
}

.contact-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    font-weight: 500;
}

.contact-box p {
    color: #aaa;
    font-size: 13px;
    margin-top: 5px;
}


/* ================= FOOTER ================= */

.footer {
    background: #171611;
    color: white;
}

.footer-content {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 23px;
}

.footer-brand p {
    color: #888;
    font-size: 11px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #aaa;
    font-size: 12px;
}

.footer-links a:hover {
    color: #c8a66b;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    color: #777;
    font-size: 11px;
}


/* ================= MOBILE ================= */

@media (max-width: 900px) {

    .nav {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

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

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 210px;
        gap: 12px;
    }

    .gallery-item.gallery-feature {
        grid-column: span 2;
        grid-row: span 2;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

}


@media (max-width: 600px) {

    .header {
        padding: 15px 0;
    }

    .logo {
        width: 52px;
        height: 52px;
    }

    .brand-name span {
        font-size: 22px;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-location {
        font-size: 26px;
    }

    .section {
        padding: 75px 0;
    }

    .section-heading h2,
    .about-content h2,
    .location-content h2 {
        font-size: 42px;
    }

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

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

    .feature {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding: 30px;
    }

    .feature:last-child {
        border-bottom: none;
    }

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

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .location-content {
        padding: 50px 25px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}

/* Clean About image: no decorative frame/offset border */
.about-image::before,
.about-image::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

@media (max-width: 560px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 12px;
    }
    .gallery-item.gallery-feature {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-overlay { opacity: 1; transform: none; }
    .gallery-item::after { opacity: .75; }
    .lightbox { padding: 55px 12px 30px; }
    .lightbox-figure, .lightbox-figure img { max-width: 94vw; }
    .lightbox-figure img { max-height: 76vh; }
    .lightbox-prev, .lightbox-next { width: 38px; height: 48px; font-size: 34px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .lightbox-close { top: 10px; right: 12px; }
}

/* Google Maps - real hotel location */
.map-placeholder.map-real {
    padding: 0;
    overflow: hidden;
    min-height: 420px;
    position: relative;
}

.map-placeholder.map-real iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    display: block;
}

@media (max-width: 700px) {
    .map-placeholder.map-real,
    .map-placeholder.map-real iframe {
        min-height: 320px;
    }
}

/* ================= DR. MONA ZAKI PROFILE ================= */
.mona-profile[hidden] {
    display: none !important;
}

.mona-profile {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.35fr);
    gap: 58px;
    align-items: center;
    max-width: 1120px;
    margin: 8px auto 0;
    padding: 42px;
    background: linear-gradient(135deg, #fbfaf7 0%, #f4efe5 100%);
    border: 1px solid rgba(177,138,74,.22);
    box-shadow: 0 24px 60px rgba(53,45,35,.08);
    position: relative;
    overflow: hidden;
}
.mona-profile::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(177,138,74,.15);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}
.mona-profile-photo-wrap { position: relative; max-width: 430px; margin: 0 auto; }
.mona-profile-frame {
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(177,138,74,.35);
    box-shadow: 0 20px 45px rgba(53,45,35,.14);
}
.mona-profile-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 22%;
    display: block;
}
.mona-profile-caption {
    display: inline-block;
    margin: -20px 22px 0;
    position: relative;
    background: #fff;
    border: 1px solid rgba(177,138,74,.28);
    padding: 12px 20px;
    color: #8c682d;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.mona-profile-content { position: relative; }
.mona-profile-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
    font-weight: 500;
    margin: 10px 0 14px;
    color: #292621;
}
.mona-lead {
    color: #8c682d !important;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px !important;
    line-height: 1.45;
    margin-bottom: 18px;
}
.mona-profile-content > p:not(.section-label):not(.mona-lead) {
    color: #666;
    font-size: 14px;
    line-height: 1.9;
    max-width: 760px;
}
.mona-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 28px 0 22px;
}
.mona-highlights > div {
    padding: 18px 16px;
    background: rgba(255,255,255,.72);
    border-top: 2px solid #c8a66b;
    min-height: 142px;
}
.mona-number {
    display: block;
    color: #b18a4a;
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.mona-highlights strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 600;
    color: #332f2a;
    margin-bottom: 7px;
}
.mona-highlights small {
    display: block;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}
.mona-footer-note {
    padding-top: 17px;
    border-top: 1px solid rgba(177,138,74,.20);
    color: #8c682d;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: .2px;
}
[dir="rtl"] .mona-profile { text-align: right; }
[dir="rtl"] .mona-profile-caption { margin-right: 22px; margin-left: 0; }

@media (max-width: 900px) {
    .mona-profile { grid-template-columns: 1fr; gap: 35px; padding: 28px; }
    .mona-profile-photo-wrap { max-width: 500px; }
}
@media (max-width: 650px) {
    .events-tabs { flex-wrap: wrap; }
    .event-tab { padding: 10px 15px; font-size: 11px; }
    .mona-profile { padding: 18px; }
    .mona-highlights { grid-template-columns: 1fr; }
    .mona-profile-content h3 { font-size: 42px; }
    .mona-lead { font-size: 19px !important; }
}
