/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Light Theme (Default) */
    --bg-main: #FDFBF7;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #F3EFE6;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    
    --primary: #D4AF37; /* Gold */
    --primary-hover: #B5952F;
    --accent: #E67E22; /* Orange */
    --accent-hover: #D35400;
    
    --border-color: rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(253, 251, 247, 0.85);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    /* Dark Theme */
    --bg-main: #121212;
    --bg-secondary: #1E1E1E;
    --bg-tertiary: #252525;
    --text-main: #F8F5F0;
    --text-muted: #A0A0A0;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(18, 18, 18, 0.85);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.95rem; /* Slightly smaller base font */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem; /* Smaller header */
    color: var(--text-main);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.95rem; /* Smaller text */
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem; /* Smaller padding */
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.85rem; /* Smaller button text */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #121212;
    transform: translateY(-2px);
}

/* ==========================================================================
   Navigation & Sidebar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 5%; /* Smaller padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.8rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .logo, 
.navbar.scrolled .nav-links li a {
    color: var(--text-main);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Smaller logo */
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-size: 0.85rem; /* Smaller links */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: #fff;
    transition: var(--transition);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent) !important;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar.scrolled .theme-btn,
.navbar.scrolled .menu-toggle {
    color: var(--text-main);
}

.theme-btn:hover {
    background: var(--border-color);
    color: var(--accent);
}

.navbar .btn-book {
    padding: 0.5rem 1.2rem; /* Smaller button */
    background: transparent;
    border: 1px solid var(--primary);
    color: #fff;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.navbar.scrolled .btn-book {
    color: var(--primary);
}

.navbar .btn-book:hover {
    background: var(--primary);
    color: #fff !important;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    background: url('images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(18, 18, 18, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3rem; /* Smaller hero title */
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 0.95rem; /* Smaller text */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================================================
   Services Section (Small Cards)
   ========================================================================== */
.services {
    padding: 6rem 5%;
    background: var(--bg-main);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Smaller cards */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(230, 126, 34, 0.15);
}

.service-img {
    height: 180px; /* Smaller image height */
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-info {
    padding: 1.2rem; /* Smaller padding */
}

.service-info h3 {
    font-size: 1.1rem; /* Smaller card header */
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.service-info p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.85rem; /* Smaller card text */
}

.service-link {
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem; /* Smaller link */
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Banner Stats Section
   ========================================================================== */
.banner {
    padding: 5rem 5%;
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)), url('images/hero.png') center/cover fixed;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 2.5rem; /* Smaller header */
    margin-bottom: 1.2rem;
    color: #fff;
}

.banner-content h2 span {
    color: var(--accent);
}

.banner-content p {
    font-size: 0.95rem; /* Smaller text */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-item h4 {
    font-size: 2.8rem; /* Smaller stat numbers */
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-item span {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==========================================================================
   Call to Action (Booking Form)
   ========================================================================== */
.cta {
    padding: 6rem 5%;
    background: var(--bg-tertiary);
    display: flex;
    justify-content: center;
}

.cta-container {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 3rem; /* Smaller padding */
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.cta-container h2 {
    font-size: 1.8rem; /* Smaller header */
    margin-bottom: 0.8rem;
}

.cta-container p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 0.9rem; /* Smaller text */
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.booking-form input,
.booking-form select {
    padding: 0.8rem 1.2rem; /* Smaller padding */
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem; /* Smaller text */
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.booking-form select {
    appearance: none;
    cursor: pointer;
}

.booking-form button {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem; /* Smaller text */
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: #050505;
    padding: 4rem 5% 1.5rem;
    border-top: 4px solid var(--primary);
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-col .logo {
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-col p {
    color: #A0A0A0;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    max-width: 300px;
}

.socials {
    display: flex;
    gap: 0.8rem;
}

.socials a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.socials a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 0.85rem;
    color: #A0A0A0;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-col ul li i {
    color: var(--primary);
    margin-top: 0.3rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #A0A0A0;
    font-size: 0.8rem;
}

/* ==========================================================================
   Responsive & Sidebar Drawer
   ========================================================================== */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.5rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* Sidebar Drawer Styles */
    .menu-toggle { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -260px; /* Hidden by default */
        width: 260px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 1001;
    }
    
    [data-theme="dark"] .nav-links {
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: var(--text-main);
        font-size: 1rem;
        display: block;
        padding: 0.5rem 0;
    }
    
    .btn-book { display: none; } /* Hide book btn in header on mobile */

    /* Typography Adjustments */
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 0.85rem; }
    .booking-form { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .cta-container { padding: 2rem 1.5rem; }
    
    .section-header h2 { font-size: 1.8rem; }
}
