/* Custom styles */
.hero {
    background: black url('Background.png') no-repeat center center;
    background-size: contain;
}

/* Mobile: Keep background image at top */
@media screen and (max-width: 768px) {
    .hero {
        background-position: center top;
    }
}

.hero-body {
    padding: 1.5rem 1.5rem;
}

.hero-body .container {
    margin-top: 7em;
}

#logo {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 100px;
    height: auto;
    z-index: 100;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
}

#greeting {
    font-family: 'Bebas Neue', sans-serif;
    color: #bbb;
    font-weight: normal;
    letter-spacing: 4px;
    font-size: 3.6rem;
    margin-bottom: 1rem !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.training-box {
    background-color: rgba(20, 20, 20, 0.85);
    padding: 1rem;
    border-radius: 4px;
    height: 100%;
    transition: box-shadow 0.3s ease, border 0.3s ease, background-color 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.training-box:hover {
    background-color: rgba(20, 20, 20, 0.95);
}

.training-box.selected {
    border: 2px solid #8b9e3d;
    box-shadow: 0 0 20px rgba(139, 158, 61, 0.6), 0 0 40px rgba(139, 158, 61, 0.3);
}

.training-title {
    font-family: 'Bebas Neue', sans-serif;
    color: #bbb;
    font-size: 1.3rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.description-text {
    color: #999;
    font-size: 0.7rem;
    line-height: 1.4;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.form-heading {
    font-family: 'Bebas Neue', sans-serif;
    color: #bbb;
    font-size: 1.1rem;
    font-weight: normal;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.input {
    background-color: #2a2a2a;
    border: 1px solid #444;
    color: #999;
    height: 2rem;
    font-size: 0.85rem;
}

.input::placeholder {
    color: #666;
}

.field {
    margin-bottom: 0.5rem;
}

#submit-btn {
    background-color: #8b9e3d;
    color: white;
    font-weight: bold;
    border: none;
    height: 2rem;
    font-size: 0.85rem;
}

#submit-btn:hover {
    background-color: #9db145;
}

.mb-6 {
    margin-bottom: 0.75rem !important;
}

.mb-4 {
    margin-bottom: 0.25rem !important;
}

.toggle-label {
    font-family: 'Bebas Neue', sans-serif;
    display: block;
    color: #bbb;
    font-size: 0.95rem;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.toggle-container {
    display: flex;
    background-color: #2a2a2a;
    border-radius: 4px;
    padding: 4px;
    gap: 4px;
}

.toggle-btn {
    flex: 1;
    padding: 0.5rem 1rem;
    background-color: transparent;
    color: #666;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.toggle-btn:hover {
    color: #888;
}

.toggle-btn.active {
    background-color: #8b9e3d;
    color: white;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8b9e3d 0%, #9db145 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 1000;
    transition: bottom 0.4s ease;
}

.toast.show {
    bottom: 30px;
}

.toast-success {
    background: linear-gradient(135deg, #8b9e3d 0%, #9db145 100%);
}

.toast-error {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

