/* =========================================
   Generated Website CSS — Template 1
   ========================================= */
:root {
    --primary:   #ffffff;
    --secondary: #f5f5f5;
    --accent:    #0077cc;
    --text:      #333333;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--primary); }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* NAV */
#header { background: var(--primary); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.navbar { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1.5rem; }
.logo { height: 50px; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: var(--text); font-weight: 500; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

/* HERO */
.hero { position: relative; min-height: 480px; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; text-align: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.hero-content { position: relative; z-index: 1; color: #fff; padding: 2rem; }
.hero-content h1 { font-size: 2.6rem; margin-bottom: .6rem; }
.hero-content p  { font-size: 1.2rem; margin-bottom: 1.4rem; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: .7rem 1.8rem; border-radius: 4px; font-weight: 600; transition: opacity .2s; }
.btn-primary:hover { opacity: .85; text-decoration: none; }

/* SECTIONS */
.section { padding: 4rem 0; }
.section:nth-child(even) { background: var(--secondary); }
.section h2 { font-size: 2rem; margin-bottom: 1.4rem; color: var(--accent); }

/* SERVICES */
.services-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: .8rem; }
.services-list li { background: var(--primary); border-left: 4px solid var(--accent); padding: .6rem 1rem; border-radius: 2px; }

/* CLINIC IMAGES */
.clinic-img-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.clinic-img-wrap img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; }

/* HOURS */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: .5rem .8rem; border-bottom: 1px solid rgba(0,0,0,.1); text-align: left; }
.hours-table th { font-weight: 600; width: 130px; }
.after-hours { margin-top: 1.6rem; padding: 1rem; background: var(--primary); border-radius: 6px; }

/* CONTACT */
.contact-details p { margin-bottom: .6rem; font-size: 1.05rem; }
.contact-details a { color: var(--accent); }

/* POLICIES */
.policy-links { display: flex; flex-wrap: wrap; gap: .8rem; }
.policy-links a { display: inline-block; background: var(--accent); color: #fff; padding: .5rem 1.1rem; border-radius: 4px; font-size: .9rem; }

/* SOCIAL */
.social-links { display: flex; gap: 1rem; }
.social-links a { color: #fff; }

/* FOOTER */
footer { background: var(--accent); color: #fff; padding: 1.4rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .8rem; }

/* RESPONSIVE */
@media (max-width: 700px) {
    .nav-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--primary); padding: 1rem 1.5rem; box-shadow: 0 4px 8px rgba(0,0,0,.15); }
    .nav-links.open { display: flex; }
    .hero-content h1 { font-size: 1.8rem; }
    .footer-inner { flex-direction: column; text-align: center; }
}
