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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 650px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 16px;
  line-height: 1.05;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-btn,
.main-btn {
  display: inline-block;
  background: #ffd400;
  color: #111;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero-btn:hover,
.main-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
  background: #ffd400;
  transform: scale(1.1);
}

.main-content {
  background: #f5f1e8;
  color: #111;
  padding: 80px 20px;
}

.content-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.content-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: 24px 20px;
}

@media (max-width: 768px) {
  .hero-content {
    left: 6%;
    right: 6%;
    max-width: none;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .main-content {
    padding: 60px 20px;
  }
}