html {
  font-size: 16px;
  font-size: clamp(14px, 1.8vw, 18px);
}

/*=============== BASE ===============*/
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "AkiraBold", Arial, sans-serif;
  font-size: 1rem;
  background-color: black;
  color: hsl(212, 4%, 95%);
  position: relative;
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.logo {
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: clamp(80px, 12vw, 140px);
  height: auto;
  display: block;
  z-index: 1001;
  transition: transform 0.3s ease;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo:hover {
  transform: scale(1.05);
}

.header {
  text-align: center;
  padding: 8.5rem 1rem 2rem;
  font-family: "AkiraOutline";
  }
  
.header h1 {
font-size: clamp(2rem, 7vw, 3.25rem);
margin-bottom: 0.5rem;
}

/*=============== INDEX PAGE ===============*/

.index-container {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Full viewport height */
  text-align: center;
  padding: 1rem;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.index-container h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-family: "AkiraOutline", Arial, sans-serif;
}

.index-container nav a {
  display: block;
  margin: 0.75rem 0;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: hsl(0, 0%, 100%);
}

.index-container nav a:hover {
  text-decoration: underline;
}

.ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  overflow: hidden;
  white-space: nowrap;
  background-color: #4682B4;
  font-family: "AkiraBold", Arial, sans-serif;
  padding: 10px 0;
}

.ticker-wrapper {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  width: max-content;
  animation: tickerScroll 50s linear infinite;
}

.ticker-content {
  display: inline-flex;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
}

