/* Hero Section Styles */
.hero {
  background: var(--color-primary-main);
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-container {
  /* max-width: 1400px; */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 60px;
  position: relative;
  width: 100%;
}

.hero-logo {
    position: absolute;
    height: auto;
    width: 100%;
    max-width: 1278px;
    /* top: -357px; */
    top: -415px;
    left: -442px;
    max-height: 1059px;
    pointer-events: none;
}

/* Content Section */
.hero-content {
  color: var(--color-white);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 70px;
  justify-content: space-between;
  
}

.hero-text {
  margin-bottom: 40px;
}

.hero-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-white);
  margin-bottom: 0;
  width: 100%;
  max-width: 600px;
  position: sticky;
  z-index: 2;
      padding-left: 50px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
}

.hero-description {
  max-width: 480px;
}
.hero-description span {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin-bottom: 8px;
  display: block;
}
.hero-description p {
  font-size: 20px;
  line-height: var(--line-height-base);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hero-cta {
  margin-top: 10px;
}

.hero-btn {
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--color-white);
  color: var(--color-white);
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  text-transform: none;
}

.hero-btn:hover {
  border-bottom: 2px solid var(--color-secondary-main);
  color: var(--color-primary-main);
  background-color: var(--color-secondary-main);
  transform: translateY(-2px);
  border-radius: 100px;
}
.hero-btn a:hover {
  text-decoration: none;
  color: var(--color-primary-main);

}

.btn-text {
  display: inline-block;
}

/* Mobile Responsive Design */
@media (max-width: 1200px) {
  .hero-logo {
    display: none;
  }

  .hero-content {
    gap: 50px;
  }

  .hero-title {
    font-size: 2.5rem;
    padding: 0;
  }

  .hero-description p {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 90vh;
    max-height: none;
    padding: 60px 0;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-description {
    max-width: 420px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
    margin: 0 auto;
  }

  .hero-description {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-info {
    align-items: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 60vh;
    height: auto;
  }
  .hero-container {
    padding: 0 20px;
    position: relative;
  }

  .hero-logo {
    position: absolute;
    top: 300px;
    left: -205px;
    max-height: 300px;
    display: flex;
    height: auto;
    width: 100%;
    /* filter: brightness(0.3); */
    rotate: 133deg;        opacity: 0.2;
  }

  .hero-content {
    gap: 25px;
  }

  .hero-description p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-description p {
    font-size: 1rem;
  }

  .hero-info {
    gap: 20px;
  }

  .hero-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
