/* =====================================================
   AURORAZ0NE HOTEL — Main Stylesheet
   ===================================================== */

/* ---- Google Fonts loaded via HTML head ---- */

:root {
    --gold:        #C9A84C;
    --gold-light:  #E4C87A;
    --gold-dark:   #9A7530;
    --navy:        #0D1B2A;
    --navy-mid:    #162233;
    --navy-light:  #1E3045;
    --white:       #FFFFFF;
    --off-white:   #F5F0E8;
    --gray-light:  #E8E4DC;
    --gray-mid:    #9B9B9B;
    --text-dark:   #1A1A1A;
    --text-mid:    #3D3D3D;

    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Montserrat', sans-serif;

    --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
    --shadow-sm:   0 2px 12px rgba(0,0,0,0.12);
    --shadow-md:   0 8px 32px rgba(0,0,0,0.18);
    --shadow-lg:   0 20px 60px rgba(0,0,0,0.28);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.75; color: var(--text-mid); }

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-serif);
    margin-bottom: 1.25rem;
}
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-mid);
    max-width: 600px;
}

/* ---- Gold Divider ---- */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    margin: 1rem 0 1.75rem;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 2px;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}
.btn-white {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* ====================================================
   NAVBAR
   ==================================================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}
#navbar.scrolled {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav-logo-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}
.nav-logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-mid);
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ====================================================
   HERO SECTION
   ==================================================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.55);
    transform: scale(1.05);
    transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13,27,42,0.3) 0%,
        rgba(13,27,42,0.15) 40%,
        rgba(13,27,42,0.5) 80%,
        rgba(13,27,42,0.85) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 900px;
    animation: fadeInUp 1s ease 0.3s both;
}
.hero-label {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 6rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold));
}

/* ====================================================
   WELCOME STRIP
   ==================================================== */
#welcome-strip {
    background: var(--navy);
    padding: 1.25rem 0;
    overflow: hidden;
}
.strip-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}
.strip-item i { color: var(--gold); font-size: 0.9rem; }
.strip-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.2);
}

/* ====================================================
   ABOUT SECTION
   ==================================================== */
#about {
    padding: 7rem 0;
    background: var(--white);
}
.about-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-images {
    position: relative;
    height: 520px;
}
.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 78%;
    height: 88%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}
.about-img-accent {
    position: absolute;
    bottom: 0; right: 0;
    width: 48%;
    height: 52%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--white);
}
.about-badge {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    color: var(--navy);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.about-badge-num {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.about-badge-text {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
}
.about-content { }
.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-light);
}
.stat-item {}
.stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 700;
}
.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-mid);
    margin-top: 0.25rem;
}

/* ====================================================
   ROOMS PREVIEW
   ==================================================== */
#rooms-preview {
    padding: 7rem 0;
    background: var(--off-white);
}
.rooms-header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-bottom: 4rem;
}
.rooms-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.room-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.room-card-img {
    position: relative;
    overflow: hidden;
    height: 260px;
}
.room-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.06); }
.room-card-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}
.room-card-body {
    padding: 1.5rem;
}
.room-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.room-card-desc {
    font-size: 0.88rem;
    color: var(--gray-mid);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.room-card-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.room-feature {
    font-size: 0.72rem;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.room-feature i { color: var(--gold); font-size: 0.8rem; }
.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
}

/* ====================================================
   EXPERIENCES SECTION
   ==================================================== */
#experiences {
    padding: 7rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
#experiences::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-exterior.jpg') center/cover no-repeat;
    opacity: 0.08;
}
.experiences-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.experiences-header {
    text-align: center;
    margin-bottom: 4rem;
}
.experiences-header h2,
.experiences-header .section-label { color: var(--white); }
.experiences-header h2 { color: var(--white); }
.experiences-header .section-subtitle { color: rgba(255,255,255,0.6); }
.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.exp-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 2px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.exp-card:hover {
    background: rgba(201,168,76,0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.exp-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    transition: var(--transition);
}
.exp-card:hover .exp-icon {
    background: var(--gold);
    color: var(--navy);
}
.exp-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}
.exp-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}

/* ====================================================
   GALLERY TEASER
   ==================================================== */
#gallery-teaser {
    padding: 7rem 0;
    background: var(--white);
}
.gallery-header {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.gallery-grid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 0.75rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    background: rgba(13,27,42,0.45);
}
.gallery-overlay i {
    color: var(--white);
    font-size: 1.8rem;
    opacity: 0;
    transform: scale(0.7);
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay i {
    opacity: 1;
    transform: scale(1);
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
#testimonials {
    padding: 7rem 0;
    background: var(--off-white);
}
.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--gold-light);
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}
.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-light);
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}
.testimonial-origin {
    font-size: 0.75rem;
    color: var(--gray-mid);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}
.testimonial-stars i { color: var(--gold); font-size: 0.85rem; }

/* ====================================================
   CTA SECTION
   ==================================================== */
#cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.4);
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.7), rgba(154,117,48,0.5));
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}
.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1.25rem;
}
.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ====================================================
   FOOTER
   ==================================================== */
#footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 0;
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-brand {}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}
.footer-logo-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold);
}
.footer-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.55);
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: default;
}
.social-btn:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.footer-col-title {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }
.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    align-items: flex-start;
}
.footer-contact-item i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-contact-item span {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
}
.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ====================================================
   COOKIE BANNER
   ==================================================== */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 1.25rem 2rem;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    max-width: 650px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ====================================================
   LIGHTBOX
   ==================================================== */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
#lightbox.open { display: flex; }
#lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
}
#lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition);
}
#lightbox-close:hover { opacity: 1; color: var(--gold); }

/* ====================================================
   PAGE HERO (inner pages)
   ==================================================== */
.page-hero {
    padding: 10rem 0 5rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 0.75rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.55rem; }

/* ====================================================
   ROOMS PAGE
   ==================================================== */
#rooms-list {
    padding: 6rem 0;
    background: var(--white);
}
.rooms-list-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 5rem;
}
.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.room-detail:nth-child(even) .room-detail-images { order: 2; }
.room-detail:nth-child(even) .room-detail-content { order: 1; }
.room-detail-images {
    position: relative;
    height: 460px;
}
.room-detail-img-main {
    width: 85%;
    height: 90%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
}
.room-detail-img-thumb {
    position: absolute;
    bottom: 0; right: 0;
    width: 45%;
    height: 50%;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-sm);
    border: 3px solid var(--white);
}
.room-type-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.3rem 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 1rem;
}
.room-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 1.5rem 0;
}
.room-amenity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-mid);
}
.room-amenity i { color: var(--gold); width: 16px; }
.room-size-strip {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin: 1.5rem 0;
}
.room-size-item {}
.room-size-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}
.room-size-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-mid);
}

/* ====================================================
   SERVICES PAGE
   ==================================================== */
#services-main {
    padding: 6rem 0;
    background: var(--white);
}
.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-light);
}
.service-block:last-child { border-bottom: none; }
.service-block:nth-child(even) .service-image { order: 2; }
.service-block:nth-child(even) .service-content { order: 1; }
.service-image {
    height: 400px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-image:hover img { transform: scale(1.04); }
.service-features-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-mid);
}
.service-feature i { color: var(--gold); }

/* ====================================================
   GALLERY PAGE
   ==================================================== */
#gallery-main {
    padding: 6rem 0;
    background: var(--white);
}
.gallery-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.gallery-page-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}
.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-page-item:hover img { transform: scale(1.06); }
.gallery-page-item:nth-child(1),
.gallery-page-item:nth-child(7) {
    grid-column: span 2;
    aspect-ratio: 16/7;
}

/* ====================================================
   CONTACT PAGE
   ==================================================== */
#contact-main {
    padding: 6rem 0;
    background: var(--white);
}
.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
}
.contact-info-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 2rem;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: 2px;
    border-left: 3px solid var(--gold);
}
.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-mid);
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.contact-card-value {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 500;
}
.contact-form-section {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: 2px;
}
.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1.75rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
    font-weight: 600;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 2px;
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: border-color var(--transition);
    outline: none;
}
.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 2px;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

/* ====================================================
   LEGAL PAGES (privacy, cookies, terms)
   ==================================================== */
#legal-content {
    padding: 6rem 0;
    background: var(--white);
}
.legal-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
}
.legal-container h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 2.5rem 0 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}
.legal-container h2:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.legal-container p {
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}
.legal-container ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.legal-container ul li {
    list-style: disc;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 0.4rem;
}
.legal-updated {
    font-size: 0.82rem;
    color: var(--gray-mid);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.legal-updated i { color: var(--gold); }

/* ====================================================
   ANIMATIONS
   ==================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1100px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .exp-grid   { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .about-container  { grid-template-columns: 1fr; }
    .about-images     { height: 340px; }
    .gallery-grid     { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item:nth-child(1) { grid-row: auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .room-detail      { grid-template-columns: 1fr; }
    .room-detail:nth-child(even) .room-detail-images,
    .room-detail:nth-child(even) .room-detail-content { order: unset; }
    .service-block    { grid-template-columns: 1fr; }
    .service-block:nth-child(even) .service-image,
    .service-block:nth-child(even) .service-content { order: unset; }
    .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu { 
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(13,27,42,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        backdrop-filter: blur(10px);
    }
    .nav-menu.open { display: flex; }
    .nav-link { font-size: 1rem; }
    .nav-toggle { display: flex; }
    .rooms-grid { grid-template-columns: 1fr; }
    .exp-grid { grid-template-columns: 1fr; }
    .gallery-page-grid { grid-template-columns: 1fr 1fr; }
    .gallery-page-item:nth-child(1),
    .gallery-page-item:nth-child(7) { grid-column: span 2; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .about-stats  { flex-direction: column; gap: 1.5rem; }
    .gallery-page-grid { grid-template-columns: 1fr; }
    .gallery-page-item:nth-child(1),
    .gallery-page-item:nth-child(7) { grid-column: span 1; aspect-ratio: 4/3; }
    .form-row { grid-template-columns: 1fr; }
    .room-amenities { grid-template-columns: 1fr; }
    .strip-inner { gap: 1.5rem; }
}
