/* Import Work Sans font */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #fafaf9;
    --text-primary: #1a1a1a;
    --text-secondary: #525252;
    --accent-red: #dc2626;
    --accent-gray: #a3a3a3;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-section {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.subheadline {
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.main-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1.125rem;
}

.contact-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 500;
}

.separator {
    color: var(--accent-gray);
    font-weight: 300;
}

/* Responsive design */
@media (max-width: 968px) {
    .hero-section {
        gap: 2.5rem;
    }
    
    .headline {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }
    
    .hero-section {
        gap: 2rem;
    }
    
    .headline {
        font-size: 1.75rem;
    }
    
    .subheadline {
        font-size: 1.125rem;
    }
    
    .name {
        font-size: 1.25rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .separator {
        display: none;
    }
}
