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

:root {
    /* Core Colors */
    --yellow: #FFD500;
    --black: #000000;
    --dark-gray: #121212;
    --light-gray: rgba(255, 255, 255, 0.7);
    
    /* Dimensions */
    --header-height: 160px;
    --footer-height: 160px;
    
    /* Font Sizes */
    --title-size: 32px;
    --subtitle-size: 18px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
header {
    background: var(--black);
    padding: 24px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-container {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

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

.brand-text {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
}

.nav-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.nav-subtitle {
    font-size: 18px;
    color: var(--light-gray);
    font-weight: 400;
}

/* Main Content */
main {
    flex: 1;
    margin-top: var(--header-height);
    margin-bottom: var(--footer-height);
}

.map-container {
    width: 100%;
    height: calc(100vh - var(--header-height) - var(--footer-height));
    position: relative;
}

/* Footer Styles */
footer {
    background: var(--black);
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.footer-text {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 16px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.deadline-text {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-link {
    background: var(--dark-gray);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #1a1a1a;
}

.social-link i {
    font-size: 20px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    :root {
        --header-height: 140px;
        --footer-height: 180px;
    }

    .nav-title {
        font-size: 28px;
        padding: 0 24px;
    }

    .nav-subtitle {
        font-size: 16px;
        padding: 0 32px;
    }

    footer {
        padding: 16px;
    }

    .footer-logo {
        height: 32px;
        margin-bottom: 8px;
    }

    .footer-text {
        font-size: 12px;
        padding: 0 16px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .deadline-text {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .social-links {
        flex-direction: row;
        padding: 0 16px;
        gap: 8px;
    }

    .social-link {
        padding: 10px 16px;
        font-size: 13px;
    }
} 