/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color: #ffffff;
  --primary-color: #90c146;
  --secondary-color: #dc408f;
  --tertiary-color: #f6a659;
  --section-bg-color: #6dc8e7;
  --artists-bg-color: rgba(109,200,231,0.25);
  --custom-btn-bg-color: #90c146;
  --custom-btn-bg-hover-color: #6dc8e7;
  --dark-color: #191919;
  --p-color: #191919;
  --border-color: #191919;
  --btn-hover: #5a4193;
  --body-font-family: "Instrument Sans", sans-serif;
  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 14px;
  --copyright-font-size: 16px;
  --border-radius-large: 60px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;
  --font-weight-light: 400;
  --font-weight-normal: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2 {
  color: var(--primary-color);
}

h4 {
  color: var(--secondary-color);
}

h3,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3 {
  font-weight: var(--font-weight-bold);
}

h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--btn-hover);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--btn-hover);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform 0.2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 0.2s 0.1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform 0.2s 0.1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.2s;
}

.link-fx-1 .icon line {
  transition: transform 0.4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 30px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Optional shadow */
  text-decoration: none; /* Remove default link underline */
}

.whatsapp-button:hover {
  color: white;
  width: 65px;
  height: 65px;
  line-height: 65px;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-bg {
  background-color: var(--dark-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-overlay + .container {
  position: relative;
  margin: 0 auto;
}

.tab-content {
  background-color: var(--tertiary-color);
  border-radius: var(--border-radius-large);
  padding: 45px;
  align-content: center;
}

.tab-pane {
  display: contents;
  align-items: center;
}

.tab-pane-col {
  display: inline-block;
  position: relative;
  top: 0;
}

.gfm-embed {
  border-radius: 40px !important;
  position: relative;
  margin: 20px;
  padding: 20px;
}

.nav-link {
  border-radius: var(--border-radius-large);
  border: 0;
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-link:first-child {
  margin-right: 15px;
}

/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--tertiary-color);
}

/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(-p-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
}

.custom-btn:hover {
  background: var(--tertiary-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.hero-button {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 20px;
  margin-bottom: auto;
  padding: 15px 25px;
  font-size: var(--h5-font-size);
}

.hero-button-var {
  background-color: var(--secondary-color);
}

.donate-button {
  background-color: var(--secondary-color);
  margin: auto 10px;
  padding: 15px 25px;
  font-size: var(--h5-font-size);
}

/*---------------------------------------
  HERO BACKGROUND              
-----------------------------------------*/
.hero-wrap {
  z-index: -100;
}

.custom-hero {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-image: url("../images/notes-bg.jpg");
  background-position: center;
}

.navbar {
  background-color: transparent;
  z-index: 100;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.nav-logo {
  height: 50px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px 20px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease,
    -webkit-transform 300ms 350ms ease;
  top: 0;
}

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

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

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease,
    -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  height: auto;
  padding-top: 150px;
  background-image: url("../images/notes-color-bg.jpg");
  background-size: cover;
  background-position: top;
}

.hero-subsection {
  margin-bottom: 80px;
}

.hero-section small {
  color: var(--white-color);
  font-weight: var(--font-weight-light);
  margin-top: 10px;
  line-height: 20px;
  text-transform: none;
}

.hero-section .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

.hero-title {
  margin-bottom: 10px;
  line-height: 80px;
  color: white;
  font-weight: 900;
}

.text-pink {
  color: var(--secondary-color);
}

.text-green {
  color: var(--primary-color);
}

.title-divider {
  width: 10%;
  margin: 25px auto;
  border: 3px solid var(--custom-btn-bg-hover-color);
  opacity: 1;
}

.hero-subtitle {
  margin-top: 10px;
  line-height: 30px !important;
  font-size: 25px;
  text-transform: none;
}

/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: var(--white-color);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--dark-color);
  display: flex;
  align-content: flex-end;
}

.about-container {
  background-image: url("../images/sun-esterno.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  height: auto;
  border-radius: var(--border-radius-medium);
  display: grid;
  place-items: center;
}

.about-donate {
  background-image: url("../images/notes-bg.jpg");
}

.about-text-wrap {
  position: relative;
  backdrop-filter: blur(5px) saturate(180%);
  -webkit-backdrop-filter: blur(5px) saturate(180%);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: var(--border-radius-medium);
  margin: 80px auto;
  padding: 20px;
}

.about-text-icon {
  background: var(--primary-color);
  border-radius: 100%;
  font-size: var(--h3-font-size);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}

.about-text-text {
  line-height: 40px;
  text-align: center;
  font-weight: var(--font-weight-regular);
}

.services-info {
  padding-right: 80px;
}

/*---------------------------------------
  DONATE              
-----------------------------------------*/
.smalldonate-section {
  background-color: var(--white-color);
}

.donate-btn:hover {
  background-color: var(--tertiary-color);
}

.donate-container {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
}

.donate-container-square {
  display: grid;
  place-items: center;
}

.table-responsive {
  filter: drop-shadow(2px 2px 4px #606060);
}

.donate-info {
  padding-left: 80px;
}

/*---------------------------------------
  ARTISTI              
-----------------------------------------*/

.artists-section {
  background-color: var(--artists-bg-color);
  margin: 50px 0;
}

/*---------------------------------------
  SPONSORS              
-----------------------------------------*/

.sponsors-section {
  background-color: var(--white-color);
}

.sponsors-thumb {
  border-radius: var(--border-radius-medium);
  background-color: var(--dark-color);
  position: relative;
  padding: 40px;
  margin: 0 auto;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

.single-client {
  margin-bottom: 30px;
  height: 200px;
  align-content: center;
}

.sponsor-logo {
  max-height: 75%;
  max-width: 75%;
  margin: 0 auto;
  filter: saturate(0%);
  cursor: pointer;
}

.sponsor-logo:hover {
  filter: saturate(100%);
  transition: all 0.4s;
}

.sponsor-logo-important {
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  filter: saturate(0%);
  cursor: pointer;
}

.sponsor-logo-important:hover {
  filter: saturate(100%);
  transition: all 0.4s;
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background-color: var(--dark-color);
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}

.site-footer-top {
  /*  background-color: var(--secondary-color);*/
  background-image: url("../images/notes-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 30px;
  padding-bottom: 30px;
}

.site-footer-bottom {
  border-top: 1px solid #1f1c1c;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer-link,
.copyright-text,
.footer-text {
  color: var(--white-color);
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.copyright-text,
.footer-text {
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-bold);
}

.copyright-text {
  font-weight: inherit;
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--tertiary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}

.social-icon-link span:hover::before {
  animation: spinAround 2s linear infinite;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding: 50px 20px;
  }

  .navbar {
    background-image: url("../images/notes-bg.jpg");
    background-position: right;
  }

  .sticky-wrapper.is-sticky .navbar {
    background-image: url("../images/notes-bg.jpg");
    background-position: right;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .hero-section {
    padding-top: 150px;
  }

  .hero-subsection {
    margin-bottom: 10px;
  }

  .hero-title {
    line-height: 60px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .pricing-thumb {
    padding: 35px;
  }

  .schedule-table h3 {
    font-size: 22px;
  }

  .schedule-table th {
    padding: 20px;
  }

  .schedule-table tr,
  .schedule-table td {
    padding: 25px;
  }

  .ticket-section {
    padding-top: 130px;
  }

  .ticket-form {
    padding: 30px;
  }

  .services-info, .donate-info {
    padding: 0px;
  }

  .about-row {
    display: flex;
    flex-wrap: wrap-reverse;
  }

  .donate-info {
    padding-top: 40px;
  }

  .about-container {
    width: 100%;
  }

  .sponsor-logo {
    filter: saturate(100%);
  }

  .sponsor-logo:hover {
    filter: saturate(100%);
  }

  .single-client {
    margin-bottom: 5px;
    height: 200px;
    align-content: center;
  }

  .alone-client {
    margin-bottom: 5px;
    height: 400px;
    align-content: center;
  }

  .client-horizontal {
    margin-top: -50px;
    margin-bottom: -50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
}

/* Custom Carousel Styles */
.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  margin: 0 auto;
  width: 90%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
}

.carousel-slide {
  flex: 0 0 25%;
  min-width: 25%;
  padding: 0 8px;
  box-sizing: border-box;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-small);
}

.carousel-control-prev,
.carousel-control-next {
  background: rgba(0, 0, 0, 0.5);
  color: black;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-control-prev:disabled,
.carousel-control-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

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

@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.33%;
    min-width: 33.33%;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

@media (max-width: 576px) {
  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }

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

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