body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  background-color: #fff;
}

/* Navigation */
.top-nav {
  background-color: #000;
  padding: 10px 20px;
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo a {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav-links li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  .nav-links.active {
    display: flex;
    margin-top: 10px;
  }
}

/* Hero Cover Image (No cropping, full image) */
.cover-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 500px;
  display: block;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .cover-image {
    max-height: 460px;
  }
}

@media (max-width: 768px) {
  .cover-image {
    max-height: 320px;
  }
}

.hero-content {
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  margin: 0;
}

.hero-content p {
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

/* Carousel */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  position: relative;
}

#hero-carousel {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
  touch-action: pan-y;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .carousel-slide {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    width: 25%;
  }
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 599px) {
  .carousel-slide {
    height: 220px;
  }

  .carousel-slide img {
    max-height: 200px;
    object-fit: contain;
  }
}

/* Arrows */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
}

.carousel-arrow {
  cursor: pointer;
  font-size: 1.5rem;
  user-select: none;
  background-color: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: #000;
}

/* Grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.grid-container.two-rows {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.grid-item {
  text-align: center;
}

.grid-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.grid-item h3 {
  margin: 10px 0 5px;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.grid-item .btn {
  margin-top: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f2f2f2;
  font-size: clamp(0.9rem, 2vw, 1rem);
}
