/* 1. FONT DECLARATIONS - (Keep your @font-face rules at the top) */

/* 2. VARIABLES & GLOBAL STYLES */
:root {
    --brand-gradient: linear-gradient(to right, #FFC75C, #FFEECB);
    --brand-gold: #FFC75C;
    --dark-bg: #000000;
}

body {
    margin: 0;
    background-color: var(--dark-bg); 
    background-image: url('../bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Metropolis', sans-serif;
    overflow-x: hidden;
}

/* 3. HEADER & NAVIGATION */
.main-header {
    display: flex;
    justify-content: space-between;
    background-color:#000 ;
    align-items: center;
    padding: 30px 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
}

.brand-logo {
    height: 52px;
    width: auto;
}

/* Desktop Navigation */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    font-weight: 500; /* Metropolis Medium */
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

/* Gold Numbers (01, 02...) */
.nav-links li a span {
    font-family: 'Metropolis', sans-serif;
    font-weight: 300;
    font-size: 10px;
    color: var(--brand-gold);
    margin-right: 10px;
    transform: translateY(-1px); /* Slight lift like the Beckham ref */
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--brand-gold);
}

/* 4. HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h2 {
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

.hero h2 small {
    display: block;
    font-size: 16px; 
    font-weight: 300; 
    letter-spacing: 6px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.hero h2 span {
    display: block;
    font-size: 4rem; 
    font-weight: 900; 
    letter-spacing: 8px;
    margin-top: 5px;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 5. MENU TOGGLE (Hamburger) */
.menu-toggle {
    cursor: pointer;
    z-index: 1001;
    display: none; /* Hidden on desktop */
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* 6. RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }

    .main-header {
        padding: 20px 30px;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85); 
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        transition: 0.8s ease-in-out;
    }

    .nav-container.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .nav-links li a {
        font-size: 26px;
        justify-content: center;
    }

    .nav-links li a span {
        font-size: 14px;
    }

    .hero h2 small {
        font-size: 13px;
        letter-spacing: 4px;
    }

    .hero h2 span {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }

    /* Animation to "X" */
    #menuBtn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    #menuBtn.open span:nth-child(2) {
        opacity: 0;
    }
    #menuBtn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}


/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 50px;
    background-color: transparent; /* Shows your grid background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.about-container {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Image on left, text on right */
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    filter: grayscale(100%); /* Keeps it high-end/minimal like the reference */
    transition: 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image img:hover {
    filter: grayscale(0%); /* Color pops back on hover */
}

.section-label {
    color: var(--brand-gold);
    font-size: 12px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7); /* Softened text for readability */
    margin-bottom: 35px;
    font-weight: 300;
    text-align: left;
}

.resume-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-gold); /* The underlined style */
    transition: 0.3s;
}

.resume-link:hover {
    color: var(--brand-gold);
    padding-left: 10px; /* Subtle movement on hover */
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr; /* Stacked layout for mobile */
        gap: 40px;
        text-align: center;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-section {
        padding: 60px 30px;
    }
}
/* Social Icons Styling */
.about-socials {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFEECB; /* Blue color from screenshot */
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--brand-gold);
    color: #000;
}

/* Contact Info Styling */
.about-contact {
    margin-top: 40px;
    justify-items: center;
}

.about-contact h3 {
    color: #fff;
text-decoration: none;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 16px;
padding-bottom: 8px;
border-bottom: 2px solid var(--brand-gold)
}

.about-contact p {
    margin: 8px 0;
    font-size: 16px;
    color: #888;
   
    
}

.about-contact a {
    color:  #FFEECB;
    text-decoration: none;
    transition: 0.3s;
}

.about-contact a:hover {
    text-decoration: underline;
}

/* Centering for Mobile */
@media (max-width: 900px) {
    .about-socials {
        justify-content: center;
    }
    .about-contact {
        text-align: center;
    }
}


