/* ========================================= */
/* GLOBAL VARIABLES, RESET & CORE COMPONENTS */
/* ========================================= */
:root {
    --primary-orange: #FF6A00; 
    --white: #FFFFFF;
    --light-gray: #c9d1d9; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: #0d1117 !important;
    background-attachment: fixed; 
    color: var(--light-gray); 
    overflow-x: hidden;
}

main { margin-top: 80px; }
section { scroll-margin-top: 90px; }

.container { max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 20px; text-align: center; }
.section-title { 
    color: var(--primary-orange); 
    margin-bottom: 40px; 
    font-size: 2rem; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}

/* Header & Navigation */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px; position: fixed; width: 100%; top: 0; z-index: 1000;
}
.logo h1 { color: var(--white); font-size: 24px; letter-spacing: 2px; }
.logo span { color: var(--primary-orange); }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin: 0 15px; }
.nav-links a { text-decoration: none; color: var(--white); font-weight: 500; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary-orange); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.search-btn { background: none; border: none; cursor: pointer; color: var(--primary-orange); transition: 0.2s; }
.search-btn:hover { transform: scale(1.1); }
.search-bar { position: absolute; top: 100%; right: 50px; padding: 15px; display: none; border-radius: 0 0 8px 8px; }
.search-bar.active { display: flex; gap: 10px; }
.search-bar input { padding: 8px 12px; border: 1px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.4); border-radius: 4px; color: var(--white); outline: none; }

.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--primary-orange); margin: 5px; transition: all 0.3s ease; }

/* ========================================= */
/* 🚨 GLOBAL UNIFIED BUTTONS 🚨              */
/* ========================================= */
/* Forces every button on your site into the new transparent glass style */
.cta-button, .social-btn, .search-bar button, .glass-btn, .star-btn, 
.whatsapp-btn, .facebook-btn, .instagram-btn, .maps-btn, .city-btn {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #c9d1d9 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 15px 30px !important; 
    border-radius: 6px !important; 
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    backdrop-filter: blur(5px) !important;
    box-shadow: none !important;
    text-align: center;
    display: inline-block; 
}

/* Custom width adjustments so they look proportional */
.city-btn { padding: 15px 50px !important; }
.social-btn { min-width: 220px; } 
.whatsapp-btn { min-width: 280px; } 

/* 🚨 THE ORANGE LIGHT HOVER EFFECT 🚨 */
.cta-button:hover, .cta-button:focus, .cta-button:active,
.social-btn:hover, .social-btn:focus, .social-btn:active,
.search-bar button:hover, .search-bar button:focus, .search-bar button:active,
.glass-btn:hover, .glass-btn:focus, .glass-btn:active, .glass-btn.active,
.whatsapp-btn:hover, .facebook-btn:hover, .instagram-btn:hover, .maps-btn:hover,
.city-btn:hover, .city-btn:focus, .city-btn:active,
.star-btn:hover, .star-btn:focus, .star-btn:active {
    background: rgba(255, 106, 0, 0.08) !important;
    border: 1px solid #ff6a00 !important;
    color: #ff6a00 !important;
    box-shadow: 0 0 20px rgba(255, 106, 0, 0.3), inset 0 0 10px rgba(255, 106, 0, 0.15) !important;
    transform: translateY(-3px) !important;
}

.social-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    margin-top: 20px; 
}

/* ========================================= */
/* FOOTER                                    */
/* ========================================= */
.site-footer {
    background-color: #010409 !important; 
    text-align: center;
    padding: 60px 20px 20px 20px; 
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
    font-size: 0.9rem;
    color: #555555; 
}

/* --- Navigation Logo Styling --- */
.nav-logo {
    height: 30px; 
    width: auto;  
    display: block;
    transform: scale(2.4); 
    transform-origin: left center; 
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.9); 
}