body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

header {
  background: linear-gradient(90deg, #f2709c, #ff9472);
  color: white;
  padding: 20px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

nav h1 {
  margin: 0;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

nav a:hover {
  opacity: 0.8;
}

/* Menu icon - hidden by default */
.menu-icon {
  display: none;
  font-size: 23px;
  cursor: pointer;
  color: white;
  background: none;
  border: none;
  padding: 5px;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
      flex-wrap: wrap;
  }
  
  .menu-icon {
      display: block;
  }
  
  #nav-links {
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      order: 3;
  }
  
  #nav-links.show {
      max-height: 300px;
  }
  
  nav ul {
      flex-direction: column;
      width: 100%;
      gap: 10px;
      padding: 15px 0 0 0;
  }
  
  nav li {
      width: 100%;
  }
  
  nav a {
      display: block;
      padding: 10px 0;
      font-size: 1rem;
  }
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #000;
  color: white;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.hero-text {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
}

.section {
  padding: 40px 20px;
  text-align: center;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #f9f9f9;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.gallery img {
  border-radius: 8px;
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.review-slider {
  margin: 20px auto;
  width: 80%;
  max-width: 600px;
}

.review {
  display: none;
  font-style: italic;
  font-size: 18px;
}

.review.active {
  display: block;
}

form {
  margin-top: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  box-sizing: border-box;
}

button {
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(#f2709c, #ff9472);
  color: rgb(0, 0, 0);
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.site-footer {
  background: linear-gradient(#f2709c, #ff9472);
  color: #000000;
  padding: 3rem 5% 1rem;
  margin-top: 3rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 1rem;
  color: #000000;
}

.footer-column p {
  margin-bottom: 0.5rem;
  color: #000000;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
  margin-top: 2rem;
  color: #000000;
}
/* Scroll Animation */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Additional responsive adjustments */
@media (max-width: 992px) {
  .card {
      width: 90%;
  }
  
  .gallery img {
      width: 90%;
  }
  
  .hero-text h2 {
      font-size: 2rem;
  }
}

@media (max-width: 576px) {
  nav h1 {
      font-size: 1.3rem;
  }
  
  .card {
      width: 100%;
  }
  
  .gallery img {
      width: 100%;
  }
  
  .hero-text h2 {
      font-size: 1.5rem;
  }
  
  .hero-text p {
      font-size: 1rem;
  }
  
  .review {
      font-size: 16px;
  }
}

