/* ============================================================
   DYNAMIC THEME ENGINE - LORDS HOTELS & RESORTS
   Theme: Light Luxury (White, Gold, Charcoal)
   ============================================================ */

:root {
    /* 1. BRAND THEME SETTINGS */
    --brand-primary:      #D4AF37; /* Gold */
    --brand-primary-soft: rgba(212, 175, 55, 0.1);
    --brand-dark-base:    #1A1A1A; /* Charcoal Black */
    --brand-white-base:   #FFFFFF; 
    --brand-surface:      #F8F9FA; /* Light Gray for Sections */
    
    /* Text Colors */
    --text-main:          #211C19; 
    --text-muted:         #6B7280; 
    --text-on-dark:       #FDFDFD; 
    
    /* 2. FUNCTIONAL TOKENS */
    --color-border:       #E5E7EB;
    --radius-main:        0.5rem;  /* Slightly sharper for modern look */
    --shadow-sm:          0 1px 3px rgba(0,0,0,0.1);
    --shadow-md:          0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --transition:         all 0.3s ease-in-out;
    
    
    /* Sidebar Specific Tokens */
    --sidebar-bg:         var(--brand-white-base);
    --sidebar-border:     var(--color-border);
    --sidebar-nav-hover:  var(--brand-surface);
    --sidebar-nav-active: var(--brand-primary-soft);
    --sidebar-text:       var(--text-main);
    --sidebar-text-muted: var(--text-muted);
}

/* ============================
   GLOBAL RESET
   ============================ */
* { box-sizing: border-box; } /* Important for layout */

body {
    background-color: var(--brand-white-base);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px; /* Base size for readability */
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================
   BUTTONS (MOBILE OPTIMIZED)
   ============================ */

.btn-primary {
    background-color: var(--brand-dark-base);
    color: var(--text-on-dark);
    font-weight: 700;
    padding: 1rem 1.5rem; /* Larger touch area */
    border-radius: var(--radius-main);
    transition: var(--transition);
    border: 1px solid var(--brand-dark-base);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem; /* Increased from 0.75rem for readability */
    width: auto;
}

/* Full width on mobile for easier clicking */
@media (max-width: 768px) {
    .btn-primary {
        width: 100%; 
    }
}

.btn-primary:hover {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: var(--brand-dark-base);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--brand-primary); /* Thicker border for visibility */
    color: var(--brand-dark-base);
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-main);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--brand-primary);
    color: #fff;
}

/* ============================
   INPUTS & FORMS
   ============================ */

.input-field {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-main);
    border: 1px solid var(--color-border);
    background-color: var(--brand-white-base);
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
    font-size: 16px; /* Prevents iOS zoom on focus */
}

.input-field:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px var(--brand-primary-soft);
}

/* ============================
   UTILITIES & LAYOUT
   ============================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Padding: Less on Mobile, More on Desktop */
.section-padding {
    padding: 60px 0; 
}

@media (min-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

.card-shadow {
    background: var(--brand-white-base);
    border-radius: var(--radius-main);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    overflow: hidden; /* Keeps images inside rounded corners */
}

.card-shadow:hover {
    border-color: var(--brand-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.text-gold { color: var(--brand-primary); }
.text-center { text-align: center; }

/* ============================
   NAVBAR (Basic)
   ============================ */
.navbar {
    background: var(--brand-white-base);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark-base);
}

/* ============================
   FOOTER
   ============================ */
.lords-footer {
    background: var(--brand-dark-base);
    color: var(--text-on-dark);
    padding: 60px 0 30px 0;
    text-align: center;
}