/*
Theme Name: Monalisa Hotel & Resort
Theme URI: https://monalisaresort.com
Author: Monalisa Resort
Author URI: https://monalisaresort.com
Description: A premium luxury hotel and resort WordPress theme. Features a full-screen hero slider, booking bar, rooms & suites showcase, dining, gallery, amenities, testimonials, and full booking form. Fully responsive with elegant gold and dark aesthetic.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: monalisa
Tags: hotel, resort, luxury, booking, full-width-template, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* === All theme styles are in css/style.css === */
/* This file is required by WordPress for theme recognition */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7a2e;
  --dark: #0e0e0e;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --cream: #f8f4ed;
  --cream-2: #ede8df;
  --white: #ffffff;
  --text-muted: #888;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); font-weight: 300; color: var(--dark); background: var(--cream); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-label { font-family: var(--font-body); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 64px); font-weight: 300; line-height: 1.1; color: var(--dark); }
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--white); }

.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 36px; font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 400; cursor: pointer; border: none; transition: var(--transition); position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.1); transform: translateX(-100%); transition: var(--transition); }
.btn:hover::before { transform: translateX(0); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--dark); border: 1px solid var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* PRELOADER */
#preloader { position: fixed; inset: 0; background: var(--dark); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; transition: opacity 0.6s, visibility 0.6s; }
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo { font-family: var(--font-display); font-size: 48px; color: var(--gold); letter-spacing: 6px; font-weight: 300; }
.preloader-bar { width: 200px; height: 1px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; }
.preloader-bar::after { content: ''; position: absolute; left: -100%; top: 0; height: 100%; width: 100%; background: var(--gold); animation: preload 1.5s ease forwards; }
@keyframes preload { to { left: 0; } }

/* HEADER */
#header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 60px; height: 90px; display: flex; align-items: center; justify-content: space-between; transition: var(--transition); }
#header.scrolled { background: rgba(14,14,14,0.96); backdrop-filter: blur(20px); height: 70px; border-bottom: 1px solid rgba(201,168,76,0.15); }
.header-logo { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--white); letter-spacing: 4px; display: flex; flex-direction: column; line-height: 1; }
.header-logo span { font-size: 9px; letter-spacing: 6px; color: var(--gold); font-family: var(--font-body); font-weight: 300; text-transform: uppercase; margin-top: 4px; }
.header-nav { display: flex; align-items: center; gap: 40px; }
.header-nav a { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 400; position: relative; }
.header-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.header-nav a:hover, .header-nav a.active { color: var(--gold); }
.header-nav a:hover::after, .header-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-book { padding: 12px 28px; background: var(--gold); color: var(--dark); font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 500; font-family: var(--font-body); }
.header-book:hover { background: var(--gold-dark); color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 28px; height: 1px; background: var(--white); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav { position: fixed; inset: 0; background: var(--dark); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-family: var(--font-display); font-size: 40px; color: var(--white); font-weight: 300; letter-spacing: 2px; }
.mobile-nav a:hover { color: var(--gold); }

/* HERO */
#hero { height: 100vh; min-height: 700px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.05); transition: opacity 1.2s ease, transform 8s ease; }
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%); }
.hero-slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80'); }
.hero-slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=1600&q=80'); }
.hero-slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?w=1600&q=80'); }
.hero-content { position: relative; z-index: 2; padding: 0 60px 80px; max-width: 800px; animation: heroFadeUp 1.2s ease 0.5s both; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.hero-label { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 300; margin-bottom: 20px; display: flex; align-items: center; gap: 16px; }
.hero-label::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero-title { font-family: var(--font-display); font-size: clamp(52px, 8vw, 110px); font-weight: 300; color: var(--white); line-height: 0.95; margin-bottom: 28px; }
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-desc { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.7); max-width: 480px; margin-bottom: 40px; font-weight: 300; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; right: 60px; bottom: 80px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px; color: rgba(255,255,255,0.5); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.5); opacity: 0.5; } }
.hero-dots { position: absolute; left: 60px; bottom: 88px; z-index: 2; display: flex; gap: 8px; }
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--gold); transform: scale(1.3); }

