/* Măcăna Che Dental — warm & reassuring */

:root{
  --cream: #fdf7f0;
  --cream-2: #f6ede0;
  --teal: #2f7a72;
  --teal-dark: #1f5952;
  --coral: #f28b6a;
  --coral-dark: #e0714e;
  --text: #3a352f;
  --text-soft: #6b6259;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(60, 45, 30, 0.08);
  font-size: 16px;
}

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

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo span, .nav-cta, .btn{
  font-family: 'Quicksand', sans-serif;
}

h1, h2, h3{
  color: var(--teal-dark);
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1{ font-size: clamp(2rem, 5vw, 3rem); line-height: 1.15; }
h2{ font-size: clamp(1.5rem, 3.5vw, 2.2rem); text-align:center; }

p{ margin: 0 0 1em; color: var(--text-soft); }

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

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

.section{ padding: 80px 0; }
.section-alt{ background: var(--cream-2); }
.section-sub{
  text-align:center;
  max-width: 640px;
  margin: 0 auto 3em;
  font-size: 1.05rem;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 247, 240, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(47,122,114,0.1);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 24px;
}
.logo{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--teal-dark);
}
.logo em{ font-style: normal; color: var(--coral); }

.main-nav{
  display:flex;
  gap: 28px;
}
.main-nav a{
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}
.main-nav a:hover{ color: var(--teal); }

.nav-cta{ white-space: nowrap; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary{
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(224, 113, 78, 0.35);
}
.btn-primary:hover{
  background: var(--coral-dark);
  transform: translateY(-2px);
}
.btn-ghost{
  background: transparent;
  border-color: var(--teal);
  color: var(--teal-dark);
}
.btn-ghost:hover{
  background: var(--teal);
  color: var(--white);
}
.btn-large{ padding: 16px 28px; font-size: 1.1rem; }

/* Hero */
.hero{ padding: 70px 0 40px; }
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items:center;
}
.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--coral-dark);
  font-size: 0.8rem;
  margin-bottom: 1em;
}
.hero-text .lead{ font-size: 1.1rem; max-width: 520px; }
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  margin: 1.5em 0;
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--teal-dark);
  font-weight: 600;
}
.hero-art{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 320px;
}
.blob{
  position:absolute;
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #cfe8e2, #f6d9c4);
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  filter: blur(2px);
}
.hero-tooth{
  position: relative;
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 12px 20px rgba(47,122,114,0.25));
}

/* Cards / services */
.grid{ display:grid; gap: 24px; }
.services-grid{ grid-template-columns: repeat(4, 1fr); }
.card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover{ transform: translateY(-4px); }
.card .icon{ font-size: 1.8rem; margin-bottom: 0.5em; }
.card h3{ font-size: 1.05rem; }
.card p{ font-size: 0.92rem; margin: 0; }

/* Team */
.team-grid{ grid-template-columns: repeat(4, 1fr); }
.team-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align:center;
  box-shadow: var(--shadow);
}
.avatar{
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  color: var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}
.team-card .role{
  color: var(--coral-dark);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.8em;
}
.team-card p:last-child{ font-size: 0.9rem; }

/* Program / booking */
.program-inner{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items:start;
}
.hours-table{
  width:100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hours-table td{
  padding: 16px 22px;
  border-bottom: 1px solid var(--cream-2);
}
.hours-table tr:last-child td{ border-bottom:none; }
.hours-table td:first-child{ font-weight: 700; color: var(--teal-dark); }
.hours-table .note{ color: var(--text-soft); font-size: 0.85rem; }
.emergency{
  background: #fdece2;
  border-left: 4px solid var(--coral);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--text);
}
.booking-box{
  background: var(--teal-dark);
  color: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align:center;
  box-shadow: var(--shadow);
}
.booking-box h3{ color: var(--white); }
.booking-box p{ color: rgba(255,255,255,0.85); }
.small-note{ font-size: 0.85rem; margin-top: 1em; }

/* Contact */
.contact-inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items:center;
}
.contact-list{
  list-style:none;
  padding:0;
  margin: 1.5em 0 0;
  display:flex;
  flex-direction:column;
  gap: 12px;
  font-size: 1rem;
}
.map-placeholder{
  background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 10px, #f0e3d2 10px, #f0e3d2 20px);
  border-radius: var(--radius);
  min-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  color: var(--teal-dark);
  box-shadow: var(--shadow);
  text-align:center;
  padding: 20px;
}

/* Floating call button */
.floating-call{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 60;
  background: var(--coral);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 20px;
  display:flex;
  align-items:center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(224,113,78,0.45);
  transition: transform 0.15s ease;
}
.floating-call:hover{ transform: scale(1.05); }

/* Footer */
.site-footer{
  background: var(--teal-dark);
  color: rgba(255,255,255,0.85);
  padding: 32px 0;
}
.footer-inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.footer-inner .logo{ color: var(--white); }
.footer-inner a{ color: var(--white); font-weight:700; }

/* Responsive */
@media (max-width: 900px){
  .services-grid, .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .program-inner, .contact-inner{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; min-height: 220px; }
  .main-nav{ display:none; }
}

@media (max-width: 560px){
  .services-grid, .team-grid{ grid-template-columns: 1fr; }
  .header-inner{ flex-wrap: wrap; }
  .nav-cta{ order: 3; width:100%; justify-content:center; }
}
