:root {
  --font-body: 0.9rem;
}

html {
  font-size: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--font-body);
  line-height: 1.65;
  color: #4a4a4a;
  margin: 0;
  padding: 0;
}

.navbar {
  padding: 0;
  background: transparent;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-light .navbar-nav .nav-link {
  color: #4d0083;
  padding: 20px 15px;
  font-size: calc(var(--font-body) * 1);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
}

.navbar-light .navbar-nav .nav-link:hover { 
  color: #f30303; 
}

.navbar-light .navbar-toggler { 
  color: #67009b; 
  border-color: #67009b; 
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  font-size: calc(var(--font-body) * 1.2444);
  line-height: 1;
}

#front-hero-slider .hero-caption-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 0 10rem;
  box-sizing: border-box;
  z-index: 10;
}

#front-hero-slider .hero-subtitle {
  margin: 0 0 5px 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#front-hero-slider .hero-title {
  margin: -15px 0 0 0;
  font-size: 5rem;
  font-weight: 800;
  color: #67009b;
  font-family: 'Poppins', sans-serif;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(242, 241, 242, 0.9);
  max-width: 800px;
}

.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  #front-hero-slider .hero-caption-custom {
    padding: 0 2rem 0 4rem;
  }
  
  #front-hero-slider .hero-subtitle {
    font-size: 1.1rem;
  }
  
  #front-hero-slider .hero-title {
    font-size: 3.5rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  #front-hero-slider .hero-caption-custom {
    padding: 0 1.5rem 0 3rem;
  }
  
  #front-hero-slider .hero-subtitle {
    font-size: 1rem;
  }
  
  #front-hero-slider .hero-title {
    font-size: 2.8rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  #front-hero-slider .hero-caption-custom {
    padding: 0 1rem 0 2.5rem;
  }
  
  #front-hero-slider .hero-subtitle {
    font-size: 0.95rem;
  }
  
  #front-hero-slider .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 360px) {
  #front-hero-slider .hero-caption-custom {
    padding: 0 0.8rem 0 2rem;
  }
  
  #front-hero-slider .hero-subtitle {
    font-size: 0.9rem;
  }
  
  #front-hero-slider .hero-title {
    font-size: 1.8rem;
  }
}

.no-js #front-hero-slider .hero-caption-custom {
  opacity: 1;
}