/* BOOKING BAR */
#booking-bar { background: var(--dark); padding: 0; position: relative; z-index: 10; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 0; border: 1px solid rgba(201,168,76,0.15); }
.booking-field { padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 6px; }
.booking-field label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 400; }
.booking-field input, .booking-field select { background: transparent; border: none; outline: none; font-family: var(--font-body); font-size: 14px; color: var(--white); font-weight: 300; cursor: pointer; width: 100%; }
.booking-field input::placeholder { color: rgba(255,255,255,0.4); }
.booking-field select option { background: var(--dark-2); color: var(--white); }
.booking-submit { background: var(--gold); border: none; padding: 0 48px; color: var(--dark); font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.booking-submit:hover { background: var(--gold-dark); color: var(--white); }

/* ABOUT */
#about { padding: 120px 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 600px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 78%; height: 85%; object-fit: cover; }
.about-img-secondary { position: absolute; bottom: 0; right: 0; width: 55%; height: 50%; object-fit: cover; border: 6px solid var(--cream); }
.about-badge { position: absolute; top: 50%; right: -20px; transform: translateY(-50%); background: var(--gold); width: 100px; height: 100px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 3; }
.about-badge-num { font-family: var(--font-display); font-size: 32px; font-weight: 300; color: var(--dark); line-height: 1; }
.about-badge-text { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); text-align: center; line-height: 1.4; font-weight: 500; }
.about-text { padding-left: 20px; }
.about-text p { font-size: 15px; line-height: 1.9; color: #555; margin: 24px 0; font-weight: 300; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--cream-2); }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--gold-dark); line-height: 1; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ROOMS */
#rooms { padding: 120px 0; background: var(--dark); }
.rooms-header { text-align: center; margin-bottom: 64px; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.room-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.room-card:hover img { transform: scale(1.08); }
.room-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%); }
.room-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; transform: translateY(20px); transition: var(--transition); }
.room-card:hover .room-info { transform: translateY(0); }
.room-type { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.room-name { font-family: var(--font-display); font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 12px; }
.room-details { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; transition: var(--transition); }
.room-card:hover .room-details { opacity: 1; }
.room-detail { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 1px; display: flex; align-items: center; gap: 6px; }
.room-price { font-family: var(--font-display); font-size: 22px; color: var(--gold-light); margin-top: 16px; }
.room-price span { font-size: 12px; color: rgba(255,255,255,0.5); }

/* AMENITIES */
#amenities { padding: 120px 0; background: var(--cream-2); }
.amenities-grid-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.amenity-item { display: flex; gap: 20px; }
.amenity-icon { width: 48px; height: 48px; min-width: 48px; background: var(--white); border: 1px solid var(--gold-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.amenity-name { font-family: var(--font-display); font-size: 18px; font-weight: 400; margin-bottom: 4px; }
.amenity-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.amenities-visual { position: relative; }
.amenities-main-img { width: 100%; height: 600px; object-fit: cover; }
.amenities-floating { position: absolute; bottom: -30px; left: -30px; background: var(--gold); padding: 32px; max-width: 260px; }
.amenities-floating-title { font-family: var(--font-display); font-size: 22px; color: var(--dark); margin-bottom: 8px; }
.amenities-floating-text { font-size: 12px; color: var(--dark); opacity: 0.7; line-height: 1.6; }

/* DINING */
#dining { padding: 120px 0; background: var(--dark-2); }
.dining-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.dining-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2px; }
.dining-card { position: relative; overflow: hidden; cursor: pointer; }
.dining-card:first-child { grid-row: span 2; }
.dining-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform 0.8s ease; }
.dining-card:first-child img { min-height: 560px; }
.dining-card:hover img { transform: scale(1.06); }
.dining-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); }
.dining-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.dining-type { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.dining-name { font-family: var(--font-display); font-size: 22px; color: var(--white); font-weight: 300; }

/* EXPERIENCE */
#experience { padding: 120px 0; background: var(--cream); }
.experience-tabs { display: flex; gap: 0; margin-bottom: 60px; border-bottom: 1px solid var(--cream-2); }
.exp-tab { padding: 16px 32px; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--transition); font-weight: 400; }
.exp-tab.active { color: var(--gold-dark); border-bottom-color: var(--gold); }
.exp-tab:hover { color: var(--dark); }
.exp-panel { display: none; }
.exp-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.exp-panel img { width: 100%; height: 480px; object-fit: cover; }
.exp-content { padding-right: 20px; }
.exp-content p { font-size: 15px; line-height: 1.9; color: #555; margin: 24px 0; }
.exp-features { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.exp-feature { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--cream-2); font-size: 14px; color: var(--dark); }
.exp-feature::before { content: '✦'; color: var(--gold); font-size: 10px; }

/* GALLERY */
#gallery { padding: 80px 0; background: var(--dark); }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 280px); gap: 4px; }
.gallery-item { overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: '⊕'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--white); background: rgba(0,0,0,0.4); opacity: 0; transition: var(--transition); }
.gallery-item:hover::after { opacity: 1; }

