/* ============================================================
   HÔTEL MERMOZ — Public Website
   ============================================================ */
:root {
    --gold: #C8A951;
    --gold-light: #E8D48B;
    --gold-dark: #A68B3C;
    --navy: #1B2A4A;
    --navy-light: #2D4470;
    --navy-dark: #0F1A30;
    --white: #FFFFFF;
    --cream: #FAF8F5;
    --sand: #F5F0E8;
    --gray-100: #F7F7F7;
    --gray-200: #E8E8E8;
    --gray-300: #D1D1D1;
    --gray-500: #8A8A8A;
    --gray-700: #4A4A4A;
    --gray-900: #1A1A1A;
}
*, *::before, *::after { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--gray-900); margin: 0; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

/* NAVBAR */
#mainNav { transition: all 0.3s ease; padding: 1rem 0; }
#mainNav.scrolled { background: rgba(27,42,74,0.98) !important; padding: 0.5rem 0; box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.brand-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; }
.btn-gold { background: var(--gold); color: var(--navy); border: none; font-weight: 600; padding: 0.6rem 1.5rem; border-radius: 6px; transition: all 0.3s; }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.hero-content { position: relative; z-index: 2; color: var(--white); }
.hero-tagline { font-size: 1.1rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.8; margin-bottom: 0.5rem; }
.hero-title { font-size: clamp(3rem, 8vw, 5rem); font-weight: 700; margin-bottom: 0.5rem; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.9; margin-bottom: 1rem; }
.hero-logo { animation: fadeIn 1s ease-out; }
.hero-h24 { font-size: 1rem; color: var(--gold); margin-bottom: 2rem; font-weight: 600; letter-spacing: 0.05em; }

/* SECTIONS */
.section { padding: 5rem 0; }
.section-tag { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 1rem; color: var(--navy); }
.section-text { font-size: 1.05rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1rem; }

/* CARDS */
.room-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.room-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
.room-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold); color: var(--navy); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; z-index: 2; }
.room-img { background: var(--sand); }
.room-body { padding: 1.5rem; }
.room-name { font-size: 1.3rem; margin-bottom: 0.5rem; }
.room-desc { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 1rem; }
.room-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1rem; }
.room-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.room-price { font-size: 1.1rem; font-weight: 700; color: var(--navy); }

/* SERVICE CARDS */
.service-card { background: var(--white); border-radius: 12px; padding: 2rem; text-align: center; box-shadow: 0 2px 15px rgba(0,0,0,0.06); transition: transform 0.3s; height: 100%; }
.service-card:hover { transform: translateY(-3px); }
.service-icon-wrapper { width: 70px; height: 70px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.8rem; color: var(--gold-dark); }
.service-name { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.service-desc { font-size: 0.9rem; color: var(--gray-500); margin: 0; }
.service-card-light { padding: 1.5rem; }
.service-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.service-card-light .service-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.service-card-light .service-desc { font-size: 0.85rem; opacity: 0.7; margin: 0; }

/* PAGE HEADER */
.page-header { background: var(--navy); color: var(--white); padding: 7rem 0 3rem; text-align: center; }
.page-header .breadcrumb { justify-content: center; background: transparent; margin-bottom: 1.5rem; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.page-header .breadcrumb-item.active { color: var(--gold); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 0.5rem; }
.page-subtitle { font-size: 1.05rem; opacity: 0.8; }

/* ROOM DETAIL */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.info-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem; background: var(--gray-100); border-radius: 8px; }
.info-item i { font-size: 1.3rem; color: var(--gold); }
.amenities-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.amenity-tag { background: var(--cream); padding: 0.4rem 0.8rem; border-radius: 20px; font-size: 0.8rem; color: var(--gray-700); }
.price-box { background: var(--navy); color: var(--white); padding: 1.5rem; border-radius: 12px; text-align: center; }
.price-amount { font-size: 1.8rem; font-weight: 700; }
.price-unit { font-size: 0.85rem; opacity: 0.7; }

/* FORMS */
.form-card { background: var(--white); border-radius: 12px; padding: 2rem; box-shadow: 0 2px 15px rgba(0,0,0,0.06); margin-bottom: 1.5rem; }
.form-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--navy); }
.sidebar-card { background: var(--cream); border-radius: 12px; padding: 1.5rem; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-caption { text-align: center; margin-top: 0.5rem; font-size: 0.9rem; color: var(--gray-500); }

/* CONTACT */
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--gray-200); }
.contact-card:last-child { border-bottom: none; }
.contact-card i { font-size: 1.3rem; margin-top: 0.2rem; }
.contact-card h6 { margin: 0; font-weight: 600; }
.contact-card p { margin: 0; font-size: 0.9rem; color: var(--gray-500); }
.contact-card a { color: var(--navy); text-decoration: none; }
.contact-card a:hover { color: var(--gold); }

/* VALUES */
.value-card { padding: 2rem; }
.value-icon { font-size: 3rem; margin-bottom: 1rem; }
.value-title { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }

/* LOCATION */
.location-info { margin-top: 1.5rem; }
.location-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 1rem; }
.location-item i { font-size: 1.2rem; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); padding: 5rem 0; text-align: center; }
.cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: var(--white); }
.cta-text { font-size: 1.1rem; opacity: 0.8; margin-bottom: 2rem; }

/* FOOTER */
.footer { background: var(--navy-dark); color: var(--white); padding: 4rem 0 2rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.footer-desc { font-size: 0.9rem; opacity: 0.7; }
.footer-title { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; font-size: 0.9rem; opacity: 0.7; }
.footer-links a { color: var(--white); text-decoration: none; }
.footer-links a:hover { color: var(--gold); opacity: 1; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: all 0.3s; font-size: 1.1rem; }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2rem 0; }
.footer-bottom { font-size: 0.85rem; opacity: 0.5; }

/* WHATSAPP */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 1000; text-decoration: none; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }

/* PLACEHOLDER */
.placeholder-img { background: linear-gradient(135deg, var(--sand) 0%, var(--gray-200) 100%); display: flex; align-items: center; justify-content: center; color: var(--gray-300); font-size: 3rem; }

/* BG HELPERS */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }
.text-gold { color: var(--gold) !important; }

/* BADGES */
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-confirmed { background: #E8F5E9; color: #2E7D32; }
.badge-pending { background: #FFF3E0; color: #F57C00; }
.badge-inhouse { background: #E3F2FD; color: #1565C0; }
.badge-cancelled { background: #F0F0F0; color: #757575; }
.badge-completed { background: #E8F5E9; color: #2E7D32; }

/* ALERTS */
.alert-success { background: #E8F5E9; color: #2E7D32; border-color: #A5D6A7; }
.alert-danger { background: #FFEBEE; color: #C62828; border-color: #EF9A9A; }

@media (max-width: 767.98px) {
    .hero { min-height: 500px; }
    .section { padding: 3rem 0; }
    .info-grid { grid-template-columns: 1fr; }
}
