body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
}






/* Basic full hero slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-bg {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideIn 1s ease forwards, breathing 12s ease-in-out infinite alternate;
}

@keyframes slideIn {
  to {
    opacity: 1;
  }
}

@keyframes breathing {
  0% { transform: scale(1); }
  100% { transform: scale(1.02); }
}

/* Center overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  z-index: 5;
}

.content-block {
  position: relative; /* key! for brackets */
  display: inline-block;
  padding: 2rem; /* optional, gives brackets space */
}

.slide-overlay h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.slide-date {
  display: inline-block;
  background: #fff;
  color: #003366;
  font-weight: bold;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  background: #FFC107;
  color: #003366;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* Swiper nav arrows, visible and clickable */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 50px;
  height: 50px;
  background: #28a745;
  border-radius: 50%;
  z-index: 10;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
}

/* Brackets */
.bracket {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 8px solid #fff;
  z-index: 6;
  opacity: 0;
}

.bracket-tl {
  top: 30%;
  left: 25%;
  border-right: none;
  border-bottom: none;
}

.bracket-tr {
  top: 30%;
  right: 25%;
  border-left: none;
  border-bottom: none;
}

.bracket-bl {
  bottom: 30%;
  left: 25%;
  border-right: none;
  border-top: none;
}

.bracket-br {
  bottom: 30%;
  right: 25%;
  border-left: none;
  border-top: none;
}

/* Animations for brackets */
.animate .bracket-tl {
  animation: bracketInTL 1s forwards;
}

.animate .bracket-tr {
  animation: bracketInTR 1s forwards;
}

.animate .bracket-bl {
  animation: bracketInBL 1s forwards;
}

.animate .bracket-br {
  animation: bracketInBR 1s forwards;
}

@keyframes bracketInTL {
  0% { transform: translate(-100px, -100px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes bracketInTR {
  0% { transform: translate(100px, -100px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes bracketInBL {
  0% { transform: translate(-100px, 100px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}

@keyframes bracketInBR {
  0% { transform: translate(100px, 100px); opacity: 0; }
  100% { transform: translate(0, 0); opacity: 1; }
}



/* 📱 Mobile Styles */
@media (max-width: 768px) {
  .slide-overlay h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0 1rem 1rem 1rem;
  }

  .slide-date {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .btn-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }

  .content-block {
    padding: 1rem;
  }

  .bracket {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .slide-overlay h1 {
    font-size: 1.4rem;
  }

  .bracket {
    display: none; /* Optional: hide brackets if they clutter small screens */
  }
}
