/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #050505;
    color: #e0e0e0;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.hit-me-up {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

.hit-me-up:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, #151515 0%, #050505 100%);
}

.hero-img {
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 800px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.about-text {
    color: #aaaaaa;
    max-width: 700px;
    line-height: 1.6;
    font-size: 1.1rem;
}

section {
    padding: 80px 50px;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.projects-grid, .tech-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card, .tech-card, .service-card {
    background: rgba(20, 20, 20, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border 0.3s ease;
}

.project-card:hover, .tech-card:hover, .service-card:hover {
    transform: translateY(-5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.project-card h3, .tech-card h3, .service-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.project-card p, .tech-info p, .service-card p {
    color: #999999;
    line-height: 1.5;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.footer-info p {
    color: #777777;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-info a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #ffffff;
}

.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

button:hover {
    filter: brightness(1.2);
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 50px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
}