/* --- SERVICES SECTION --- */
.services-section {
    padding: 100px 50px;
    text-align: center;
    background-color: transparent;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.03); /* Subtle card background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    
}

/* Icon Styling using your brand gold */
.service-card i {
    font-size: 40px;
    color: var(--brand-gold); /* Using your defined variable */
    margin-bottom: 25px;
    display: block;
}

.service-card h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0;
    color: #fff;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 20px;
    }
    
    .services-section {
        padding: 60px 20px;
    }
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
    padding: 100px 50px;
    justify-items: center;
    background-color: transparent;
}

.portfolio-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 1.1;
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    text-align: left;
}

.project-image {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
    background: #111;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-image:hover img {
    transform: scale(1.15);
}

/* Category Label - Matches the "ILLUSTRATION" style */
.project-category {
    color: #888;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.portfolio-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
    color: #fff;
}

.portfolio-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0;
}

.see-more-container {
    margin-top: 80px;
    text-align: center;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 20px;
    }
    
    .portfolio-section h2 {
        font-size: 1.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- ACHIEVEMENTS SECTION --- */
.achievements-section {
    padding: 100px 50px;
    justify-items: center; /* Aligning left to match the reference */
    background-color: transparent;
}

.achievements-section h2 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 80px;
    line-height: 1.1;
    color: #fff;
}

.achievements-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
}

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

/* Stat Label - Gray, spaced out, small caps */
.stat-label {
    color: #888;
    font-size: 11px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Stat Number - Large, Bold, Blue */
.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color:#FFC75C; /* Matching the blue in your reference screenshot */
    line-height: 1;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 20px;
    }
    
    .stat-number {
        font-size: 4rem;
    }
}

/* --- FOOTER SECTION --- */
.main-footer {
    
    padding: 100px 50px 40px;
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.footer-brand h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

.footer-brand p {
    color: var(--brand-gold);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-label {
    display: block;
    color: #888;
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 15px;
    margin: 8px 0;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--brand-gold);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    font-size: 18px;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 12px;
    color: #555;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 40px;
    }

    .footer-socials {
        justify-content: center;
    }
    
    .footer-brand h2 {
        font-size: 2.2rem;
    }
}


.resume-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px;
}

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

.profile-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    text-align: left;
    margin-bottom: 30px;
}

.contact-details p {
    margin: 10px 0;
    font-size: 15px;
    text-align: left;
}

.contact-details strong {
    color: var(--brand-gold); /* Using your brand gold */
}

/* Experience & Education Items */
.resume-item {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.item-header h3 {
    font-size: 22px;
    margin: 0;
}

.item-date {
    font-size: 14px;
    color: #888;
}

.item-sub {
    color: var(--brand-gold);
    font-size: 14px;
    margin-top: 5px;
    text-align: left;
}

/* Skill Bars */
.skill-bar-container {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-progress {
    height: 4px;
    background: rgba(255,255,255,0.1);
    width: 100%;
    position: relative;
}

.skill-fill {
    height: 100%;
    background: #3e84f8; /* Matches your achievement blue */
    position: absolute;
}



/* --- PORTFOLIO GRID --- */
.portfolio-filters {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--brand-gold);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    background: #111;
   
}

.portfolio-item img {
    width: 100%;
    height:100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,1.9
     
    ));
    opacity: 0;
    transition: 0.4s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay small {
    color: var(--brand-gold);
    letter-spacing: 2px;
    font-size: 10px;
}

.item-overlay h3 {
    margin-top: 5px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}


/* contact page */
.contact-section {
    padding: 100px 20px;
    background: #000;
    justify-items: center;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
    
}

.contact-info .info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 14px;
    color: var(--brand-gold); /* Using your gold theme */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    margin-bottom: 30px;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    border-bottom-color: var(--brand-gold);
}

.send-btn {
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 40px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.3s;
}

.send-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}


/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    padding: 100px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-10px);
}

.quote-icon {
    color: var(--brand-gold);
    font-size: 24px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin-bottom: 30px;
}

.client-info strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.client-info span {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
}
