/* Theme Park Quiz Custom Styles */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Hero Section */
.min-vh-75 {
    min-height: 75vh;
}

.hero-image {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 1rem;
}

/* Cards */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Forms */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Buttons */
.btn {
    font-weight: 500;
}

/* Footer */
footer {
    margin-top: auto;
}

footer a:hover {
    text-decoration: underline !important;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 0.5rem;
}

/* Dashboard Stats */
.list-unstyled li {
    padding: 0.75rem 0;
}

/* Password Validation */
.password-requirements {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.requirement-item {
    padding: 0.125rem 0;
    transition: color 0.2s ease;
}

.requirement-item i {
    width: 1rem;
    display: inline-block;
}

.password-match {
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

/* Valid/Invalid input styling */
.form-control.is-valid {
    border-color: var(--success-color);
    background-image: none;
}

.form-control.is-invalid {
    background-image: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }
}
