/* Los Olivos Medicare - Website Theme
   Brand: Teal #1A6B5A | Red #E01E1E | Light #F4F9F8
*/

:root {
  --teal: #1A6B5A;
  --teal-dark: #134d40;
  --teal-light: #e8f4f1;
  --red: #E01E1E;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b7280;
  --border: #d1e8e2;
  --font-main: 'Inter', 'Segoe UI', sans-serif;
}

/* ── Base ── */
body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  margin: 0;
}

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

/* ── Navbar ── */
.lom-navbar {
  background: var(--white);
  border-bottom: 3px solid var(--teal);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.lom-navbar .logo img {
  height: 60px;
  width: auto;
}

.lom-nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lom-nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.lom-nav-links a:hover,
.lom-nav-links a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  text-decoration: none;
}

.lom-lang-switcher {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.lom-lang-switcher button {
  background: none;
  border: 1px solid var(--teal);
  color: var(--teal);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.lom-lang-switcher button.active,
.lom-lang-switcher button:hover {
  background: var(--teal);
  color: var(--white);
}

/* ── Hero ── */
.lom-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 5rem 2rem 4rem;
  text-align: center;
}

.lom-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lom-hero p.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-style: italic;
}

.lom-btn {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.lom-btn:hover {
  background: #c01818;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
}

.lom-btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  margin-left: 1rem;
}

.lom-btn-outline:hover {
  background: var(--white);
  color: var(--teal);
}

/* ── Sections ── */
.lom-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.lom-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lom-section-title h2 {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.lom-section-title p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.lom-divider {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ── Services Grid ── */
.lom-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.lom-service-card {
  background: var(--teal-light);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

.lom-service-card:hover {
  box-shadow: 0 6px 20px rgba(26,107,90,0.15);
  transform: translateY(-3px);
}

.lom-service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.lom-service-card h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.lom-service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Blog Cards ── */
.lom-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.lom-blog-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}

.lom-blog-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.lom-blog-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.lom-blog-card .card-body {
  padding: 1.25rem;
}

.lom-blog-card .card-tag {
  font-size: 0.75rem;
  background: var(--teal-light);
  color: var(--teal);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.lom-blog-card h3 {
  font-size: 1.05rem;
  margin: 0.5rem 0;
  color: var(--text);
  line-height: 1.4;
}

.lom-blog-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.lom-blog-card .card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Stats Bar ── */
.lom-stats {
  background: var(--teal);
  color: var(--white);
  padding: 3rem 2rem;
}

.lom-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  text-align: center;
}

.lom-stat .number {
  font-size: 2.5rem;
  font-weight: 700;
}

.lom-stat .label {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ── Footer ── */
.lom-footer {
  background: var(--teal-dark);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
}

.lom-footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.lom-footer h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--teal-light);
}

.lom-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lom-footer ul li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.lom-footer ul li a {
  color: var(--white);
  opacity: 0.85;
}

.lom-footer ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.lom-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .lom-navbar {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .lom-nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .lom-hero h1 {
    font-size: 1.8rem;
  }

  .lom-section {
    padding: 2.5rem 1rem;
  }
}
