/* Reset and Base Styles */
:root {
    --primary-color: #005285;
    --secondary-color: #87cefa;
    --tertiary-color: #e0f2fe;
    --quaternary-color: #0d6efd;
    --quinary-color: #def2ff;
    --black-color: #333;
    --font-primary: 'Proxima Nova', 'Helvetica Neue', Arial, sans-serif;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
         url('../fonts/ProximaNova-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Semibold.woff2') format('woff2'),
         url('../fonts/ProximaNova-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
         url('../fonts/ProximaNova-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--black-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary-light {
    color: var(--primary-color-light);
}

.btn-primary-light {
    color: var(--primary-color-light);
    border-color: var(--primary-color-light);
}

.btn-primary-light:hover {
    color: white;
    background-color: var(--primary-color-light);
}
/* Header Styles */
.top-bar {
    background-color: #f8f9fa;
    padding: 10px 0;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Navigation */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-color: #e9ecef;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.search-box button {
    padding: 15px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

/* Insurance Section */
.insurance {
    padding: 60px 0;
    text-align: center;
}

.insurance-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.insurance-logos img {
    max-height: 50px;
    object-fit: contain;
}

/* Locations Section */
.locations {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.location-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

/* Specialties Section */
.specialties {
    padding: 60px 0;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.specialty-item {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.specialty-item:hover {
    transform: translateY(-5px);
    background-color: #e9ecef;
}

/* Specialties Page */
.specialties-page {
    padding: 60px 0;
}

.specialty-category {
    margin-bottom: 40px;
}

.specialty-category h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

/* Doctors Page */
.doctors-page {
    padding: 60px 0;
}

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.doctor-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.doctor-image {
    height: 200px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info {
    padding: 20px;
}

.doctor-info h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.specialty {
    color: #007bff;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Why Choose Us Page */
.why-choose-us {
    padding: 60px 0;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Navigation */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    color: #333;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .main-nav {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #eee;
    }

    .logo {
        position: relative;
        z-index: 1001;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
} 