* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #fd9644;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--white) 60%, var(--primary-color) 60%);
}

/* Navigation Styles */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 5%;
    background: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section Styles */
.hero {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 2rem;
    padding: 2rem 5%;
    min-height: calc(100vh - 73px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 7rem 0;
}

.social-links a {
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.hero-content {
    padding: 4rem 0;
}

.hero-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-content h1 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content .subtitle {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-content .description {
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.text-link {
    color: var(--text-dark);
    text-decoration: underline;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.hire-me {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hire-me:hover {
    background: #008975;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: auto 1fr;
    }
    
    .hero-image {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        background: var(--white);
    }

    .nav-links {
        display: none;
    }
    
    .hero {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "content"
            "social";
        padding-top: 4rem;
    }
    
    .hero-content {
        grid-area: content;
        text-align: center;
        padding: 0;
    }
    
    .social-links {
        grid-area: social;
        flex-direction: row;
        justify-content: center;
        padding: 0;
        margin-top: 2rem;
    }
    
    .hero-content .description {
        margin: 0 auto 2rem auto;
    }
}
