:root {
    --primary-color: #1a1a1a;
    --accent-color: #c8a977;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --gradient: linear-gradient(120deg, #1a1a1a 0%, #2c2c2c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: white;
}

header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background: var(--primary-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    margin: 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 4rem;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
}

section {
    padding: 8rem 4rem;
}

#hero {
    min-height: 100vh;
    background: var(--gradient);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 0;
}

.hero-image {
    height: 100vh;
    width: 100%;
    object-fit: contain;
    background: var(--gradient);
    padding: 2rem;
}

.hero-content {
    padding: 0 4rem;
    color: white;
    text-align: left;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-card {
    background: white;
    padding: 2.5rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: block;
    color: inherit;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-decoration: none;
}

.experience-card:hover::before {
    transform: scaleY(1);
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.company {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 1.5rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.skill-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.skill-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.skill-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--light-bg);
    border-radius: 2px;
}

.contact-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.contact-button:hover {
    background: transparent;
    color: var(--primary-color);
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

footer {
    text-align: center;
    padding: 3rem;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: var(--primary-color);
        padding: 6rem 2rem 2rem;
        transition: right 0.3s ease;
    }

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

    nav ul {
        flex-direction: column;
        text-align: left;
        gap: 2rem;
    }

    nav a {
        color: white;
        font-size: 1.1rem;
    }

    nav a:hover {
        color: var(--accent-color);
    }

    #hero {
        grid-template-columns: 1fr;
        padding-top: 5rem;
    }
    
    .hero-image {
        height: auto;
        max-height: 70vh;
        width: 100%;
        padding: 2rem;
        clip-path: none;
    }
    
    .hero-content {
        padding: 2rem;
        text-align: center;
    }
    
    section {
        padding: 4rem 2rem;
    }
    
    .experience-grid,
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4a4a4a;
}

.about-text p:last-child {
    margin-bottom: 0;
} 