/* Custom Styles for drojoseroura template */

:root {
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-dark: #212529;

    /* Custom Medical Colors */
    --medical-blue: #0077b6;
    --medical-light-blue: #caf0f8;
    --medical-teal: #00afb9;
    --medical-bg-light: #f8f9fa;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: #495057;
    line-height: 1.6;
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    color: #495057;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bs-primary);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-image-placeholder {
    width: 400px;
    height: 400px;
    border: 5px solid white;
}

/* Soft Backgrounds for Icons */
.bg-soft-primary {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-soft-success {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-soft-info {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

/* Cards */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking Card */
.booking-card {
    border-radius: 1rem;
    overflow: hidden;
}

.booking-card .card-header {
    background-color: var(--medical-blue) !important;
}

.btn-primary {
    background-color: var(--medical-blue);
    border-color: var(--medical-blue);
}

.btn-primary:hover {
    background-color: #023e8a;
    border-color: #023e8a;
}
