.hero {
  height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 92px; /* Add margin to account for fixed header height */
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  z-index: 2;
}

.controls-group {
  display: flex;
  align-items: center;
  gap: 48px; /* Increase this value to spread out the buttons more */
  width: 100%; /* Make it full width */
  justify-content: center; /* Center the group */
  padding: 0 20px; /* Add some padding from screen edges */
}

.logo-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-logo {
  width: 80%;
  max-width: 600px;
  height: auto;
}

.nav-button {
  background: transparent;
  border: none;
  color: #eae4de;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  width: 48px;
  height: 48px;
}

.nav-button:hover {
  color: rgba(255, 255, 255, 0.8);
}

.nav-button.prev {
  margin-right: auto; /* Push to the left edge */
}

.nav-button.next {
  margin-left: auto; /* Push to the right edge */
}

.nav-button.menu span {
  font-size: 24px;
}

.menu-icon,
.scroll-icon {
    color: #eae4de;
}

.scroll-icon svg {
    stroke: #eae4de;
}

@media (min-width: 769px) {
  .menu-icon {
      display: none;
  }
  .scroll-icon {
      display: block !important;
  }
  
  /* New styles for desktop menu button */
  .nav-button.menu {
      width: 48px;
      height: 48px;
      border: 1px solid #eae4de;
      border-radius: 50%;
  }
  
  /* Bigger chevron */
  .scroll-icon svg {
    width: 32px;
    height: 32px;
    stroke: #eae4de;
    margin-top: 7px; /* This helps adjust the optical centering */
}

  /* Hover effect */
  .nav-button.menu:hover {
      background: rgba(255, 255, 255, 0.1);
  }
}

.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slides {
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2c2c2c;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                    var(--bg-image);
  background-size: cover;
  background-position: center 25%;
  transition: opacity 0.3s ease;
}

.carousel-slide.blue-image::before {
  background-position: center;
}

.hero-button {
  padding: 12px 32px;
  background: transparent;
  border: 2px solid #eae4de;
  color: #eae4de;
  font-size: 18px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-button.prev,
.nav-button.next {
  font-size: 36px;
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
    margin-top: 60px; /* Reduced margin for mobile */
  }
  
  .carousel-slide::before {
    --bg-image: var(--mobile-image);
  }
  
  .hero-logo {
    width: 90%;
    max-width: 400px;
  }
  
  .controls-group {
    gap: 24px; /* Reduced gap for mobile */
    padding: 0 10px;
  }
  
  .content-container {
    gap: 40px; /* Reduced gap for mobile */
  }
  
  .nav-button {
    width: 40px;
    height: 40px;
  }
  
  .nav-button.prev,
  .nav-button.next {
    font-size: 28px;
  }
}