/**
 * Eseriani Hotels & Resorts - Custom Styles
 * Version: 2026.1
 * 
 * Typography: Montserrat (Headers) + Inter (Body)
 * Design: Clean Luxury / Affordable Premium
 */

/* =================================================================
   CSS VARIABLES
   ================================================================= */
:root {
    --es-gold: #c5a47e;
    --es-gold-dark: #a8893d;
    --es-cream: #EDEAE5;
    --es-dark: #343935;
    --es-navy: #0b1c2c;
    --es-white: #ffffff;
    --es-black: #1a1a1a;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* =================================================================
   BASE TYPOGRAPHY
   ================================================================= */
body {
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* =================================================================
   FOOTER STYLES - Clean & Compact
   ================================================================= */
.cs_footer {
    background-color: var(--es-navy);
    font-family: var(--font-body);
    color: #fff;
}

/* CTA Strip */
.cs_cta_strip {
    background: var(--es-gold);
}

.cs_accent_bg {
    background-color: var(--es-gold) !important;
}

.cs_accent_color {
    color: var(--es-gold) !important;
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-heading);
    color: var(--es-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

/* Footer Links */
.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 300;
}

.footer-links li a:hover {
    color: var(--es-gold);
    padding-left: 3px;
}

/* Footer Contact */
.footer-contact li {
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact a:hover {
    color: var(--es-gold) !important;
}

/* Social Mini Icons */
.social-mini {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-mini:hover {
    background: var(--es-gold);
    border-color: var(--es-gold);
    color: white;
    transform: translateY(-2px);
}

/* Newsletter Form */
.newsletter-form input {
    padding-right: 50px !important;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cs_footer input:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--es-gold) !important;
    box-shadow: none;
    color: white;
    outline: none;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.fs-11 { font-size: 11px !important; }
.fs-12 { font-size: 12px !important; }
.fs-13 { font-size: 13px !important; }
.fs-14 { font-size: 14px !important; }

.tracking-wide { letter-spacing: 1px; }
.tracking-wider { letter-spacing: 1.5px; }
.lh-sm { line-height: 1.4; }

.text-gold { color: var(--es-gold) !important; }
.bg-gold { background-color: var(--es-gold) !important; }
.border-gold { border-color: var(--es-gold) !important; }

.text-navy { color: var(--es-navy) !important; }
.bg-navy { background-color: var(--es-navy) !important; }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn-gold {
    background-color: var(--es-gold);
    border-color: var(--es-gold);
    color: white;
}

.btn-gold:hover,
.btn-gold:focus {
    background-color: var(--es-gold-dark);
    border-color: var(--es-gold-dark);
    color: white;
}

.btn-outline-gold {
    border-color: var(--es-gold);
    color: var(--es-gold);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
    background-color: var(--es-gold);
    border-color: var(--es-gold);
    color: white;
}

/* =================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================= */
@media (max-width: 991px) {
    .cs_footer {
        padding-top: 30px !important;
        padding-bottom: 20px !important;
    }
    
    .cs_cta_strip {
        font-size: 10px;
    }
    
    .cs_cta_strip .fs-12 {
        font-size: 10px !important;
    }
    
    .footer-heading {
        margin-bottom: 10px;
    }
    
    .footer-links li a,
    .footer-contact span,
    .footer-contact a {
        font-size: 12px !important;
    }
    
    .social-mini {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    /* Even more compact on small phones */
    .cs_footer {
        padding-top: 25px !important;
    }
    
    .footer-heading {
        font-size: 10px;
    }
    
    .footer-links li a {
        font-size: 11px !important;
    }
}

/* =================================================================
   HEADER ENHANCEMENTS
   ================================================================= */
.cs_site_header {
    font-family: var(--font-body);
}

.cs_nav_list > li > a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
}

/* =================================================================
   SECTION HEADINGS
   ================================================================= */
.cs_section_title {
    font-family: var(--font-heading);
}

.cs_section_subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--es-gold);
    font-size: 12px;
}

/* =================================================================
   CARDS & COMPONENTS
   ================================================================= */
.cs_card {
    font-family: var(--font-body);
}

.cs_card_title {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Price Tags */
.cs_price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--es-gold);
}

.cs_price_label {
    font-family: var(--font-body);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

/* =================================================================
   FORM ENHANCEMENTS
   ================================================================= */
.form-control,
.form-select {
    font-family: var(--font-body);
}

.form-label {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 13px;
}

/* =================================================================
   ANIMATIONS
   ================================================================= */
.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
