/* ===== VARIABLES ===== */
:root {
    --navy: #0b1d35;
    --navy-light: #142d4c;
    --blue-deep: #1a3a5c;
    --gold: #c9a84c;
    --gold-light: #e0c97f;
    --sand: #f5f0e6;
    --sand-light: #faf7f0;
    --white: #fff;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #7a7a8a;
    --shadow-sm: 0 2px 8px rgba(11,29,53,.06);
    --shadow-md: 0 8px 30px rgba(11,29,53,.10);
    --shadow-lg: 0 16px 50px rgba(11,29,53,.14);
    --shadow-gold: 0 8px 30px rgba(201,168,76,.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', sans-serif; color: var(--text-body); line-height: 1.7; overflow-x: hidden; background: var(--white); }
h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; color: var(--text-dark); line-height: 1.3; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ===== SECTION ===== */
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; display: block; }
.section-header h2 { font-size: 2.75rem; font-weight: 700; margin-bottom: 18px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 620px; margin: 0 auto; }
.section-header .title-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 0 auto 20px; }

/* ===== BUTTONS ===== */
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); border: none; padding: 14px 34px; font-weight: 600; font-size: .95rem; border-radius: 50px; letter-spacing: .5px; transition: var(--transition); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(201,168,76,.3); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border: none; padding: 14px 34px; font-weight: 600; font-size: .95rem; border-radius: 50px; transition: var(--transition); }
.btn-navy:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: #25D366; color: var(--white); border: none; padding: 14px 34px; font-weight: 600; font-size: .95rem; border-radius: 50px; transition: var(--transition); }
.btn-whatsapp:hover { background: #128C7E; color: var(--white); transform: translateY(-2px); }
.btn-outline-light-custom { border: 2px solid rgba(255,255,255,.6); color: var(--white); padding: 13px 34px; font-weight: 600; font-size: .95rem; border-radius: 50px; background: transparent; transition: var(--transition); }
.btn-outline-light-custom:hover { background: rgba(255,255,255,.15); border-color: var(--white); color: var(--white); transform: translateY(-2px); }

/* ===== TOP BAR ===== */
.top-bar { background: var(--navy); color: rgba(255,255,255,.8); padding: 10px 0; font-size: .85rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--gold); }
.top-bar i { color: var(--gold); margin-right: 6px; }
.top-bar .social-icons a { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); margin-left: 6px; font-size: .8rem; transition: var(--transition); }
.top-bar .social-icons a:hover { background: var(--gold); color: var(--navy); }

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown { position: relative; }
.lang-dropdown .lang-btn { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.9); padding: 5px 14px; border-radius: 6px; font-size: .82rem; cursor: pointer; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.lang-dropdown .lang-btn:hover { background: rgba(255,255,255,.15); border-color: var(--gold); }
.lang-dropdown .lang-menu { position: absolute; top: 100%; right: 0; margin-top: 6px; background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); min-width: 160px; z-index: 1050; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); overflow: hidden; }
.lang-dropdown:hover .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; color: var(--text-dark); font-size: .88rem; font-weight: 500; transition: var(--transition); }
.lang-menu a:hover { background: var(--sand-light); color: var(--gold); }
.lang-menu a.active { background: var(--sand); color: var(--gold); }
.lang-flag { width: 22px; height: 16px; border-radius: 2px; object-fit: cover; }

/* ===== NAVBAR ===== */
.main-navbar { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); padding: 12px 0; transition: var(--transition); z-index: 1040; }
.main-navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.08); padding: 8px 0; }
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--navy), var(--blue-deep)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.3rem; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .brand-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy); }
.brand-text .brand-slogan { font-size: .7rem; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }
.main-navbar .nav-link { color: var(--text-dark); font-weight: 500; font-size: .93rem; padding: 8px 16px !important; position: relative; transition: var(--transition); }
.main-navbar .nav-link::after { content: ''; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px; background: var(--gold); border-radius: 1px; transition: var(--transition); transform: translateX(-50%); }
.main-navbar .nav-link:hover, .main-navbar .nav-link.active { color: var(--gold); }
.main-navbar .nav-link:hover::after, .main-navbar .nav-link.active::after { width: 20px; }
.nav-btn-reservation { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy) !important; border: none; padding: 10px 26px !important; border-radius: 50px; font-weight: 600 !important; font-size: .9rem !important; box-shadow: var(--shadow-gold); transition: var(--transition); }
.nav-btn-reservation:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(201,168,76,.35); }
.nav-btn-reservation::after { display: none !important; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; padding: 180px 0 100px; overflow: hidden; background: var(--navy); }
.page-hero .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero .hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,29,53,.7), rgba(11,29,53,.55) 50%, rgba(11,29,53,.8)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p, .page-hero .hero-desc { font-size: 1.15rem; color: rgba(255,255,255,.8); max-width: 600px; }
.page-hero .hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3); color: var(--gold-light); padding: 8px 20px; border-radius: 50px; font-size: .85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(10px); }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; margin-top: 24px; flex-wrap: wrap; }
.breadcrumb-custom a { color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition); }
.breadcrumb-custom a:hover { color: var(--gold); }
.breadcrumb-custom span { color: rgba(255,255,255,.4); font-size: .8rem; }
.breadcrumb-custom .current { color: var(--gold); font-size: .9rem; font-weight: 500; }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; padding: 100px 0; overflow: hidden; }
.cta-section .cta-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&q=85') center/cover no-repeat; }
.cta-section .cta-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,29,53,.92), rgba(20,45,76,.88)); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-size: 3rem; color: var(--white); margin-bottom: 18px; }
.cta-content p { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.main-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 80px 0 0; }
.footer-brand .brand-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.footer-brand p { font-size: .92rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); margin-right: 8px; font-size: .95rem; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-title { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.6); font-size: .9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 14px; margin-bottom: 18px; }
.footer-contact-item .contact-icon { width: 42px; height: 42px; min-width: 42px; background: rgba(255,255,255,.06); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: .95rem; }
.footer-contact-item .contact-info span { font-size: .8rem; color: rgba(255,255,255,.5); display: block; }
.footer-contact-item .contact-info a, .footer-contact-item .contact-info p { color: rgba(255,255,255,.85); font-size: .92rem; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; margin-top: 50px; }
.footer-bottom p { font-size: .85rem; margin: 0; color: rgba(255,255,255,.5); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.7rem; box-shadow: 0 8px 25px rgba(37,211,102,.35); z-index: 9999; transition: var(--transition); animation: wp 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes wp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37,211,102,.35); }
    50% { box-shadow: 0 8px 35px rgba(37,211,102,.55); }
}

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 30px; left: 30px; width: 46px; height: 46px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem; box-shadow: var(--shadow-md); z-index: 9998; opacity: 0; visibility: hidden; transition: var(--transition); cursor: pointer; border: none; }
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); background: var(--gold); color: var(--navy); }

/* ===== RESPONSIVE (Common) ===== */
@media (max-width: 991.98px) {
    .page-hero h1 { font-size: 2.4rem; }
    .section-header h2 { font-size: 2.2rem; }
}
@media (max-width: 767.98px) {
    .section-padding { padding: 60px 0; }
    .page-hero { padding: 140px 0 70px; }
    .page-hero h1 { font-size: 2rem; }
    .cta-content h2 { font-size: 1.9rem; }
}
