/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-color: #ffffff;
    --dark-gray: #333333;
    --font-family: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--primary-color);
}

/* Ensure all text elements use the standard font */
p, span, a, div, li, input, textarea, button {
    font-family: var(--font-family);
}

/* Preserve any specific title fonts if needed */
.title-font {
    font-family: var(--font-family);
}

.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color) !important;
}

.nav-link {
    font-size: 1.1rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    color: var(--accent-color) !important;
}

.nav-link:hover {
    opacity: 0.8;
}

.hero-section {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/static/images/mountain.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 12rem 0 8rem;
    text-align: center;
    position: relative;
}

.hero-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 0.9;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 7rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 8rem;
    }
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.btn-primary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.bg-dark {
    background-color: var(--secondary-color) !important;
}

h6.text-uppercase {
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 600;
}

.partner-logo {
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.footer {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    padding: 3rem 0;
}

.social-links a {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        background-color: var(--primary-color);
        position: fixed;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        margin: 0.25rem 0;
        padding: 0.5rem 1rem;
    }

    .hero-section {
        padding: 8rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .btn-primary {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .partner-logo {
        padding: 1rem;
    }

    .text-4xl {
        font-family: 'Montserrat', sans-serif !important;
        letter-spacing: normal !important;
        text-transform: uppercase;
        line-height: 1;
        font-weight: 900;
        white-space: nowrap;
    }

    .group {
        touch-action: manipulation;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 0.5rem;
        padding: 0;
        min-width: auto;
        transform: scale(0.85);
    }

    .group span {
        font-family: 'Montserrat', sans-serif !important;
        letter-spacing: -0.05em !important;
        text-transform: uppercase;
        line-height: 1;
        font-weight: 900;
        padding: 0;
        margin: 0;
        font-size: 2.5rem !important;
    }

    .i-letter {
        margin-left: -0.2rem !important;
        margin-right: -0.2rem !important;
    }

    .space-x-0 > * {
        padding-left: 0;
        padding-right: 0;
        margin: 0;
    }

    .flex.items-center.space-x-0 {
        transform-origin: center;
        width: 100%;
        justify-content: center;
    }

    /* Mission cards mobile text fixes */
    .text-2xl.sm\:text-3xl {
        font-size: 1.5rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.35rem !important;
        justify-content: center !important;
    }

    .text-2xl.sm\:text-3xl span.text-orange-300,
    .text-2xl.sm\:text-3xl span.text-purple-300,
    .text-2xl.sm\:text-3xl span.text-blue-300 {
        font-size: 1.5rem !important;
        text-transform: none !important;
        font-weight: 700 !important;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .nav-link, 
    .btn-primary,
    .social-links a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-brand {
        padding: 0.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.01em;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .navbar {
        background-color: var(--primary-color);
        position: relative;
    }

    .text-4xl {
        letter-spacing: normal !important;
    }
} 