/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1rem 4rem;
    overflow: hidden;
    z-index: 1;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: soft-light;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,165,0,0.4) 0%, rgba(255,140,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,165,0,0.2) 0%, rgba(0,0,0,0.8) 70%);
    z-index: -1;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.9;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 3rem;
    /* background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 165, 0, 0.2);
    border: 1px solid rgba(255, 165, 0, 0.3); */
    animation: fadeIn 1s ease-in-out;
    transform-style: preserve-3d;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .navbar-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease-in-out;
        gap: 2.5rem;
        padding: 2rem;
        z-index: 1000;
        overflow-y: auto; /* Allow scrolling on smaller screens */
    }
    
    .navbar-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .navbar-link {
        font-size: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }
    
    .navbar-links.active .navbar-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .navbar-links.active .navbar-link:nth-child(1) { transition-delay: 0.1s; }
    .navbar-links.active .navbar-link:nth-child(2) { transition-delay: 0.2s; }
    .navbar-links.active .navbar-link:nth-child(3) { transition-delay: 0.3s; }
    .navbar-links.active .navbar-link:nth-child(4) { transition-delay: 0.4s; }
    .navbar-links.active .navbar-link:nth-child(5) { transition-delay: 0.5s; }
    
    .small-links {
        margin: 2rem 0 0 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .menu-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .menu-background.active {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .mobile-social-icon {
        color: var(--light);
        font-size: 1.5rem;
        transition: color 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-social-icon:hover {
        color: var(--primary);
        transform: scale(1.1);
    }
}

.mobile-menu-toggle {
    display: none;
    z-index: 1010;
    position: relative;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
}

.menu-icon {
    position: relative;
    width: 30px;
    height: 2px;
    background-color: var(--light);
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--light);
    transition: transform 0.3s ease;
}

.menu-icon::before {
    transform: translateY(-8px);
}

.menu-icon::after {
    transform: translateY(8px);
}

.mobile-menu-toggle.active .menu-icon {
    background-color: transparent;
}

.mobile-menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
}
