/* ---------- Global ---------- */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #fff;
  color: #111;
}

/* ---------- Section ---------- */
.discover-section {
  min-height: 100vh;
  overflow: hidden;
}

/* ---------- Left Image ---------- */
.image-container {
  height: 100vh;
  overflow: hidden;
}

.image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

/* ---------- Right Text Content ---------- */
.content {
  max-width: 500px;
}

.content h3 {
  font-size: 2.2rem;
  color: black;
}

.content h5 {
  font-size: 1rem;
  color: rgb(184, 7, 7);
}

.content p {
  font-size: 1rem;
  line-height: 1.6;
 
}

.btn-custom {
  background-color: #1fab89;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #16a085;
  color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .image-container {
    height: 300px;
  }

  .content {
    text-align: center;
    padding: 40px 20px;
  }

  .content h2 {
    font-size: 1.8rem;
  }
}