/* TESTIMONIALS */
#testimonials { padding: 120px 0; background: var(--cream-2); }
.testimonials-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial { display: none; flex-direction: column; align-items: center; gap: 24px; animation: fadeIn 0.6s ease; }
.testimonial.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testimonial-quote { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 300; line-height: 1.5; color: var(--dark); font-style: italic; }
.testimonial-stars { color: var(--gold); letter-spacing: 4px; font-size: 14px; }
.testimonial-author { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.testimonial-name { font-size: 14px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.testimonial-origin { font-size: 12px; color: var(--text-muted); }
.testimonial-nav { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream-2); border: 1px solid var(--gold); cursor: pointer; transition: var(--transition); }
.t-dot.active { background: var(--gold); }

/* CTA */
#cta { padding: 120px 0; background: linear-gradient(135deg, var(--dark) 0%, #1c1510 50%, var(--dark-3) 100%); position: relative; overflow: hidden; text-align: center; }
#cta::before { content: 'MONALISA'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: var(--font-display); font-size: 20vw; color: rgba(255,255,255,0.02); white-space: nowrap; pointer-events: none; letter-spacing: 10px; }
#cta .section-title { color: var(--white); margin: 16px 0 24px; }
#cta p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 40px; line-height: 1.8; }
#cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
#footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-display); font-size: 36px; color: var(--white); letter-spacing: 4px; font-weight: 300; margin-bottom: 16px; }
.footer-tagline { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-about { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 400; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.4); font-weight: 300; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.footer-contact-item span:first-child { color: var(--gold); font-size: 14px; min-width: 16px; }
.footer-contact-item span:last-child { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--gold); }

/* INNER PAGE HERO */
.page-hero { height: 55vh; min-height: 400px; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; position: relative; text-align: center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 80px); color: var(--white); font-weight: 300; letter-spacing: 4px; margin-bottom: 16px; }
.breadcrumb { display: flex; gap: 12px; justify-content: center; align-items: center; }
.breadcrumb a, .breadcrumb span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ROOMS PAGE */
.rooms-page-grid { display: grid; grid-template-columns: 1fr; gap: 2px; }
.room-row { display: grid; grid-template-columns: 1fr 1fr; background: var(--white); overflow: hidden; }
.room-row:nth-child(even) { direction: rtl; }
.room-row:nth-child(even) > * { direction: ltr; }
.room-row-img { height: 500px; overflow: hidden; }
.room-row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.room-row:hover .room-row-img img { transform: scale(1.04); }
.room-row-content { padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.room-row-type { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.room-row-name { font-family: var(--font-display); font-size: 40px; font-weight: 300; margin-bottom: 20px; line-height: 1.1; }
.room-row-desc { font-size: 14px; line-height: 1.9; color: #666; margin-bottom: 32px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.room-amenity-tag { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 8px 16px; border: 1px solid var(--cream-2); color: var(--text-muted); }
.room-row-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 24px; }
.room-row-price .price { font-family: var(--font-display); font-size: 48px; font-weight: 300; color: var(--gold-dark); }
.room-row-price .per { font-size: 12px; color: var(--text-muted); letter-spacing: 1px; }

/* CONTACT */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 48px; font-weight: 300; margin-bottom: 20px; }
.contact-info p { font-size: 15px; line-height: 1.9; color: #666; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail { display: flex; gap: 20px; }
.contact-detail-icon { width: 48px; height: 48px; min-width: 48px; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-detail h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: #666; line-height: 1.6; margin: 0; }
.contact-form { background: var(--white); padding: 48px; border: 1px solid var(--cream-2); }
.contact-form h3 { font-family: var(--font-display); font-size: 32px; font-weight: 300; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 14px 0; border: none; border-bottom: 1px solid var(--cream-2); outline: none; font-family: var(--font-body); font-size: 14px; background: transparent; color: var(--dark); transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color: var(--gold); }
.form-group textarea { height: 120px; resize: none; }
.map-section { height: 500px; background: var(--dark-3); position: relative; overflow: hidden; }
.map-section iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%) contrast(1.1); }
.map-overlay { position: absolute; bottom: 40px; left: 40px; background: var(--dark); padding: 28px 36px; border-left: 3px solid var(--gold); max-width: 320px; }
.map-overlay h4 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: 8px; }
.map-overlay p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  #header { padding: 0 28px; }
  .about-grid, .amenities-grid-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .room-row { grid-template-columns: 1fr; }
  .room-row:nth-child(even) { direction: ltr; }
  .room-row-img { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 240px); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 768px) {
  .header-nav, .header-book { display: none; }
  .hamburger { display: flex; }
  #header { padding: 0 24px; }
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll, .hero-dots { display: none; }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .booking-field:last-of-type { grid-column: span 2; }
  .booking-submit { grid-column: span 2; padding: 20px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .dining-card:first-child { grid-row: span 1; }
  .exp-panel.active { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .amenities-list { grid-template-columns: 1fr; }
}
