@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");

/* =========================
   PALETA KARINA PERCUSIÓN
   ========================= */
:root {
  --kp-green: #7CC43B;       /* verde suave principal */
  --kp-green-dark: #8ffd2f;  /* hover */
  --kp-dark: #222831;        /* gris muy oscuro */
  --kp-body-text: #0c0c0c;
  --kp-light: #ffffff;
}

/* =========================
   BASE
   ========================= */

body {
  font-family: "Open Sans", sans-serif;
  color: var(--kp-body-text);
  background-color: var(--kp-light);
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1,
h2 {
  font-family: "Dancing Script", cursive;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: bold;
}

.heading_container h2 span {
  color: var(--kp-green);
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: inherit;
}

.btn,
.btn:focus {
  outline: none !important;
  box-shadow: none;
}

/* Botones con efecto "subir" */
.btn1,
.user_option .order_online,
.offer_section .box .detail-box a,
.about_section .detail-box a {
  transition: transform 0.3s, background-color 0.3s;
}

.btn1:hover,
.user_option .order_online:hover,
.offer_section .box .detail-box a:hover,
.about_section .detail-box a:hover {
  transform: translateY(-5px);
}


/* =========================
   HEADER / HERO
   ========================= */

.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header_section {
  padding: 15px 0;
}

.custom_nav-container {
  padding: 0;
}

.navbar-brand {
  font-family: "Dancing Script", cursive;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 32px;
  color: var(--kp-light);
}

.custom_nav-container .navbar-nav {
  padding-left: 18%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 5px 20px;
  color: var(--kp-light);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--kp-green);
}

/* Botón principal (Inscríbete al taller) */
.user_option {
  display: flex;
  align-items: center;
}

.user_option a {
  margin: 0 10px;
}

.user_option .order_online {
  display: inline-block;
  padding: 8px 30px;
  background-color: var(--kp-green);
  color: var(--kp-dark);
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  font-weight: 600;
}

.user_option .order_online:hover {
  background-color: var(--kp-green-dark);
}

/* Toggle móvil */
.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
  transition: all 0.3s;
  outline: none;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: var(--kp-light);
  margin: 7px 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--kp-light);
  top: -10px;
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}

/* =========================
   SLIDER / HERO CONTENT
   ========================= */

.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: var(--kp-light);
  margin-bottom: 145px;
}

.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.slider_section .detail-box p {
  font-size: 14px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--kp-green);
  color: var(--kp-dark);
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  margin-top: 10px;
  font-weight: 600;
}

.slider_section .detail-box a:hover {
  background-color: var(--kp-green-dark);
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: flex-start;
  align-items: center;
}

.slider_section .carousel-indicators li {
  background-color: var(--kp-light);
  width: 12px;
  height: 12px;
  border-radius: 100%;
  opacity: 1;
}

.slider_section .carousel-indicators li.active {
  width: 20px;
  height: 20px;
  background-color: var(--kp-green);
}

/* =========================
   TALLERES (offer_section)
   ========================= */

.offer_section {
  position: relative;
  padding-top: 45px;
}

.offer_section .box {
  display: flex;
  align-items: center;
  margin-top: 45px;
  border-radius: 5px;
  padding: 20px 15px;
  background-color: var(--kp-dark);
  color: var(--kp-light);
}

.offer_section .box .img-box {
  width: 175px;
  min-width: 175px;
  height: 175px;
  margin-right: 15px;
  position: relative;
  border-radius: 100%;
  border: 5px solid var(--kp-green);
  overflow: hidden;
}

.offer_section .box .img-box img {
  width: 100%;
  transition: all 0.2s;
}

.offer_section .box .detail-box h5 {
  font-family: "Dancing Script", cursive;
  font-size: 24px;
  margin: 0;
}

.offer_section .box .detail-box h6 {
  font-family: "Dancing Script", cursive;
  margin: 10px 0;
}

.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--kp-green);
  color: var(--kp-dark);
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  font-weight: 600;
  margin-top: 10px;
}

.offer_section .box .detail-box a:hover {
  background-color: var(--kp-green-dark);
}

.box {
  transition: transform 0.3s;
}

.box:hover {
  transform: translateY(-5px);
}


/* =========================
   SOBRE KARINA (about)
   ========================= */

.about_section {
  background: var(--kp-dark);
  color: var(--kp-light);
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  display: flex;
  justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: var(--kp-green);
  color: var(--kp-dark);
  border-radius: 45px;
  transition: all 0.3s;
  border: none;
  margin-top: 15px;
  font-weight: 600;
}

.about_section .detail-box a:hover {
  background-color: var(--kp-green-dark);
}

/* =========================
   FOOTER
   ========================= */

.footer_section {
  background-color: var(--kp-dark);
  color: var(--kp-light);
  padding: 75px 0 40px 0;
  text-align: center;
}

.footer_section h4 {
  font-size: 28px;
}

.footer_section h4,
.footer_section .footer-logo {
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Dancing Script", cursive;
}

.footer_section p {
  color: #dbdbdb;
}

.footer_section .footer-col {
  margin-bottom: 30px;
}

.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 5px 0;
  color: var(--kp-light);
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 5px;
}

.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 38px;
  line-height: 1;
  color: var(--kp-light);
}

.footer_section .footer_social {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.footer_section .footer_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--kp-dark);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--kp-light);
  margin: 0 2.5px;
  font-size: 18px;
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 25px;
}

.footer_section .footer-info p {
  color: var(--kp-light);
  margin: 0;
}

.footer_section .footer-info p a {
  color: inherit;
}

/* =========================
   TALLERES PASADOS (past_workshops_section)
   ========================= */
.past_workshops_section .past_workshop_card {
  background-color: #222831;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

/* Aquí igualamos tamaño de todos los carteles */
.past_workshops_section .past_workshop_card img {
  width: 100%;
  height: 500px;      /* ajusta a tu gusto: 280–380px suele funcionar bien */
  object-fit: cover;  /* recorta manteniendo proporción */
  display: block;
}

.past_workshops_section .past_workshop_card:hover {
  transform: translateY(-5px);
}

/* =========================
   GALERÍA (gallery_section)
   ========================= */
.gallery_section .gallery_item {
  border-radius: 10px;
  overflow: hidden;
  background-color: #222831;
  transition: transform 0.3s;
}

.gallery_section .gallery_item img {
  width: 100%;
  height: 240px;       /* ajusta a tu gusto */
  object-fit: cover;
  display: block;
}

.gallery_section .gallery_item:hover {
  transform: translateY(-5px);
}
