/* Neue Haas Grotesk Display Font */
@font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('../fonts/NeueHaasGroteskDisplay-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Haas Grotesk Display';
    src: url('../fonts/NeueHaasGroteskDisplay-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* Import Inter as fallback */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
    --background-color: #FF502C;
    --primary-color: #000000;
    --button-color: #D9D9D9;
    --font-family: 'Neue Haas Grotesk Display', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--primary-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100vh;
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 40px;
}

.logo {
    position: absolute;
    top: 40px;
    left: 80px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0 80px;
}

.content {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
}

.hero-image img {
    max-width: 80%;
    max-height: 45vh;
    object-fit: contain;
    width: auto;
}

.brand {
    font-size: 4.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1;
}

.tagline {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.tagline p {
    margin: 0;
}

.cta-button {
    background-color: var(--button-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-family);
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: #c5c5c5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 20px;
    }
    
    .main-content {
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 0 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-height: 35vh;
        max-width: 70%;
    }
    
    .logo {
        top: 20px;
        left: 40px;
    }
    
    .logo img {
        height: 36px;
    }
    
    .brand {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 10px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 8px 24px;
        font-size: 0.95rem;
    }
}