/* ========================================
   ALL HEALTH MEDICAL - Main Stylesheet
   Design: Dark/charcoal + cream/white sections
   Fonts: Cinzel (headings) + Lora (body) — matching GoDaddy original
   ======================================== */

:root {
  --dark: #161616;
  --dark-bg: #161616;
  --cream: #f5f0eb;
  --white: #ffffff;
  --gold: #c9a96e;
  --text-dark: #1b1b1b;
  --text-light: #dcdcdc;
  --text-muted: #a4a4a4;
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Lora', serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

/* ---- TOP BANNER ---- */
.top-banner {
  background: var(--dark);
  color: var(--gold);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}

/* ---- HEADER / NAV ---- */
.site-header {
  background: rgba(26, 26, 26, 0.95);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.nav-menu > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu > ul > li > a,
.nav-menu > ul > li > .nav-cta {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 16px;
  display: block;
  transition: color 0.2s;
}

.nav-menu > ul > li > a:hover { color: var(--gold); }

.nav-menu > ul > li > a.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 3px;
  margin-left: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}
.nav-menu > ul > li > a.nav-cta:hover {
  background: #b8943f;
  color: var(--dark) !important;
  transform: translateY(-1px);
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 1001;
  flex-direction: column;
  border-top: 2px solid var(--gold);
  list-style: none;
}
.has-dropdown:hover > .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown li a {
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--text-dark);
  display: block;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
  white-space: nowrap;
}
.dropdown li a:hover { background: var(--cream); color: var(--text-dark); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 600px;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 40%, rgba(26,26,26,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  width: 100%;
}

.hero-sidebar {
  max-width: 350px;
}

.hero-sidebar p {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.hero-phone {
  display: block;
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
}

.btn-wide { width: 100%; max-width: 500px; }

/* ---- TAGLINE BAR ---- */
.tagline-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  border-top: 1px solid #333;
}

/* ---- SECTION COMMON ---- */
section { padding: 80px 0; }

.dark-section {
  background: var(--dark-bg);
  color: var(--white);
}

h1, h2 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 { font-size: 2.2rem; margin-bottom: 40px; }
h2 { font-size: 1.8rem; margin-bottom: 40px; }
h4 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }

.divider {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-top: 12px;
}

.dark-section .divider { background: var(--gold); }

/* ---- WELCOME / VISION ---- */
.welcome { background: var(--dark); color: var(--white); }
.welcome h1 { color: var(--white); }
.welcome h4 { color: var(--white); }
.welcome p, .welcome .vision-content p { color: var(--text-light); line-height: 1.8; }
.welcome strong { color: var(--white); }

.vision-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.vision-image {
  flex: 0 0 480px;
}

.vision-image img {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.vision-text {
  flex: 1;
}

.vision-text p {
  margin-bottom: 24px;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .vision-layout { flex-direction: column; gap: 30px; }
  .vision-image { flex: none; width: 100%; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.vision-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vision-card .rounded-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

.vision-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-dark);
}

/* ---- GALLERY ---- */
.gallery-section h2 { text-align: center; }

.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.gallery-item {
  min-width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}

/* ---- PROVIDERS ---- */
.providers-section {
  background: var(--white);
  color: var(--text-dark);
}

.providers-section h2 {
  text-align: left;
  color: var(--text-dark);
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.provider-card {
  text-align: center;
}

.provider-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.provider-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: none;
  display: block;
  margin: 0 auto 16px;
}

.provider-photo:hover { transform: scale(1.05); }

.provider-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.provider-info .provider-title {
  color: var(--text-dark);
  margin-bottom: 4px;
}

/* ---- HIRING ---- */
.hiring-section {
  background: var(--white);
  padding: 60px 0;
}

.hiring-content {
  max-width: 600px;
}

.hiring-text p { font-size: 1.1rem; margin-bottom: 16px; }

.hiring-text ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 24px;
}

.hiring-text li {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* ---- INSURANCE ---- */
.insurance-section {
  background: var(--white);
  padding: 60px 0 80px;
  border-top: 1px solid #eee;
}

.insurance-section h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 32px;
  max-width: 800px;
}

.insurance-logo {
  text-align: center;
  padding: 20px;
}

.insurance-note {
  font-size: 0.9rem;
  color: var(--text-dark);
  max-width: 700px;
}

