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

body {
  font-family: 'Montserrat', sans-serif;
  background: #f4e1d8;
  color: #ffffff;
  line-height: 1.6;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 80px;
  z-index: 1000;
  background: rgba(75, 52, 45, 0.82);
  backdrop-filter: blur(10px);
}

.logo img {
  width: 260px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

nav a:hover {
  color: #f4e1d8;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.visit-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: #ffffff;
  padding: 14px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.visit-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.book-btn,
.main-btn {
  background: white;
  color: #b78b7a;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    linear-gradient(rgba(183,139,122,0.45), rgba(183,139,122,0.45)),
    url('https://images.unsplash.com/photo-1515377905703-c4788e51af15?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 230px 80px 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(85, 54, 45, 0.75),
    rgba(183, 139, 122, 0.35),
    rgba(244, 225, 216, 0.15)
  );
  z-index: 1;
}

.hero-content {
  max-width: 650px;
  position: relative;
  z-index: 2;
  animation: softFadeUp 1s ease forwards;
}

.small-title {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 16px;
  margin-bottom: 25px;
  display: block;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 0.95;
  margin-bottom: 30px;
}

.hero-text {
  font-size: 22px;
  max-width: 550px;
  margin-bottom: 35px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.info-section,
.services,
.contact {
  padding: 120px 0;
}

.info-section {
  background: #ffffff;
  color: #444;
}

.services {
  background: #f4e1d8;
  color: #5b4037;
}

.contact {
  background: #ffffff;
  color: #444;
  text-align: center;
}

.contact a {
  color: #b78b7a;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  margin-bottom: 30px;
  color: #b78b7a;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(183,139,122,0.18);
  color: #5b4037;
  min-height: 240px;
  padding: 40px 30px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: softFadeUp 1s ease forwards;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  margin-bottom: 15px;
  color: #8f6858;
}

.card h3::before {
  content: "✦";
  display: block;
  font-size: 22px;
  margin-bottom: 14px;
  color: #b78b7a;
}

.card p {
  color: #5b4037;
}

.main-btn:hover,
.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.floating-book-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  background: #ffffff;
  color: #b78b7a;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  z-index: 9999;
  box-shadow: 0 12px 35px rgba(0,0,0,0.22);
  transition: all 0.3s ease;
}

.floating-book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.social-icons {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icons img {
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons img:hover {
  transform: translateY(-4px);
  opacity: 0.8;
}

.foot-clinic-section {
  background: #f7ede8;
  color: #4b342d;
  text-align: center;
  padding: 100px 20px;
}

.foot-clinic-section p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.8;
}

.foot-clinic-section .main-btn {
  margin-top: 20px;
}

footer {
  background: #4b342d;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px 40px;
}

footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  margin-bottom: 18px;
}

footer p {
  margin-bottom: 14px;
}

footer a {
  color: #f4e1d8;
  text-decoration: none;
}

.footer-book-btn {
  display: inline-block;
  margin: 20px 0 30px;
  background: #ffffff;
  color: #b78b7a;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.copyright {
  font-size: 13px;
  opacity: 0.75;
}

@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 768px) {
  header {
    padding: 18px 20px;
    flex-direction: column;
    gap: 15px;
  }

  .logo img {
    width: 190px;
  }

  nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .header-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .book-btn {
    display: none;
  }

  .visit-btn {
    padding: 10px 18px;
    font-size: 12px;
  }

  .hero {
    min-height: 90vh;
    padding: 220px 25px 80px;
    background-position: center top;
  }

  .small-title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  h1 {
    font-size: 48px;
    line-height: 1;
  }

  .hero-text {
    font-size: 17px;
  }

  h2 {
    font-size: 42px;
  }

  .info-section,
  .services,
  .contact {
    padding: 70px 0;
  }

  .card {
    padding: 30px 24px;
  }

  .floating-book-btn {
    left: 20px;
    right: 20px;
    text-align: center;
    bottom: 18px;
  }

  footer {
    padding-bottom: 100px;
  }
}