* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neo-brutalism Base */
.brutal-card {
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brutal-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #000;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    border-bottom: 3px solid #000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffde59, #00d4ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding-top: 80px;
}

.hero-container {
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #ffde59 0%, #00d4ff 25%, #ff006e 50%, #9d4edd 75%, #ffde59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: #ffde59;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tag {
    background: #000;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    border: 2px solid #fff;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border: 3px solid #000;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
}

.cta-button:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
    background: #fff;
    color: #000;
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffde59, #00d4ff);
}

/* About Section */
.about {
    padding: 120px 0;
    background: #fafafa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.profile-card {
    text-align: center;
}

.profile-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 3px solid #000;
    box-shadow: 8px 8px 0 #000;
}

.profile-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.profile-info p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.skills-grid .skill-card {
    padding: 2.5rem 1.5rem;
}

.skill-card {
    padding: 2rem;
    text-align: center;
    font-family: 'Space Mono', monospace;
}

.skill-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.skill-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.skill-card.cyan { background: #00d4ff; color: #000; }
.skill-card.yellow { background: #ffde59; color: #000; }
.skill-card.pink { background: #ff006e; color: #fff; }
.skill-card.purple { background: #9d4edd; color: #fff; }

/* Projects Section */
.projects {
    padding: 120px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.project-card {
    background: #fff;
    overflow: hidden;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.project-link:hover {
    transform: translateY(-3px);
    box-shadow: 4px 4px 0 #000;
}

.project-link.demo { background: #00d4ff; }
.project-link.github { background: #ffde59; }

.project-card h3 {
    padding: 1.5rem 2rem 1rem;
    font-size: 1.5rem;
}

.project-card p {
    padding: 0 2rem 2rem;
    color: #666;
}

.project-card.cyan .project-overlay .project-link { background: #00d4ff; color: #000; }
.project-card.yellow .project-overlay .project-link { background: #ffde59; color: #000; }
.project-card.pink .project-overlay .project-link { background: #ff006e; color: #fff; }

/* Gallery */
.gallery {
    padding: 120px 0;
    background: #fafafa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 250px;
    object-fit: cover;
    border: 3px solid #000;
    box-shadow: 6px 6px 0 #000;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 #000;
}

/* Contact */
.contact {
    padding: 120px 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    border: 3px solid #000;
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    box-shadow: 6px 6px 0 #000;
    transform: translate(-2px, -2px);
}

.submit-btn {
    width: 100%;
    padding: 1.75rem;
    background: #000;
    color: #fff;
    border: 3px solid #000;
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #000;
    background: #fff;
    color: #000;
}

.notification {
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border: 3px solid #000;
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    text-align: center;
}

.notification.success {
    background: #00d4ff;
    color: #000;
}

.notification.error {
    background: #ff006e;
    color: #fff;
}

/* Social Links */
.social-links {
    margin-bottom: 4rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.social-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    border: 3px solid #000;
    border-radius: 8px; /* Slight round for pro */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.5s;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 12px 12px 0 #000;
}

.social-card.cyan { background: #00d4ff; }
.social-card.yellow { background: #ffde59; color: #000; }
.social-card.pink { background: #ff006e; }
.social-card.purple { background: #9d4edd; }

.social-note {
    font-family: 'Space Mono', monospace;
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
    font-family: 'Space Mono', monospace;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 3px solid #000;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem 20px;
        display: block;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .profile-image img {
        width: 250px;
        height: 250px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .skill-card i {
        font-size: 2.5rem;
    }
    
    .skill-card {
        padding: 2rem 1rem;
    }
    
    .hero-tags {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .tag {
        padding: 0.75rem 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .social-card {
        width: 140px;
        height: 140px;
        font-size: 2.25rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Pro refinements */
    .brutal-card {
        box-shadow: 6px 6px 0 rgba(0,0,0,0.8);
    }
    
    .brutal-card:hover {
        box-shadow: 10px 10px 0 rgba(0,0,0,0.8);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .profile-image img {
        width: 220px;
        height: 220px;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .social-card {
        width: 120px;
        height: 120px;
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 15px;
    }
}
