/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f0fdf4; /* Updated to green mist */
  color: #333;
}

/* Header & Navigation */
header {
  background-color: #2a9d8f; /* Soft emerald green */
  color: #fff;
  padding: 1rem 2rem;
}
header h1 {
  font-size: 2rem;
}
.logo-circle {
  width: 150px;
  height: 150px;
  background-color: #2a9d8f; /* Emerald green */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.05);
}

.logo-circle h1 {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 0.5rem;
}
nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #a8dadc; /* Light lime green */
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to right, #e9f5f2, #f0fdf4); /* Mint cream to green mist */
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Slider */
.slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.slider img {
  width: 100%;
  max-width: 600px;
  scroll-snap-align: center;
  margin: 0 auto;
  border-radius: 10px;
  transition: transform 0.5s ease;
}
.slider img:hover {
  transform: scale(1.05);
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 2rem auto;
}
input, textarea, button {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background-color: #2a9d8f; /* Emerald green */
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #a8dadc; /* Light lime green */
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #264653; /* Deep forest green */
  color: white;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  .hero h2 {
    font-size: 1.8rem;
  }
}
