/* ==========================================================================
   AURORA DESIGN SYSTEM - CSS OVERRIDES
   ========================================================================== */

/* 1. Global Background Reset */
body,
html {
    background-color: #050505 !important;
    background-image: none !important;
}

/* Remove old body pseudo elements */
body::before,
body::after {
    display: none !important;
    animation: none !important;
}

/* 2. Ambient Aurora Orbs */
.aurora-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -3;
    overflow: hidden;
    pointer-events: none;
}

.aurora-orb-1,
.aurora-orb-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: floatOrb 20s ease-in-out infinite alternate;
}

.aurora-orb-1 {
    top: -10vw;
    left: -10vw;
    width: 50vw;
    height: 50vw;
    background: #6200ea;
    /* Deep Purple */
    animation-delay: 0s;
}

.aurora-orb-2 {
    bottom: -10vw;
    right: -10vw;
    width: 60vw;
    height: 60vw;
    background: #00b4d8;
    /* Cyan */
    animation-direction: alternate-reverse;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(15vw, 10vh) scale(1.1);
    }
}

/* 3. Frosted Glass Navbar */
.aurora-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(5, 5, 5, 0.4);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aurora-header.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.8);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.aurora-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aurora-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #fff;
}

.aurora-menu {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aurora-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.aurora-menu a:hover,
.aurora-menu a.active {
    color: #fff;
}

.aurora-cta {
    display: inline-block;
    padding: 10px 24px;
    background: #fff;
    color: #000 !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.aurora-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* 4. Hero Section */
.hero-aurora {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
}

.hero-text .text-gradient {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typing-container {
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    height: 40px;
}

.terminal-window {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.terminal-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mac-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mac-close {
    background: #ff5f56;
}

.mac-min {
    background: #ffbd2e;
}

.mac-max {
    background: #27c93f;
}

.terminal-body {
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: #a9b7c6;
    line-height: 1.6;
}

.code-keyword {
    color: #cc7832;
}

.code-tag {
    color: #e8bf6a;
}

.code-string {
    color: #6a8759;
}

.code-func {
    color: #ffc66d;
}

/* 5. Minimalist Sections */
.section-aurora {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-title-aurora {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.section-heading-aurora {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

/* 6. Skills Grid with Brand Glow */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skill-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.skill-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.skill-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.skill-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Specific glows */
.skill-card.laravel:hover {
    border-color: #ff2d20;
    box-shadow: 0 10px 30px rgba(255, 45, 32, 0.15);
    transform: translateY(-5px);
}

.skill-card.laravel:hover i {
    color: #ff2d20;
}

.skill-card.react:hover {
    border-color: #61dafb;
    box-shadow: 0 10px 30px rgba(97, 218, 251, 0.15);
    transform: translateY(-5px);
}

.skill-card.react:hover i {
    color: #61dafb;
}

.skill-card.nextjs:hover {
    border-color: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.skill-card.nextjs:hover i {
    color: #fff;
}

.skill-card.uiux:hover {
    border-color: #bc13fe;
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.15);
    transform: translateY(-5px);
}

.skill-card.uiux:hover i {
    color: #bc13fe;
}

/* 7. FAQ Accordion Clean */
.faq-aurora-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    cursor: pointer;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header h4 {
    color: #fff;
    font-size: 1.25rem;
    margin: 0;
    font-weight: 500;
}

.faq-header i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    color: rgba(255, 255, 255, 0.6);
}

.faq-aurora-item.active .faq-body {
    max-height: 200px;
    margin-top: 16px;
}

.faq-aurora-item.active .faq-header h4 {
    color: #00b4d8;
}

.faq-aurora-item.active .faq-header i {
    transform: rotate(180deg);
    color: #00b4d8;
}

/* 8. Modern Footer */
.footer-aurora {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-aurora .social-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-aurora .social-links a:hover {
    color: #fff;
}

.footer-aurora p {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Mobile Nav Toggle */
.aurora-mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .aurora-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .aurora-menu.active {
        display: flex;
    }

    .aurora-mobile-toggle {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   GLIGHTBOX "BACK" BUTTON CUSTOMIZATION
   ========================================================================== */
.gclose {
    background: rgba(255, 45, 32, 0.9) !important;
    border-radius: 5px !important;
    width: auto !important;
    padding: 10px 20px !important;
    color: #fff !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 20px !important;
    right: 20px !important;
    font-weight: bold;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.gclose::after {
    content: "BACK / CLOSE";
    margin-left: 8px;
}

.gclose:hover {
    background: #ff2d20 !important;
    box-shadow: 0 5px 15px rgba(255, 45, 32, 0.4);
}

.gclose svg {
    fill: #fff !important;
    width: 14px !important;
    height: 14px !important;
}