/* =========================================
   LUXURY BLACK & GOLD THEME
   ========================================= */

:root {
    --bg-void: #050505;
    --bg-card: #0a0a0a;
    --text-white: #ffffff;
    --text-gold: #D4AF37;
    --gold-gradient: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    --gold-dark: #8a6c1e;
    --border-gold: rgba(212, 175, 55, 0.3);
    
    --font-royal: 'Cinzel', serif;
    --font-modern: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom Cursor */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-void);
    color: var(--text-white);
    font-family: var(--font-modern);
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

/* =========================================
   INTRO CURTAIN
   ========================================= */
.curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.curtain-logo {
    font-family: var(--font-royal);
    font-size: 5rem;
    color: transparent;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

/* =========================================
   NAVIGATION
   ========================================= */
.royal-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2001;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-logo {
    font-family: var(--font-royal);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gold);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-family: var(--font-modern);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-gold);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--text-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* =========================================
   HERO SECTION
   ========================================= */
/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 70% 50%, #151515 0%, #000 70%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.hero-text {
    flex: 1;
    text-align: left;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Hero Image Styling (Base - Grayscale) */
.hero-img {
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px; /* Arch shape */
    filter: grayscale(100%) contrast(1.1) brightness(0.8);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.9), 
                0 0 0 1px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 5;
    transition: 0.5s;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Hero Image (Color Overlay - Lit Side) */
.hero-img-color {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 200px 200px 20px 20px;
    z-index: 6; /* On top of base */
    filter: grayscale(0%) contrast(1.1) brightness(1.1); /* Full Color & Bright */
    /* Mask: Show only left side (Gradient from Opaque to Transparent) */
    mask-image: linear-gradient(110deg, black 30%, transparent 70%);
    -webkit-mask-image: linear-gradient(110deg, black 30%, transparent 70%);
    /* Inner Glow for the light hit */
    box-shadow: inset 30px 10px 80px rgba(255, 215, 0, 0.5);
    pointer-events: none; /* Let clicks pass through */
    transition: 0.5s;
}

.hero-visual:hover .hero-img-color {
    mask-image: linear-gradient(110deg, black 60%, transparent 100%); /* Reveal more on hover */
    -webkit-mask-image: linear-gradient(110deg, black 60%, transparent 100%);
    filter: grayscale(0%) contrast(1.1) brightness(1.2);
}

.hero-visual:hover .hero-img {
    transform: scale(1.02);
}
.hero-visual:hover .hero-img-color {
    transform: translate(-50%, -50%) scale(1.02);
}

/* =========================================
   SPOTLIGHT COLUMN
   ========================================= */
