/* Reset and base styles */

/* Font Face Declarations */
@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayRoman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayRomanItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayLight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayLightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayMediu.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayMediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayBoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayBlack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Neue Haas Grotesk';
    src: url('../images/fonts/NeueHaasDisplayBlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

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

body {
    font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #141414;
    background-color: #F4F0EB;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0 60px 0;
    border-bottom: 1px solid #939597;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 72px;
    width: auto;
    max-width: 180px;
}

.tagline {
    font-size: 1.2rem;
    color: #939597;
    font-weight: 400;
    text-transform: lowercase;
}

/* Main content */
.main-content {
    flex: 1;
    padding: 60px 0;
}

/* Hero section */
.hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #141414;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #939597;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #141414;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Vision and Mission */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.vision, .mission {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(20, 20, 20, 0.05);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #141414;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1rem;
    color: #141414;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 100px 0 60px 0;
}

.cta-button {
    display: inline-block;
    background-color: #FF7800;
    color: #FFFFFF;
    padding: 20px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 120, 0, 0.2);
}

.cta-button:hover {
    background-color: #e66a00;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 120, 0, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #939597;
    color: #939597;
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 30px 0 40px 0;
    }
    
    .logo {
        height: 54px;
        max-width: 135px;
    }
    
    .hero {
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .vision, .mission {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .section-text {
        font-size: 0.95rem;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .cta-section {
        margin: 60px 0 40px 0;
    }
    
    .cta-button {
        padding: 18px 36px;
        font-size: 1.15rem;
        display: block;
        margin: 0 auto;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 25px 0 30px 0;
    }
    
    .logo {
        height: 45px;
        max-width: 108px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .hero {
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .vision-mission {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .vision, .mission {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-text {
        font-size: 0.9rem;
    }
    
    .cta-section {
        margin: 50px 0 30px 0;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1.05rem;
        width: 100%;
    }
    
    .footer {
        padding: 30px 0;
        font-size: 0.85rem;
    }
}