.gold { background: var(--gold); }

/* ---- SERVICE CARDS ---- */
.services-cards { padding: 60px 0; }

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--text-light);
}

.services-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 0;
}

.service-card {
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.service-card h4 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

/* ---- CONTACT / HOME VISIT ---- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 16px;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-phone {
  text-align: center;
  padding-top: 40px;
}

.contact-phone a {
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ---- LOCATIONS ---- */
.locations-section { padding: 80px 0; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.location-card h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.location-address {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* ---- SOCIAL ---- */
.social-section {
  text-align: center;
  padding: 60px 0;
}

.social-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.social-links a { opacity: 0.8; transition: opacity 0.2s; }
.social-links a:hover { opacity: 1; }

/* ---- REVIEWS CTA ---- */
.reviews-cta {
  text-align: center;
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.reviews-cta h6 {
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

/* ---- TOP DOCTORS ---- */
.top-doctors {
  text-align: center;
  background: var(--white);
  color: var(--text-dark);
  padding: 60px 0 80px;
}

.top-doctors h2 { text-align: center; color: var(--text-dark); }

.top-doctors-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.top-doctors-grid figure { text-align: center; }

.top-doctors-grid figcaption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: var(--text-muted);
  text-align: center;
  padding: 60px 24px 40px;
}

.footer-inner { max-width: 900px; margin: 0 auto; }

.copyright {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.footer-services {
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.footer-description,
.footer-locations,
.footer-cta {
  font-size: 0.8rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.footer-links {
  margin-top: 24px;
  display: flex;
  gap: 24px;
  justify-content: center;
  border-top: 1px solid #333;
  padding-top: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 16px 0;
    z-index: 1001;
  }

  .nav-menu.active { display: block; }

  .nav-menu > ul {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-menu > ul > li > a {
    padding: 12px 24px;
  }

  .nav-menu > ul > li > a.nav-cta {
    margin: 8px 24px;
    text-align: center;
    display: block;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    background: #2a2a2a;
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
  }
  .dropdown li a { color: var(--text-light); border-bottom-color: #333; padding-left: 40px; }
  .dropdown li a:hover { background: #333; color: var(--white); }
  .has-dropdown:hover > .dropdown { display: block; }

  .hero { min-height: 500px; }
  .hero-sidebar p { font-size: 0.85rem; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .providers-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .providers-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .insurance-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- PROVIDER PROFILE ---- */
.provider-hero { padding: 80px 0 60px; }
.provider-profile {
  display: flex;
  align-items: center;
  gap: 48px;
}
.provider-photo-large {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e8e0d8;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  flex-shrink: 0;
}
.provider-details h1 { color: var(--white); }
.provider-role { color: var(--text-light); font-size: 1.1rem; margin-bottom: 8px; }
.provider-specialty { color: var(--text-muted); font-size: 1rem; }
.provider-extra { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }
.provider-bio { padding: 60px 0; }
.provider-bio p { font-size: 1rem; line-height: 1.8; margin-bottom: 16px; max-width: 800px; }

@media (max-width: 768px) {
  .provider-profile { flex-direction: column; text-align: center; gap: 24px; }
  .provider-photo-large { width: 200px; height: 200px; }
}

/* ---- SERVICES LIST ---- */
.services-hero { padding: 80px 0 40px; }
.services-list { padding: 40px 0 80px; }
.service-detail-card {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}
.service-detail-card:nth-child(even) { flex-direction: row-reverse; }
.service-detail-image { flex: 0 0 300px; }
.service-detail-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.service-detail-content { flex: 1; }
.service-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-detail-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.service-detail-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}
.service-detail-content li {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .service-detail-card, .service-detail-card:nth-child(even) { flex-direction: column; }
  .service-detail-image { flex: none; width: 100%; }
}

/* ---- ABOUT SECTION ---- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 48px;
}
.about-card {
  background: var(--dark-bg, #111);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 28px;
  transition: border-color 0.2s;
}
.about-card:hover {
  border-color: rgba(255,255,255,0.2);
}
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.about-card h3 a {
  color: var(--white);
  text-decoration: none;
}
.about-card h3 a:hover {
  color: var(--accent, #c9a96e);
}
.about-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-card .btn {
  font-size: 0.75rem;
  padding: 8px 20px;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .about-grid { grid-template-columns: 1fr; }
}
