/* glass-theme.css - Dedicated for Header/Footer/Glass Effects, Mobile Shine (Append after style.css) */
/* Glassmorphism for Header & Side Panel */
.glass-effect {
    background: rgba(135, 206, 235, 0.15); /* Low opacity for true semi-transparent sky-blue glass */
    backdrop-filter: blur(20px); /* Stronger blur for transparency feel */
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
/* Fixed Header with Overlay Gradient */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030; /* Above offcanvas */
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.2), rgba(70, 130, 180, 0.2)); /* Super faint gradient – 80% transparent */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3); /* Inner glow for glass shine */
}
/* Logo/Icon Color Fix */
.navbar-brand.logo {
    color: white !important; /* White title + icon */
    font-size: 1.5rem;
    font-weight: bold;
}
/* Button Shine Effect for Nav Links */
.btn-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
}
.btn-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn-effect:hover::before {
    left: 100%;
}
.btn-effect:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(70, 130, 180, 0.4); /* Blue glow */
    color: white !important;
    background: rgba(255, 255, 255, 0.2); /* Subtle bg on hover */
}
/* Nav Links White on Hover */
.nav-link.btn-effect {
    color: white !important;
}
.nav-link.btn-effect:hover {
    color: white !important;
}
/* Dropdown Fixes: Dark Text on White BG */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(135, 206, 235, 0.5);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(70, 130, 180, 0.2);
}
.dropdown-item {
    color: #333 !important; /* Dark text for visibility */
}
.dropdown-toggle::after {
    border-top-color: white; /* Arrow white */
}
.dropdown-item:hover {
    background: linear-gradient(135deg, #87CEEB, #4682B4) !important;
    color: white !important;
}
/* Footer Gradient Match */
.footer {
    background: linear-gradient(135deg, #87CEEB, #4682B4); /* Same as header */
    color: white;
    margin-top: auto; /* Push to bottom if needed */
}
/* Mobile Side Panel Enhancements */
@media (max-width: 991.98px) {
    .offcanvas {
        width: 70% !important; /* 70% width overlay */
        background: rgba(135, 206, 235, 0.2); /* Glass variant */
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
    .offcanvas .nav-link {
        border-radius: 15px;
        margin-bottom: 0.5rem;
        text-align: center;
        color: white !important; /* Panel links white */
    }
    .offcanvas .nav-link:hover {
        color: white !important;
        background: rgba(255, 255, 255, 0.2);
    }
    /* Body padding for fixed header */
    body {
        padding-top: 80px; /* Header height approx */
    }
}
/* General Responsive Tweaks */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .ribbon { flex-direction: column; align-items: center; gap: 0.5rem; }
    .col-lg-4 { flex: 1 1 100%; margin-bottom: 1rem; }
    .navbar-brand { font-size: 1.2rem; }
}