/* ===========================
   Lefkara Dental & Aesthetics
   Green, Gold & Earthy Tones
   =========================== */

:root {
  --green-dark: #2C5F2D;
  --green: #3A7D44;
  --green-light: #5A9E6F;
  --green-pale: #E8F0E9;
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-pale: #F5ECD7;
  --earth: #6B4F3A;
  --earth-light: #8B7355;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --white: #FFFFFF;
  --text-dark: #2D2D2D;
  --text-body: #4A4A4A;
  --text-light: #6E6E6E;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1500px;
  /* margin: 0 auto; */
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.25rem;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
  color: var(--green-dark);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 36px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-secondary:hover {
  background-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 15px 0;
  border-bottom: 1px solid var(--gold);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 100px;
  width: auto;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold);
  background-color: var(--gold-pale);
}

/* Nav Book Today button */
.btn-nav {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-left: 8px;
}

.navbar:not(.scrolled) .btn-nav {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.navbar:not(.scrolled) .btn-nav:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.chevron {
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 400;
}

.dropdown-menu a:hover {
  background-color: var(--green-pale);
  color: var(--green-dark);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--text-dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: url('../images/home-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.08);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 95, 45, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-left: 5%;
  padding: 120px 24px 60px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: 50px;
}

.hero-content .btn {
  border-radius: 30px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

/* ===========================
   Sections
   =========================== */
.section {
  padding: 100px 0;
}

/* Welcome & Health-Aesthetics */
.welcome {
  background-color: var(--white);
}

.welcome-centered {
  text-align: center;
  margin: 0 auto;
  max-width: 850px;
}

.welcome-centered h2 {
  color: var(--green-dark);
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: 700;
}

.welcome-centered p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-body);
}

.health-aesthetics-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.ha-text-col {
  background-color: var(--cream);
  display: flex;
  align-items: center;
  padding: 80px 60px;
}

.ha-text-inner h2 {
  color: var(--green-dark);
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
}

.ha-text-inner p {
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.ha-image-col {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-grid.reverse {
  direction: rtl;
}

.welcome-grid.reverse > * {
  direction: ltr;
}

.welcome-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.welcome-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  background-color: var(--cream-dark);
}

.welcome-text h2 {
  color: var(--green-dark);
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
}

.welcome-text p {
  margin-bottom: 24px;
  font-size: 1.05rem;
}

/* ===========================
   Practice Areas
   =========================== */
.practice-areas {
  background-color: var(--white);
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.practice-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 48px 40px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.practice-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.practice-card-icon {
  color: var(--gold);
  margin-bottom: 24px;
}

.practice-card h3 {
  color: var(--green-dark);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.practice-card p {
  font-size: 0.95rem;
}

.practice-card a {
  color: var(--gold);
  font-weight: 600;
}

.practice-card a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ===========================
   Services
   =========================== */
.services {
  background-color: var(--green-dark);
}

.services .section-title {
  color: var(--white);
}

.services .section-title::after {
  background: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-bottom-color: var(--gold);
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--cream-dark);
  transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.btn-service {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}

.btn-service:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   Doctor
   =========================== */
.doctor-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.doctor-image-col {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100%;
}

.doctor-text-col {
  background-color: var(--cream);
  display: flex;
  align-items: center;
  padding: 80px 60px;
}

.doctor-text-inner h2 {
  color: var(--green-dark);
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 700;
}

.doctor-text-inner p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.doctor-text-inner .btn {
  margin-top: 12px;
}

/* ===========================
   CTA
   =========================== */
.cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--gold-light);
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .health-aesthetics-section {
    grid-template-columns: 1fr;
  }

  .ha-text-col {
    padding: 48px 24px;
  }

  .ha-text-inner h2 {
    font-size: 1.8rem;
  }

  .ha-image-col {
    min-height: 300px;
  }

  .doctor-section {
    grid-template-columns: 1fr;
  }

  .doctor-image-col {
    min-height: 300px;
  }

  .doctor-text-col {
    padding: 48px 24px;
  }

  .doctor-text-inner h2 {
    font-size: 1.8rem;
  }

  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-hover);
    transition: right 0.3s ease;
    gap: 0;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--text-dark);
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--gold);
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
    padding: 4px 0;
  }

  .dropdown-menu a {
    padding: 8px 16px;
  }

  /* Hero */
  .hero-content {
    padding: 100px 24px 60px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 64px 0;
  }

  /* Grids */
  .welcome-grid,
  .welcome-grid.reverse,
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .hero-content {
    margin-left: 0;
    margin-right: 0;
  }

  .welcome-centered h2 {
    font-size: 2rem;
  }

  .welcome-text h2 {
    font-size: 1.8rem;
  }

  .welcome-image img,
  .doctor-image img {
    height: 280px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .service-body {
    padding: 20px 16px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}
