/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
}
.hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.5;
}
.hero .position-absolute {
    z-index: 2;
    max-width: 90%;
}

/* Section Spacing */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Forms */
form .form-label {
    font-weight: 600;
}
form .form-control {
    border-radius: 0.375rem;
    min-height: 40px;
}

/* Utilities */
.text-muted {
    color: #6c757d !important;
}
.text-center {
    text-align: center !important;
}
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Toasts */
.toast {
    min-width: 250px;
    border-radius: 0.5rem;
}

/* Dark Mode Support */
[data-bs-theme="dark"] body {
    background-color: #121212;
    color: #e0e0e0;
}
[data-bs-theme="dark"] .card {
    background-color: #1e1e1e;
    border-color: #2a2a2a;
}
[data-bs-theme="dark"] .btn-outline-light {
    color: #fff;
    border-color: #ccc;
}
[data-bs-theme="dark"] .btn-outline-light:hover {
    background-color: #ccc;
    color: #000;
}