.spotlight-column {
    position: absolute;
    left: -120px; /* Positioned to the LEFT of the image */
    bottom: -50px; /* Grounded */
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.column-body {
    width: 25px;
    height: 500px;
    background: linear-gradient(90deg, #111, #333, #111);
    border-right: 2px solid var(--text-gold);
    border-left: 2px solid var(--text-gold);
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.column-head {
    position: absolute;
    top: 50px; /* Height of the light source */
    right: -15px; /* Stick out towards image */
    width: 60px;
    height: 80px;
    background: #050505;
    border: 1px solid var(--text-gold);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(25deg); /* Angle towards image */
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.light-source {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 30px #fff, 0 0 60px var(--text-gold);
}

.light-cone {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px; /* Long beam */
    height: 300px; /* Wide spread */
    background: radial-gradient(circle at 0% 50%, 
        rgba(255, 215, 0, 0.6) 0%, 
        rgba(212, 175, 55, 0.1) 40%, 
        transparent 80%);
    transform: translateY(-50%) rotate(-5deg); /* Shoot beam straight/slightly down */
    transform-origin: left center;
    clip-path: polygon(0% 40%, 100% 0%, 100% 100%, 0% 60%); /* Cone shape */
    filter: blur(15px);
    mix-blend-mode: screen;
    animation: pulseBeam 4s infinite alternate;
}

@keyframes pulseBeam {
    0% { opacity: 0.8; transform: translateY(-50%) rotate(-5deg) scaleX(1); }
    100% { opacity: 1; transform: translateY(-50%) rotate(-5deg) scaleX(1.05); }
}

/* Gold Rings Animation */
.gold-ring {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid var(--text-gold);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateRing 20s linear infinite;
    opacity: 0.3;
}

.gold-ring-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateRing 30s linear infinite reverse;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(50px);
}

@keyframes rotateRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.sub-headline {
    font-family: var(--font-modern);
    color: var(--text-gold);
    letter-spacing: 4px;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.headline {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    display: flex;
    flex-direction: column;
}

.eng-prefix {
    display: block;
    font-size: 1.5rem;
    color: var(--text-gold);
    font-family: var(--font-royal);
    margin-bottom: -10px;
    letter-spacing: 5px;
    opacity: 0.9;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.white-text {
    color: #fff;
}

.hero-quote {
    font-style: italic;
    color: #888;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

.gold-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--text-gold);
    color: var(--text-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.gold-btn:hover {
    background: var(--text-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.outline-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: 0.3s;
    margin-left: 20px;
}

.outline-btn:hover {
    border-color: var(--text-gold);
    color: var(--text-gold);
}

/* =========================================
   RIBBON SCROLL
   ========================================= */
.ribbon-container {
    width: 100%;
    background: #000;
    overflow: hidden;
    position: relative;
    border-top: 2px solid var(--text-gold);
    border-bottom: 2px solid var(--text-gold);
    transform: rotate(-3deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    margin: -40px 0 80px 0;
}

.scrolling-ribbon {
    display: flex;
    white-space: nowrap;
    animation: scroll 15s linear infinite;
    background: repeating-linear-gradient(
        45deg,
        #000,
        #000 20px,
        #111 20px,
        #111 40px
    );
}

.scrolling-ribbon span {
    font-family: var(--font-modern);
    font-weight: 700;
    color: var(--text-gold);
    font-size: 1.2rem;
    padding: 15px 50px;
    letter-spacing: 3px;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =========================================
   SECTIONS GENERAL
   ========================================= */
.section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-royal);
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
}

.center-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =========================================
   ABOUT ("THE ARCHITECT")
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.about-image-frame {
    position: relative;
}

.profile-pic {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(100%) contrast(1.2);
    transition: 0.5s;
}

.about-image-frame:hover .profile-pic {
    filter: grayscale(0%) contrast(1);
}

.frame-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--text-gold);
    z-index: -1;
    transition: 0.3s;
}

.about-image-frame:hover .frame-border {
    top: 10px;
    left: 10px;
}

.about-text h3 {
    font-family: var(--font-royal);
    color: var(--text-gold);
    margin-bottom: 30px;
    font-size: 2rem;
}

.about-text p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-royal);
    color: var(--text-white);
}

.stat-label {
    color: var(--text-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   UI/UX SHOWCASE (STICKY)
   ========================================= */
.showcase-section {
    padding: 0;
    overflow: hidden;
    position: relative;
    background: #000;
}

.showcase-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.gallery-wrapper {
    position: relative;
    width: 80%;
    height: 60vh;
    margin-top: 40px;
    perspective: 1000px;
}

.gallery-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--text-gold);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    opacity: 0; /* Hidden initially, controlled by GSAP */
    transform: scale(0.8);
    background: #111;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.card-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.8);
    color: var(--text-gold);
    padding: 10px 20px;
    font-family: var(--font-royal);
    font-size: 1.2rem;
    border: 1px solid var(--text-gold);
}

/* =========================================
   SKILLS ("THE ARSENAL")
   ========================================= */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skill-card {
    background: linear-gradient(145deg, #0e0e0e, #050505);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.skill-card:hover {
    border-color: var(--text-gold);
    transform: translateY(-10px);
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--text-gold);
    margin-bottom: 20px;
}

.skill-card h4 {
    font-family: var(--font-royal);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.skill-card p {
    font-size: 0.85rem;
    color: #888;
}

/* =========================================
   WORK ("MASTERPIECES")
   ========================================= */
.projects-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-frame {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
}

.project-frame:hover {
    border-color: var(--text-gold);
}

.project-content h3 {
    font-family: var(--font-royal);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.project-subtitle {
    color: var(--text-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.project-content p {
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.tech-tags {
    margin-bottom: 30px;
}

.tech-tags span {
    border: 1px solid #333;
    padding: 5px 10px;
    font-size: 0.75rem;
    margin-right: 10px;
    color: #888;
}

.gold-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.gold-link:hover {
    color: var(--text-gold);
}

/* =========================================
   EXPERIENCE
   ========================================= */
.timeline {
    border-left: 2px solid var(--text-gold);
    margin-left: 20px;
    padding-left: 40px;
}

.timeline-item {
    padding-bottom: 50px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bg-void);
    border: 2px solid var(--text-gold);
    border-radius: 50%;
}

.timeline-date {
    color: var(--text-gold);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    font-family: var(--font-royal);
    margin-bottom: 5px;
}

.timeline-content h5 {
    color: #888;
    margin-bottom: 15px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer-headline {
    font-family: var(--font-royal);
    font-size: 3rem;
    margin-bottom: 50px;
    color: #fff;
}

.contact-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--text-gold);
    padding: 20px 40px;
    margin-bottom: 50px;
    background: rgba(212, 175, 55, 0.05);
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: var(--font-modern);
    transition: 0.3s;
}

.contact-link:hover {
    color: var(--text-gold);
}

.separator {
    width: 1px;
    height: 30px;
    background: var(--text-gold);
    margin: 0 30px;
}

.social-links {
    margin-bottom: 50px;
}

.social-links a {
    color: #555;
    font-size: 1.5rem;
    margin: 0 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--text-gold);
    transform: scale(1.2);
}

.footer-bottom {
    font-size: 0.8rem;
    color: #444;
}

.gold-certs span {
    color: var(--text-gold);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
    .headline { font-size: 4rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* Navigation Adjustments */
    .royal-nav {
        padding: 15px 20px;
        background: rgba(5, 5, 5, 0.95);
        justify-content: space-between;
    }
    .nav-logo { font-size: 1.5rem; }
    .nav-links { display: none; } 
    
    /* Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 2005; /* Higher than menu z-index */
    }
    .bar {
        width: 30px;
        height: 2px;
        background-color: var(--text-gold);
        transition: 0.3s;
    }
    
    /* Hero Adjustments */
    .hero { 
        min-height: auto; /* Allow auto height on mobile */
        padding-top: 120px; 
        padding-bottom: 50px;
        text-align: center; 
    }
    
    .hero-container-flex { 
        flex-direction: column-reverse; 
        gap: 30px; 
        width: 100%;
    }
    
    .hero-text { 
        text-align: center; 
        width: 100%;
        padding: 0 10px;
    }
    
    .headline { 
        font-size: 2.5rem; /* Slightly smaller to prevent break */
        margin-bottom: 20px;
        line-height: 1.1;
    }
    
    .hero-img, .hero-img-color {
        width: 240px; /* Smaller for mobile */
        height: 300px;
        border-radius: 150px 150px 20px 20px;
    }
    
    .light-beam {
        width: 100px;
        height: 500px;
        right: -30px;
        top: -50px;
        filter: blur(30px);
    }
    
    .spotlight-column {
        left: -40px;
        transform: scale(0.7);
    }
    
    .gold-ring { width: 280px; height: 280px; }
    .gold-ring-2 { width: 330px; height: 330px; }
    .hero-glow { width: 250px; height: 250px; }

    .sub-headline { 
        font-size: 0.75rem; 
        letter-spacing: 2px; 
        margin-bottom: 15px;
    }
    .hero-quote {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding: 0 5px;
    }
    
    .hero-actions { 
        display: flex; 
        flex-direction: column; 
        gap: 15px; 
        width: 100%; 
        padding: 0 10px; 
    }
    
    .outline-btn { 
        margin-left: 0; 
        margin-top: 0; 
        display: block; 
        width: 100%; 
    }
    .gold-btn { 
        display: block; 
        width: 100%; 
    }
    
    /* Ribbon & Layout */
    .ribbon-container { margin: 20px 0 60px 0; }
    .scrolling-ribbon span { font-size: 0.9rem; padding: 10px 15px; }
    
    /* Sections */
    .section { padding: 60px 0; }
    .section-title { font-size: 2.2rem; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .profile-pic { width: 100%; max-width: 300px; margin: 0 auto; display: block; }
    .about-image-frame { text-align: center; padding: 0 20px; }
    .frame-border { left: 50%; transform: translateX(-50%); width: 300px; }
    
    .skills-grid { grid-template-columns: 1fr; padding: 0 20px; }
    
    .projects-gallery { grid-template-columns: 1fr; padding: 0 10px; }
    
    .contact-box { flex-direction: column; gap: 20px; width: 100%; border-left: none; border-right: none; padding: 20px 10px; }
    .contact-link { font-size: 1rem; word-break: break-all; }
    .separator { display: none; }
    
    /* Stats */
    .stats-row { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 30px; }
    .stat-item { align-items: center; }
    
    /* Showcase Mobile */
    .gallery-wrapper { width: 95%; height: 50vh; }
    .card-caption { font-size: 1rem; padding: 5px 15px; }

    .cursor-dot, .cursor-outline { display: none; }
    * { cursor: auto; }
}

/* Mobile Menu Overlay Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 1500;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-link {
    font-family: var(--font-royal);
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-link:hover {
    color: var(--text-gold);
}

/* Hamburger Animation Class */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
