/* Reset default margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  overflow: hidden;
  margin-bottom: 10rem;
}

/* Hero Video */
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cover full area */
  transform: translate(-50%, -50%);
  z-index: 1;
  
}

/* Overlay for dark effect (optional) */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  /* dark overlay for readability */
  z-index: 2;
}

/* Text Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* Button */
.hero-content .btn {
  padding: 0.75rem 2rem;
  background-color: #ffd700;
  /* Gold accent */
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #e6c200;
}



/* Main layout container */
.info-section {
  background-color: #7ecaad;
  width: 100%;
  display: flex;
  gap: 40px;
  padding: 60px 5%;
  height: 50vh;
}

.info-sectioni-title {
   font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    background: black;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Image styling */
.info-image {
  width: 45%;
  max-width: 450px;
  /* optional: prevents image from shrinking too small */
  height: 100%;
  object-fit: cover;
}

/* Text section */

.info-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #555;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: center;
  }

  .info-image {
    max-width: 80%;
  }

  .info-text h2 {
    font-size: 2rem;
  }

  .info-text p {
    font-size: 1.1rem;
  }
}