/* --- PREVENT CONTAINER OVERLAPPING --- */
body {
    padding-top: 90px !important; /* Forces the main site content down so it does not overlap with the fixed header */
}

/* Glossy Glassmorphism Header */
.ast-primary-header-bar, 
header.site-header,
.elementor-location-header {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(20px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(200%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease !important;
    padding: 10px 0 !important;
}

/* Sliding Header States */
.header-pinned_bc8dea34 {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    transform: translateY(0) !important;
}

.header-hidden_bc8dea34 {
    transform: translateY(-100%) !important;
}

/* Logo Glowing Gradient Accent (Vibrant Brand Gradient) */
.site-logo-img, 
.site-title a,
.elementor-widget-theme-site-logo a {
    position: relative;
    font-weight: 800 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    background: linear-gradient(135deg, #ea580c, #c2410c, #f97316);
    background-size: 200% 200%;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: glow_gradient_bc8dea34 4s ease infinite !important;
    transition: filter 0.3s ease !important;
    display: inline-block !important;
}

.site-logo-img:hover, 
.site-title a:hover {
    filter: drop-shadow(0 0 8px rgba(234, 88, 12, 0.5)) !important;
}

/* Highlight Menu Options with Dark Orange & Bottle Green Hover */
.main-navigation ul li a,
.elementor-nav-menu a,
.ast-menu-toggle {
    color: #c2410c !important; /* Dark Orange color */
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 10px 20px !important;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.main-navigation ul li a:hover,
.elementor-nav-menu a:hover {
    background: rgba(6, 78, 59, 0.1) !important; /* Transparent Bottle Green bg */
    box-shadow: inset 0 0 10px rgba(6, 78, 59, 0.15), 0 4px 15px rgba(6, 78, 59, 0.1) !important;
    color: #064e3b !important; /* Bottle Green text */
    border: 1.5px solid rgba(6, 78, 59, 0.4) !important; /* Bottle Green border */
}

/* Beautiful Matching Glossy Footer */
.site-footer,
.elementor-location-footer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.95)) !important;
    border-top: 2px solid rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

.site-footer::before,
.elementor-location-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(234, 88, 12, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes glow_gradient_bc8dea34 {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
