/* Contact App Styling */

.bg-light-primary {
    background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.hero {
    min-height: 300px;
}

.hero .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.dark-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.overlay-content {
    position: relative;
    z-index: 3;
}

.section-header__title .font-caveat {
    font-family: 'Caveat', cursive;
}

.fs-23 {
    font-size: 1.4375rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.1);
}

.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.3);
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
}

/* Animations from AOS are assumed to be available as they are in base-inner.html */
