/* Custom Styles for Dental 360° */

/* --- 1. Typography and Base --- */
body {
    font-family: 'Poppins', sans-serif; /* Use a clean, modern font */
    color: #333;
    line-height: 1.6;
}

/* Custom Primary Color (Matching the logo's purple/indigo) */
:root {
    --bs-primary: #5448C8; 
    --bs-primary-rgb: 84, 72, 200;
    --bs-dark: #212529;
}

/* --- 2. Buttons and Links --- */
.btn-primary {
    /* Subtle shadows and rounded corners for a premium feel */
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #43399F; /* Slightly darker hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Nav links - subtle purple on hover */
.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--bs-primary) !important;
}

/* --- 3. Hero and Sections --- */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f9fc; /* Light, elegant background */
}

/* --- 4. Contact Form Styling --- */
.card {
    border: none;
    border-radius: 1rem;
}

.form-control {
    border-radius: 0.5rem;
    padding: 12px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(84, 72, 200, 0.25);
}

/* --- 5. Team Photos (for about.php) --- */
.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--bs-primary);
}