/* Base Reset and Theme */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #faf8f5;
  color: #4e433f;
  line-height: 1.6;
}

/* Navigation */
nav {
  background-color: #fdfaf6;
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

nav a {
  color: #7a6c5d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: color 0.3s;
}

nav a:hover {
  color: #a8907c;
}

nav a::after {
  content: "";
  display: block;
  height: 2px;
  background: #d3c4b6;
  width: 0;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom right, #d3c4b6, #f9f6f2);
  color: #4e433f;
  text-align: center;
  padding: 5rem 1rem 4rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-content h2 {
  margin-bottom: 2.5rem;
  color: #7a6c5d;
  font-size: 2rem;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #6f5d55;
}

.btn {
  background-color: #d6bfa8;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
  border: none;
}

.btn:hover {
  background-color: #bda68e;
}

/* Highlights Section */
.highlights {
 /* background: linear-gradient(to bottom right, #d3c4b6, #f9f6f2);*/
  padding: 4rem 1rem;
  background-color: #fdfaf6;
  text-align: center;
}

.highlights h2 {
  margin-bottom: 2.5rem;
  color: #7a6c5d;
  font-size: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e5ded9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.feature h3 {
  margin-bottom: 0.5rem;
  color: #a8907c;
}

.feature p {
  color: #5f5246;
}

/* Footer */
footer {
  background-color: #f0ece8;
  text-align: center;
  padding: 2rem 1rem;
  color: #7a6c5d;
  font-size: 0.9rem;
}

/* Form Styling */
form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: #ffffff;
  border: 1px solid #e5ded9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #6f5d55;
}

form input,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #d6ccc2;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fdfbf8;
}

form button {
  background-color: #d6bfa8;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background-color: #bda68e;
}

/* Wave Divider */
.wave-divider {
  position: relative;
  margin-top: -1rem;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}
/* Page fade-in animation */
.page-enter {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.page-enter-active {
  opacity: 1;
  transform: translateY(0);
}
