/* =========================================================================
   Glassmorphism Hero Banner
   ========================================================================= */

.hero-glass-banner {
    position: relative;
    /* Adjust min-height as needed for a banner rather than full page */
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Dark gradient transparent overlay + Background Image */
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.95)), url('../images/Logo-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Optional: fixed attachment for a slight parallax effect */
    background-attachment: fixed;
    padding: 4rem 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

/* Optional animated glowing orb effect behind the content for depth */
.hero-glass-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 118, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-glass-banner .container {
    position: relative;
    z-index: 2;
}

/* Glass panel wrapping the inner content of the banner */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    /* Very transparent white */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    /* Ensure text inside the panel is white */
    max-width: 800px;
    margin: 0 auto;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-panel h1 {
    color: #fff !important;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.glass-panel p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 0;
}

/* Custom logo styling inside the banner if needed */
.banner-logo {
    max-height: 80px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.banner-logo:hover {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-glass-banner {
        min-height: auto;
        padding: 6rem 1rem 3rem;
        /* Add top padding to account for fixed navbar */
    }

    .glass-panel {
        padding: 2rem 1.5rem;
    }

    .glass-panel h1 {
        font-size: 2rem;
    }

    .glass-panel p {
        font-size: 1rem;
    }
}