/* Fuente base */
body {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  background-color: #000;
  color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Remove old header styles since we're using the navbar component */

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 20px;
}

.divider {
  width: 60%;
  height: 2px;
  background-color: #D69F50;
  margin: 30px auto;
}

.subheading {
  color: #D69F50;
  font-weight: 500;
  margin-bottom: 40px;
}

.btn {
  background-color: #D69F50;
  color: #000;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn:hover {
  background-color: #D29238;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(214, 159, 80, 0.3);
}

.hero canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

* {
  box-sizing: border-box;
}

.kluster-section {
  display: flex;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  font-family: 'Archivo', sans-serif;
}

.kluster-image {
  flex: 1;
  background: url('../img/2.jpg') center center / cover no-repeat;
  filter: brightness(0.9);
}

.kluster-content {
  flex: 1;
  background-color: white;
  display: flex;
  align-items: center;
  padding: 0 4vw;
  position: relative;
}

.vertical-line {
  width: 2px;
  height: 60%;
  background-color: #D29238;
  margin-right: 2rem;
}

.kluster-text {
  color: #606060;
  max-width: 600px;
}

.kluster-text h2 {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  margin: 0 0 2rem 0;
}

.kluster-link {
  color: #D29238;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.kluster-link:hover {
  color: #D69F50;
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .kluster-section {
    flex-direction: column;
    height: auto;
  }
  
  .kluster-image {
    height: 50vh;
  }
  
  .kluster-content {
    padding: 2rem;
  }
  
  .vertical-line {
    display: none;
  }
  
  .kluster-text h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 0 15px;
  }
  
  .kluster-content {
    padding: 1.5rem;
  }
  
  .kluster-text h2 {
    font-size: 1.3rem;
  }
}}