.ticker-content span {
  margin-right: 15px; /* adjust spacing */
  white-space: nowrap;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*=============== ARTISTS PAGE ===============*/

/*_____CARD STYLES____*/
.container {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.container img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.card__container {
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.card__content {
  margin-inline: 3rem;
  overflow: hidden;
  object-fit: cover;
}

.card__article {
  width: auto;
  height: auto; /* Remove after adding swiper js */
  overflow: hidden;
}

.card__image {
  position: relative;
  background-color: transparent;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.card__data {
  background-color: transparent;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.card__name {
  font-size: 1rem; /* H2 Font Size*/
  color: white;
  margin-bottom: .75rem;
  font-weight: normal;
}

.card__description {
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0rem 1rem;
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  flex-wrap: nowrap;
  justify-content: center;
  font-size: 1.25rem;
  gap: 0.5rem;
  color: white;
}

.card__description a {
  color: white;
  text-decoration: none;
}

.card__description a:visited {
  color: white;
}

.card__description a:hover {
  color: white;
}


.icon-container {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  justify-content: center;
  align-items: center;
  height: 50px;
}

/* Swiper class */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  width: initial;
  height: initial;
  font-size: 3rem;
  color: white;
  display: block;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}


.swiper-pagination-bullet {
  background-color: transparent;
  opacity: 1;
  outline: 1px solid white;
}

.swiper-pagination-bullet-active {
  background-color: white;
}

.swiper-slide {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .card__data {
    padding: 1rem;
  }
}

@media screen and (max-width: 550px) {
  .header h1 {
    font-size: 7vw;
  }
}

@media screen and (min-width: 320px) {

  .card__container {
    max-width: 500px; 
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .card__content {
    margin-inline: 3rem;
  }
}

/* For large devices */
@media screen and (min-width: 1120px) {
  .card__container {
    max-width: 1120px;
  }

  .swiper-button-prev {
    left: -1rem;
  }
  .swiper-button-next {
    right: -1rem;
  }
}

@media screen and (max-width: 1120px) {
  .card__container .swiper-wrapper {
    display: -webkit-flex; /* Safari */
    display: -ms-flexbox; /* IE */
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
  }

  .card__container .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    flex-shrink: 0;
  }

  .card__container .swiper-button-prev,
  .card__container .swiper-button-next,
  .card__container .swiper-pagination {
    display: none !important;
  }

}


/*=============== CAMPAIGN PAGE ===============*/

/* Video Slider Container */
.video-slider-container {
  position: relative; /* add this if not already set */
  max-width: 1200px;
  margin: auto;
  padding: 0rem 1rem;
}

.video-slider-container .swiper {
  width: 100%;
  height: auto;
}

.video-slider-container .swiper-slide {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0rem 2rem;
}

.video-slider-container video {
  width: 100%; /* Make the video take up the full width of the slide */
  height: auto; /* Maintain the aspect ratio */
  border-radius: 8px;
  margin-bottom: 1rem;
}

.video-slider-container h3 {
  font-size: 1.25rem;
  color: hsl(212, 4%, 95%);
  margin-top: 0.5rem;
}

.video-slider-wrapper {
  position: relative;
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  align-items: center;
  justify-content: center;
}

.video-slider-wrapper .video-swiper {
  width: 100%;
}

.swiper-slide h3{
  text-align: center;
  margin-bottom: 10px;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  pointer-events: none;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.video-slider-container {
  margin-bottom: 3rem;
}

.campaigns .swiper-button-prev,
.campaigns .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  z-index: 10;
  cursor: pointer;
}

@media screen and (max-width: 1120px) {
  .campaign-swiper {
    display: -webkit-flex; /* Safari */
    display: -ms-flexbox; /* IE */
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .campaign-swiper .swiper-wrapper {
    display: -webkit-flex; /* Safari */
    display: -ms-flexbox; /* IE */
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .campaign-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    flex-shrink: 0;
  }

  .swiper-button-prev,
  .swiper-button-next,
  .swiper-pagination {
    display: none !important;
  }
}


/*=============== CONTACT PAGE ===============*/

.contact-container {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-header h2 {
  font-size: clamp(1.25rem, 5vw, 2rem);
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 4rem;
  margin-top: 2rem;
}

.contact-options {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  gap: 7rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-box {
  text-align: center;
}

.contact-box p {
  color: white;
  margin-bottom: 3rem;
  font-family: "AkiraBold", Arial, sans-serif;
  font-weight: bold;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.contact-email-button {
  border: 1px solid white;
  background: transparent;
  color: white;
  padding: 0.75rem 1.5rem;
  margin-bottom: 4rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-email-button:hover {
  background-color: white;
  color: #000;
}

.contact-or {
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-social-icons a {
  color: white;
  margin: 0 0.5rem;
  font-size: 2rem;
  transition: color 0.3s ease;
}

.contact-social-icons a:hover {
  color: #fff;
}

.contact-question-mark img {
  height: 150px;
  width: 300px;
  object-fit: cover;
  max-width: none;
}

@media screen and (max-width: 768px) {
  .contact-options {
    display: -webkit-flex; /* Safari */
    display: -ms-flexbox; /* IE */
    flex-direction: column;
    gap: 2rem;
  }

  .contact-box {
    width: 100%;
    max-width: 300px;
  }
  
}

/*================= ABOUT US =================*/

.about-us-container {
  margin: 0 1rem;
}

.about-us-info{
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  justify-content: center;
  text-align: center;
  flex-direction: column;
  justify-self: center;
  max-width: 1120px;
  font-size: clamp(1rem, 2.8vw, 1.2rem);
  line-height: 1.6;
  padding: 0 1rem;
  margin-bottom: 3rem;
}

.stats {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 6rem);
  max-width: 1120px;
  margin-top: 50px;
  margin-inline: auto;
}

.stat {
  flex: 1 1 150px;
  min-width: 120px;
  max-width: 200px;
  text-align: center;
  margin: 1rem 0;
}

.stat-number {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: bold;
  text-shadow: 0 0 5px #4fc3f7, 0 0 10px #4fc3f7;
}

.stat-label {
  margin-top: 10px;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  letter-spacing: 1px;
}

.flag-icon {
  filter: drop-shadow(0 0 5px #4fc3f7); /* subtle glowing */
} 

.we-work-with {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.we-work-with h2 {
  font-size: clamp(1.25rem, 5vw, 2rem);
  margin-bottom: 3rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.partners-grid {
  display: -webkit-flex; /* Safari */
  display: -ms-flexbox; /* IE */
  display: flex; /* Modern browsers */
  flex-wrap: wrap;
  justify-content: center;
  justify-self: center;
  max-width: 1120px;
  gap: 2.5rem;
  padding: 0 2rem;
}

.partners-grid img {
  width: 120px;
  height: 5rem;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.partners-grid img:hover {
  transform: scale(1.1);
}

/* Responsive logos */
@media screen and (max-width: 768px) {
  .partners-grid img {
    width: 90px;
  }
}

/*=============== ENTER PAGE ===============*/

.enter-logo img {
  width: 250px;
  height: 130px;
  object-fit: cover;
}

.enter-h1 {
  font-size: 1.25rem; /* Fallback */
  font-size: clamp(2.25rem, 8vw, 4.25rem);
  font-family: "AkiraOutline", Arial, sans-serif;
  font-weight: bold;
  margin-top: 10px;
}

.enter-p {
  font-size: 1.25rem; /* Fallback */
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: 1rem;
  margin-top: 0;
  text-align: center;
  word-break: break-word;
  white-space: normal;
  padding: 0 1rem;
}

.auto-type {
  display: inline;
  word-break: break-word;
  white-space: normal;
}

.typed-cursor {
  display: inline;
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: white;
  animation: blink 1s infinite;
}

.enter-button {
  border: 1px solid white;
  background: transparent;
  color: #4682B4;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.enter-button:hover {
  background-color: #4682B4;
  border: 1px solid #4682B4;
  color: #000;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media screen and (max-width: 600px) {
  .enter-p {
    font-size: 1.1rem;
  }

  .typed-cursor {
    font-size: 1.1rem;
  }
}