/* =========================
   HERO SECTION
========================= */

.carousel-item {
  min-height: 720px;
  position: relative;
}

.hero-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 40px 80px 80px 80px;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-left {
  width: 40%;
  z-index: 5;
}

.hero-title {
  color: white;
  font-size: 54px;
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 30px;
  font-family: 'Mont_Trial';
}


.hero-description, .hero-description p  {
  color: white;
  font-size: 24px;
  line-height: 1.2;
  max-width: 520px;
  margin-bottom: 35px;
  font-family: 'Mont_Trial Book';
}

.hero-button {
  background: #ffbe1a;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  padding: 10px 24px;
  text-transform: lowercase;
  transition: all .2s ease;
}

.hero-button:hover {
  background: #ffd24d;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .hero-slide {
    flex-direction: column-reverse;
    padding: 30px 20px 60px 20px;
  }
}

@media (max-width: 992px) {
  .hero-right {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .hero-left {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .hero-image {
    width: 100%;
    height: 300px;
    border-radius: 40px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .hero-description {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .hero-button {
    font-size: 16px;
  }
}

/* =========================
   RIGHT IMAGE
========================= */

.hero-right {
  width: 60%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 820px;
  height: 560px;
  object-fit: cover;
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
  overflow: hidden;
}

/* =========================
   NAVBAR
========================= */

/* .nav-item-css {
  background: #ffbe1a;
  margin-left: 3px;
  border-radius: 0;
} */

.nav-item-css {
  background: #ffbe1a;
  margin-left: 3px;
  border-radius: 0px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

/* =========================
   NAV HOVER
========================= */

/* .nav-item-css:hover {

  background: #ffc526;

  transform: translateY(-2px);

  box-shadow:
    0 12px 24px rgba(255,179,25,.22);
} */

.nav-item-css:hover {
  background: #ffc526;
  box-shadow: 0 12px 24px rgba(255,179,25,.22);
}

/* animación del link */

.nav-item-css .nav-link {
  transition: transform .22s ease, opacity .22s ease;
}

.nav-item-css:hover .nav-link {
  transform: translateY(-2px);
}

/* .nav-item-css a {
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px !important;
} */

.nav-item-css a {
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 18px !important;
  transition: opacity .22s ease, transform .22s ease;
}

/* .dropdown-menu {
  background: #ffbe1a;
  border: none;
  border-radius: 0;
} */

/* =========================
   PREMIUM DROPDOWN
========================= */

.dropdown-menu {
  background: #ffbe1a;
  border: none;
  border-radius: 22px;
  padding: 12px;
  margin-top: 12px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  animation: dropdownFade .28s cubic-bezier(.22,.61,.36,1);
}

/* =========================
   DROPDOWN ANIMATION
========================= */

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* .dropdown-item {
  color: white;
  font-weight: 500;
} */

.dropdown-item {
  color: white;
  font-weight: 600;
  border-radius: 14px;
  padding: 12px 18px;
  transition: background .22s ease, transform .22s ease, opacity .22s ease;
}

/* .dropdown-item:hover {
  background: #f5b000;
  color: white;
} */

.dropdown-item:hover {
  background: rgba(255,255,255,.16);
  color: white;
  transform: translateX(4px);
}

.navbar-toggler-icon {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  position: relative;
  background: transparent;
  border: none;
  z-index: 10001;
}

/* lineas */

.menu-toggle span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: white;
  left: 0;
  transition: all .35s ease;
}

/* posiciones */

.menu-toggle span:nth-child(1) {
  top: 10px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 34px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 22px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 22px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f58200;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all .45s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav > li {
  margin-bottom: 28px;
}

.mobile-nav > li > a {
  color: white;
  text-decoration: none;
  font-size: 42px;
  font-weight: 700;
}

.mobile-submenu {
  list-style: none;
  margin-top: 14px;
  padding: 0;
}

.mobile-submenu li {
  margin-top: 10px;
}

.mobile-submenu a {
  color: rgba(255,255,255,.8);
  font-size: 22px;
  text-decoration: none;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f58200;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform .45s ease;
  }
}

@media (max-width: 1199px) {
  .navbar-collapse.show {
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .navbar-nav {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .navbar-nav .nav-link {
    font-size: 34px !important;
    font-weight: 700;
    color: white !important;
  }
}

@media (max-width: 1199px) {
  #navbarNav {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  #navbarNav {
    display: flex !important;
  }
}

@media (min-width: 1200px) {
  .mobile-menu-overlay {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .menu-toggle {
    display: none !important;
  }
}

/* =========================
   CONTROLS
========================= */

.carousel-control-prev, .carousel-control-next {
  width: 70px;
  height: 70px;
  background: #ffbe1a;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

.carousel-control-prev, .carousel-control-next {
  opacity: 1 !important;
  transition: all .25s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.08);
  background: #ffc93c;
}

/* =========================
   INDICATORS
========================= */

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  border: none !important;
  background: white !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .hero-slide {
    flex-direction: column;
    padding: 40px 30px 80px 30px;
  }
}

@media (max-width: 992px) {
  .hero-left, .hero-right {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .hero-description {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .hero-image {
    height: 400px;
  }
}

