* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#about, #skills, #projects, #contact-section {
    scroll-margin-top: 90px;
}

/* Navigation */
.navbar {
    background-color: #0f0f0f;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    color: #ffffff;
    text-decoration: none;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
}

.logo-icon {
    font-size: 1.8rem;
}


.nav-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffffff;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

/* Main Content */
.main-content {
    margin-left: auto;
    margin-right: auto;
    margin-top: 70px;
    padding: 2rem;
    max-width: 1400px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2a3a 0%, #0f0f0f 100%);
    border-radius: 12px;
    padding: 4rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(209, 176, 120, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e0e0e0;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.status-badge {
    display: inline-block;
    background-color: transparent;
    color: #D1B078;
    border: 1px solid #D1B078;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    transition: all 0.3s;
}

.status-badge:hover {
    background-color: #D1B078;
    color: #0f0f0f;
}

.cta-button {
    background-color: #D1B078;
    color: #0f0f0f;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: #B89A6A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 176, 120, 0.3);
}

/* General Section Styling */
.section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
}

/* About Me Section */
.about-section {
    margin-bottom: 4rem;
}

.about-card {
    background: linear-gradient(145deg, #1f1f1f, #151515);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2a2a2a;
}

/* --- PHOTO STYLE --- */
.about-photo {
    width: 170px; 
    height: 170px;
    border-radius: 50%;
    
    /* The "Frame" Effect */
    border: 1px solid rgba(209, 176, 120, 0.5);
    padding: 6px; 
    
    box-shadow: 0 0 30px rgba(209, 176, 120, 0.15); 
    
    flex-shrink: 0;
    transition: all 0.4s ease; 
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; 
}

/* Hover Effect */
.about-photo:hover {
    box-shadow: 0 0 50px rgba(209, 176, 120, 0.3); 
    border-color: #D1B078;
    transform: scale(1.02); 
}

.about-info {
    flex: 1;
}

.about-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.about-title {
    font-size: 1.2rem;
    color: #D1B078;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #b0b0b0;
    font-weight: 400;
}

.about-toolkit h3,
.project-highlights h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.skills-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid #333; 
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tag i {
    color: #D1B078;
    font-size: 1rem;
}

.skill-tag:hover {
    border-color: #D1B078;
    background: rgba(209, 176, 120, 0.1);
    color: #fff;
    transform: translateY(-3px);
}

.project-highlights p {
    color: #888;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.genre-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    padding: 2rem 1.5rem;
    transition: all 0.3s;
    cursor: default;;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.genre-card:hover {
    transform: translateY(-8px);
    border-color: #D1B078;
    background: linear-gradient(145deg, #D1B078, #B89A6A);
    color: #0f0f0f;
    box-shadow: 0 15px 40px rgba(209, 176, 120, 0.3);
}


.contact-cta-section {
    background: rgba(42, 42, 42, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(209, 176, 120, 0.2);
    
    border-radius: 12px;
    padding: 4rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-cta-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.contact-buttons-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contact-cta-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background-color: #D1B078;
    color: #0f0f0f;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(209, 176, 120, 0.4);
}

.contact-cta-button:hover {
    background-color: #B89A6A;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(209, 176, 120, 0.6);
}

.contact-cta-button .link-icon {
    font-size: 1.4rem;
    color: #0f0f0f;
}


/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    color: #666;
    font-size: 0.85rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
        
    .navbar {
        padding: 1rem 1rem;
    }

    .logo {
        font-size: 1rem;
        gap: 0.3rem;
    }

    .nav-link {
        font-size: 0.8rem;
        letter-spacing: 0.2px;
    }

    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .nav-right {
        margin-left: auto;
        gap: 0.75rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-header {
        flex-direction: column;
        text-align: center;
    }

    .status-badge {
        margin-top: 1rem;
    }
    
    .about-name {
        font-size: 1.5rem;
    }
    
    .skills-list,
    .test-scenarios {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-section {
        padding: 2rem 1rem;
    }

    .contact-cta-title {
        font-size: 1.8rem;
    }

    .contact-cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .contact-buttons-group {
        flex-direction: column;
    }

    .contact-cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}