/* DOLAR138 Suites & Resort - Luxury Hotel Theme (Inspired by The Ritz-Carlton) */

:root {
    --black: #000000;
    --navy: #101820; /* Very dark rich navy/grey */
    --gold: #aa864e; /* Elegant muted gold */
    --gold-light: #c2a16d;
    --white: #ffffff;
    --off-white: #f8f6f0; /* Classic ivory/beige */
    --gray-light: #e6e6e6;
    --gray-text: #555555;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography elements */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--navy);
}

.text-center { text-align: center; }

.gold-divider {
    height: 1px;
    width: 80px;
    background-color: var(--gold);
    margin: 20px 0;
}
.gold-divider.center {
    margin: 20px auto;
}

/* Buttons */
.btn-login {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-login:hover { color: var(--gold); }

.btn-book {
    background-color: var(--gold);
    color: var(--white);
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.btn-book:hover {
    background-color: var(--gold-light);
}

.btn-solid-gold {
    display: inline-block;
    background-color: var(--gold);
    color: var(--white);
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-body);
}
.btn-solid-gold:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-outline-gold {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn-link {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-link:hover {
    color: var(--navy);
    gap: 12px;
}

/* Navigation */
.luxury-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.luxury-navbar.scrolled {
    background: rgba(16, 24, 32, 0.95); /* Deep navy translucent */
    padding: 12px 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
.hamburger i { font-size: 20px; }
.hamburger:hover { color: var(--gold); }

.brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.brand-logo img {
    height: 45px;
    transition: height 0.4s ease;
    filter: brightness(0) invert(1); /* Keep white on transparent/dark bg */
}
.scrolled .brand-logo img {
    height: 35px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 350px;
    max-width: 100vw;
    height: 100vh;
    background-color: var(--white);
    z-index: 2000;
    padding: 80px 40px;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 2px 0 20px rgba(0,0,0,0.1);
}
.side-menu.active { left: 0; }

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: var(--navy);
    cursor: pointer;
}
.close-btn:hover { color: var(--gold); }

.side-menu ul li { margin-bottom: 25px; }
.side-menu ul li a {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.side-menu ul li a:hover { color: var(--gold); }

.overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-vignette {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 55px;
    letter-spacing: 6px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    color: var(--white);
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-size: 10px;
    letter-spacing: 3px;
}
.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: var(--white);
    animation: stretch 2s infinite ease-in-out;
}
@keyframes stretch {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Booking Bar */
.booking-bar {
    background-color: var(--white);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: -50px auto 0 auto;
    padding: 20px 40px;
}

.booking-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--gray-light);
    padding-right: 20px;
}

.form-group label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gray-text);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    border: none;
    outline: none;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
}

.btn-check-rates {
    background-color: var(--navy);
    color: var(--white);
    border: none;
    padding: 18px 30px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-check-rates:hover {
    background-color: var(--gold);
}

/* Sections Global */
.intro-section, .suites-section, .seo-article-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-size: 38px;
    letter-spacing: 2px;
    line-height: 1.3;
}

/* Intro Section */
.intro-container {
    display: flex;
    justify-content: center;
    text-align: center;
}
.intro-text {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro-text .lead-text {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 25px;
    line-height: 1.4;
}
.intro-text p {
    color: var(--gray-text);
    font-size: 15px;
    margin-bottom: 30px;
}

/* Wellness Split Section */
.wellness-section {
    background-color: var(--white);
}
.wellness-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.wellness-image {
    background-size: cover;
    background-position: center;
    min-height: 600px;
}
.wellness-content {
    padding: 100px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.wellness-content h3 {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 20px;
}
.wellness-content p {
    color: var(--gray-text);
    margin-bottom: 40px;
}

.facilities-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.facilities-list i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 5px;
}
.facilities-list h4 {
    font-family: var(--font-body);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.facilities-list p {
    font-size: 14px;
    margin-bottom: 0;
}

/* Suites Showcase */
.suites-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}
.suite-card {
    background-color: var(--white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.suite-img {
    height: 350px;
    overflow: hidden;
}
.suite-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.suite-card:hover .suite-img img {
    transform: scale(1.05);
}
.suite-info {
    padding: 40px;
    text-align: center;
}
.suite-info h3 {
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.suite-info p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 25px;
}
.suite-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 30px;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 10px 0;
}
.suite-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SEO Article Section */
.seo-article-section {
    background-color: var(--white);
    border-top: 1px solid var(--gray-light);
}
.article-container {
    max-width: 800px;
    margin: 0 auto;
}
.article-title {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--navy);
}
.article-content h3 {
    font-size: 20px;
    margin: 35px 0 15px 0;
    color: var(--gold);
}
.article-content p {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}
.closing-statement {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--navy);
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-light);
}

/* Footer */
.luxury-footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 40px 20px 40px;
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
}
.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    color: #999;
    font-size: 13px;
    max-width: 250px;
}
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 25px;
    text-transform: uppercase;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #ccc;
    font-size: 13px;
    letter-spacing: 1px;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact i { color: var(--gold); }
.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}
.social-icons a {
    color: var(--white);
    font-size: 18px;
}
.social-icons a:hover { color: var(--gold); }
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 11px;
    color: #777;
    letter-spacing: 1px;
}
.footer-bottom a { color: #aaa; margin: 0 5px; }
.footer-bottom a:hover { color: var(--white); }

/* Animations */
.fade-in-up {
    animation: fadeInUp 1.2s ease forwards;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-actions { display: none; }
    .hero-title { font-size: 40px; }
    .booking-bar {
        margin: 0;
        max-width: 100%;
        padding: 30px;
    }
    .booking-form {
        flex-direction: column;
        gap: 15px;
    }
    .form-group {
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
        padding-right: 0;
        padding-bottom: 15px;
        width: 100%;
    }
    .wellness-grid, .suites-grid {
        grid-template-columns: 1fr;
    }
    .wellness-image { min-height: 400px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
}