/* Custom styles to complement Bootstrap */
:root {
    --bs-primary: #3498db;
    --bs-primary-rgb: 52, 152, 219;
    --bs-secondary: #1a365d;
    --bs-secondary-rgb: 26, 54, 93;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding-top: 60px;
    position: relative;
    overflow-x: hidden;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Adjust based on navbar height */
}

/* Section styling */
section {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Heading underline */
h2.position-relative::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--bs-primary);
}

/* Navbar customization */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--bs-secondary) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--bs-primary) !important;
}

/* Card hover effect */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Success message styling */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

/* Hero Header Styling */
#hero-header {
    position: relative;
    width: 100%;
    padding: 0;
    margin-bottom: 4rem;
}
/* 
.hero-background {
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.9), rgba(179, 229, 252, 0.9)), 
                url('/placeholder.svg?height=800&width=1600&query=doctor in white coat smiling');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.8), rgba(179, 229, 252, 0.8));
}
 */
 
.hero-background {
    background: linear-gradient(135deg, rgba(255, 200, 200, 0.9), rgba(255, 150, 150, 0.9)), 
                url('/placeholder.svg?height=800&width=1600&query=doctor in white coat smiling');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 200, 200, 0.8), rgba(255, 150, 150, 0.8));
}





.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-left {
    padding: 2rem;
}

.location-text {
    color: var(--bs-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.practice-name {
    color: var(--bs-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.hero-middle, .hero-right {
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.contact-info, .opening-hours {
    text-align: left;
}

.phone-icon, .hours-icon {
    width: 60px;
    height: 60px;
    background-color: var(--bs-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.phone-icon i, .hours-icon i {
    color: white;
    font-size: 1.8rem;
}

.phone-number, .hours-title {
    color: var(--bs-secondary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.address, .hours-text {
    color: var(--bs-secondary);
    line-height: 1.6;
}

.header-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.header-wave svg {
    width: 100%;
    height: 150px;
}

/* Footer Styling */
.footer-section {
    position: relative;
    background-color: var(--bs-primary);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-wave {
    position: absolute;
    top: -149px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 150px;
}

.footer-content {
    position: relative;
    z-index: 2;
    color: white;
}

/* Doctolib floating button */
.doctolib-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.doctolib-float .btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.doctolib-float .btn i {
    font-size: 1.5rem;
}

.doctolib-float .btn:hover {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .practice-name {
        font-size: 3rem;
    }
    
    .phone-number, .hours-title {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    .hero-background {
        min-height: auto;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .hero-left, .hero-middle, .hero-right {
        padding: 1.5rem;
        text-align: center;
    }
    
    .contact-info, .opening-hours {
        text-align: center;
    }
    
    .phone-icon, .hours-icon {
        margin: 0 auto 1rem;
    }
    
    .practice-name {
        font-size: 2.5rem;
    }
    
    .header-wave svg,
    .footer-wave svg {
        height: 100px;
    }
    
    .footer-section {
        margin-top: 4rem;
    }
    
    .footer-wave {
        top: -99px;
    }
}

@media (max-width: 576px) {
    .practice-name {
        font-size: 2rem;
    }
    
    .phone-number, .hours-title {
        font-size: 1.3rem;
    }
    
    .header-wave svg,
    .footer-wave svg {
        height: 70px;
    }
    
    .footer-wave {
        top: -69px;
    }
    
    .doctolib-float {
        bottom: 20px;
        right: 20px;
    }
    
    .doctolib-float .btn {
        width: 50px;
        height: 50px;
    }
}



.hero-background {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.9), rgba(255, 100, 100, 0.9)), 
                url('/placeholder.svg?height=800&width=1600&query=doctor in white coat smiling');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.8), rgba(255, 100, 100, 0.8));
}

.practice-name, .phone-number, .hours-title, .location-text, .address, .hours-text {
    color: white;
}

.nav-link {
    color: white !important;
}

.nav-link:hover {
    color: #ffffff !important;
}

.footer-content {
    color: white;
}

body {
    color: black;
}

.nav-link {
    color: black !important;
}

.nav-link:hover {
    color: #b2b2b2 !important;
    font-weight: 700;

}
