@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Inter:wght@300;400;500&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #2a2a2a;
}

header {
  padding: 24px 60px;
}

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

.logo a {
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  color: #1a1a1a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c46a86;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.92) 0%,
      rgba(240,230,235,0.85) 35%,
      rgba(220,180,195,0.60) 100%
    ),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-content {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
}

.hero-text {
  position: relative;
  max-width: 620px;
  margin-left: 8%;
  animation: fadeUp 1s ease forwards;
}

.hero-text::before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c46a86;
  margin-bottom: 28px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 32px;
  color: #1f1f1f;
}

.hero-text h1 span {
  color: #c46a86;
}

.hero-text p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-text strong {
  font-weight: 500;
  color: #1a1a1a;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c46a86;
  margin-bottom: 16px;
  display: inline-block;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.split ul {
  list-style: none;
  padding-left: 0;
}

.split li {
  margin-bottom: 10px;
  color: #444444;
}

.buttons {
  display: flex;
  gap: 18px;
}

.btn {
  padding: 12px 28px;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #c46a86;
  color: #ffffff;
}

.btn.secondary {
  border: 1px solid #888888;
  color: #333333;
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(196,106,134,0.45);
}

.btn.secondary:hover {
  border-color: #c46a86;
  color: #c46a86;
}

.contact-icons {
  display: flex;
  gap: 22px;
  margin-top: 28px;
}

.contact-icons a {
  font-size: 1.4rem;
  color: #c46a86;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icons a:hover {
  transform: translateY(-4px);
  color: #a8566f;
}

footer.footer {
  background: transparent;
  padding: 16px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.footer-content p {
  font-size: 0.85rem;
  color: #3a3a3a;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #c46a86;
}

.footer-links a:hover {
  text-decoration: underline;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  header {
    padding: 24px;
  }

  .hero-content {
    justify-content: center;
  }

  .hero-text {
    margin-left: 0;
    text-align: center;
  }

  .hero-text::before {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

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

  .buttons {
    justify-content: center;
  }
}
