/*
Theme Name: JobBuildr Theme
Description: Default theme for JobBuildr, a job board and career platform.
Author: First + Third
Theme URI: https://jobbuildr.com
Version: 1.0.0
Author URI: https://firstandthird.com
Text Domain: jobbuildr
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    font-family: 'Arial', sans-serif;
    background-color: #11243e;
    color: #babec5;
    display: flex;
    flex-direction: column;
    height: 100vh; /* Fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.logo {
    max-width: 500px;
    height: auto;
    margin-bottom: 0;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.logo-text span {
    color: #b1e457;
}

.logo-text sup {
    font-size: 16px;
    color: #babec5;
    display: inline-block;
    position: relative;
    top: -13px;
}

.sub-heading {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
    max-width: 600px;
    line-height: 1.6;
}

.footer {
    background-color: #0e1d32;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    margin-top: auto;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        min-height: 90vh;
    }

    .logo {
        max-width: 100%;
    }

    .logo-text {
        font-size: 3rem;
        margin-bottom: 0;
    }
    
    .sub-heading {
        font-size: 1rem;
        padding: 0;
    }
    
    .main-content {
        padding: 1rem;
        flex: 0.75;
    }
}