/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f1eb;
    color: #333;
    margin: 0;
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;

    margin-top: 1rem;
}

/* Landing Page Styles */
#landing-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
}

.landing-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    /* Increased width to accommodate layout */
}

.section-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.section-group h3 {
    margin: 0;
    color: #444;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.divider-line {
    height: 1px;
    background-color: #ddd;
    margin: 1rem 0;
    width: 100%;
}

.instruction-text {
    margin: 0;
    font-style: italic;
    color: #666;
}

/* Application Choices Layout */
.apply-choice {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.choice-option {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.choice-label {
    font-weight: bold;
    color: #2a700aff;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.small-note {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
    text-align: left;
}

.or-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 30px;
}

.or-separator::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #ddd;
    z-index: 0;
}

.or-separator span {
    background: #f9f9f9;
    /* Match container background */
    padding: 0 10px;
    color: #555;
    font-weight: bold;
    z-index: 1;
    position: relative;
}

/* Desktop layout for choices */
@media (min-width: 600px) {
    .apply-choice {
        background: #fff;
        /* Ensure white bg */
    }

    .or-separator span {
        background: #fff;
        /* Match inner container bg */
    }
}

.landing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffffff;
    color: #333;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.landing-btn i {
    font-size: 1.3rem;
    color: #555;
    min-width: 24px;
}

.landing-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.landing-btn.primary {
    background-color: #000000;
    color: white;
    border: none;
}

.landing-btn.primary i {
    color: white;
}

.landing-btn.primary:hover {
    background-color: #333333;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #ffffff;
    border: 2px solid #000;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.radio-label:hover {
    border-color: #2a700aff;
    background: #f0f7edff;
}

.radio-label:focus {
    outline: 2px solid #2a700aff;
    outline-offset: 2px;
}

.radio-label input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: none;
}

.radio-label:has(input:checked) {
    background: #f0f7edff;
    color: #000;
    border-color: #2a700aff;
}

.radio-label:has(input:checked) input[type="radio"] {
    accent-color: black;
}

/* Header Styles */
#main-header {
    background-color: #f3f1eb;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 600px) {
    body.hide-header #main-header {
        display: none;
    }

    body.hide-header .mobile-mini-logo {
        display: block;
    }
}

.mobile-mini-logo {
    display: none;
    position: absolute;
    /* Changed to absolute relative to container */
    top: 1px;
    left: 15px;
    width: 40px;
    /* Smaller size */
    z-index: 1000;
}

.logo-image {
    height: 100px;
}

/* Main Content Container */
#main-content {
    width: 90%;
    max-width: 600px;
    margin: 2rem auto;
}

#app-view {
    width: 100%;
    box-sizing: border-box;
}

#app-view job-application-form {
    width: 100%;
}

/* Hamburger Menu */
.menu-container {
    position: absolute;
    left: 2rem;
    z-index: 1001;
}

.hamburger-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 10px;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 250px;
    height: calc(100vh - 120px);
    background-color: #ffffffdf;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    padding-top: 1rem;
    box-sizing: border-box;
}

.side-menu.open {
    transform: translateX(0);
}

.side-menu a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Validation Styles */
.review-item.missing {
    border: 2px solid #d93025;
    background-color: #fff8f7;
}

.validation-badge {
    background-color: #d93025;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-left: 10px;
    vertical-align: middle;
}