/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Huninn:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Boldonse:opsz,wght@6..144,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:wght@400;700&display=swap');
/* Example: Add at the very top of style.css */
@font-face {
  font-family: 'PassionOne';
  src: url('fonts/Passion_One/PassionOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
/* --- PAGE BACKGROUNDS --- */
body {
  background: linear-gradient(120deg,
    #ffe29f 0%,   /* light yellow */
    #ffb6b9 15%,  /* light pink */
    #ffb6ff 30%,  /* light magenta */
    #b5d8ff 45%,  /* light blue */
    #baffc9 60%,  /* light green */
    #fff6b7 75%,  /* light gold */
    #ffd6e0 90%,  /* light rose */
    #ffe29f 100%  /* repeat yellow */
  );
  background-attachment: fixed;
  background-size: 200% 200%;
  animation: rainbowMove 18s ease-in-out infinite;
  min-height: 100vh;
  position: relative;
  color: #f5f5f5;
}

@keyframes rainbowMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* About page: Soft mint, lush green, lavender, and peach sunset */
.about-page {
  background: linear-gradient(120deg, #ffe066 0%, #ffb6d5 50%, #b57edc 100%) !important;
  color: #f5f5f5;
}

/* gallery page: Aqua, deep blue, pastel yellow, and vibrant purple-pink */
.gallery-page {
  background: linear-gradient(120deg, #43cea2 0%, #185a9d 30%, #ffe066 65%, #b57edc 100%) !important;
  color: #f5f5f5;
}

/* Salsa history page: Emerald, gold, and rich purple sunset */
.salsa-history-page {
  background: linear-gradient(120deg, #43cea2 0%, #ffe066 40%, #b57edc 80%, #ff961d 100%)
}

/* --- EVENTS PAGE THEME --- */
.events-title {
  font-family: 'PassionOne','Lilita One', 'Signika', 'Huninn', Arial, sans-serif;
  font-size: 3.5rem;
  margin: 1.5rem 0;
  text-align: center;
  color: #8364c6;
}

/* --- LESSONS PAGE UNIQUE STYLES --- */
.lessons-title {
  font-size: 5rem;
  font-family: 'Cherry Bomb One', cursive;
  font-weight: 400;
  color: #ffffff;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.5px;
  -webkit-text-stroke: 2px #080815;
  /* fallback for browsers that don't support text-stroke */
  /* text-shadow:
    2px 2px 0 #716cff,
    -2px 2px 0 #716cff,
    2px -2px 0 #716cff,
    -2px -2px 0 #716cff; */
}

.offers-row {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
}
.offer-card {
  background: #8986fe;
  border-radius: 2.2rem;
  min-width: 220px;
  max-width: 320px;
  width: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 24px #b57edc33;
  transition: transform 0.18s cubic-bezier(.4,1.3,.6,1), box-shadow 0.18s;
  cursor: pointer;
  margin: 0 0.5rem;
  padding: 1.2rem 0.5rem;
  text-decoration: none;
  color: inherit;
}
.offer-card:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px #716cffb2;
}
.offer-title {
  font-size: 2rem;
  font-family: 'Nunito', sans-serif;
  color: #ece6ef;
  margin-bottom: 0.7rem;
  font-weight: 1000;
  text-align: center;
}
.offer-main {
  font-size: 1.5rem;
  font-family: 'Nunito','Times New Roman', Times, serif;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.2rem;
  text-align: center;
}
.offer-sub {
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 900px) {
  .lessons-title {
    font-size: 2.1rem;
    margin-top: 2.2rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  .offers-row {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    flex-wrap: nowrap;
  }
  .offer-card {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
    min-height: 260px;
    padding: 1.2rem 0.5rem;
  }
  .offer-title {
    font-size: 1.2rem;
  }
  .offer-main {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  .lessons-title {
    font-size: 1.3rem;
    margin-top: 1.2rem;
    margin-bottom: 1rem;
  }
  .offer-card {
    min-height: 180px;
    padding: 0.7rem 0.2rem;
  }
  .offer-title {
    font-size: 1rem;
  }
  .offer-main {
    font-size: 0.95rem;
  }
}

body.gallery-page {
  background: linear-gradient(120deg, #fffbe6 0%, #ffe5b4 50%, #ffd6e0 100%) !important;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}
body.gallery-page::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .calendar-container iframe {
    width: 98vw;
    min-width: 0;
    max-width: 98vw;
    height: 60vw;
    min-height: 400px;
  }
  .calendar-container {
    padding: 1rem 0.2rem;
    max-width: 99vw;
  }
}
@media (max-width: 700px) {
  .events-title {
    font-size: 2.2rem;
  }
  .event-card {
    padding: 1rem 0.5rem;
    font-size: 1rem;
  }
  .calendar-container h2 {
    font-size: 1.3rem;
  }
}
/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Signika', 'Huninn', Arial, sans-serif;
}
p {
  font-family: 'Nunito', 'Signika', 'Huninn', Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
nav a {
  font-family: 'Nunito', 'Signika', 'Huninn', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
}
button,
input,
textarea {
  font-family: 'Nunito', 'Signika', 'Huninn', Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: linear-gradient(
    90deg,
    #fb87f12e 20%,
    #9751f264 60%,
    rgba(220, 139, 255, 0.433) 100%
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.1rem 0.5rem;
  min-height: 0;
  margin: 1rem auto 0 auto;
  border-radius: 1rem;
  max-width: 1400px;
  box-shadow: 0 4px 24px rgba(137,134,254,0.12);
}
header h1 {
  font-size: 5rem;
  font-weight: 700;
  margin: 3rem 0;
}
.logo1 {
  width: 110px;
  max-width: 150px;
  display: block;
  margin: .3rem 0;
  height: auto;
  vertical-align: middle;
  padding: 0;
}


nav {
  margin: 0;
  padding: 0;
  flex: 1;
  text-align: right;
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: center;
}
nav a {
  color: rgb(167, 36, 255);
  font-size:1.1rem;
  margin: 0 0.3rem;
  text-decoration: none;
  font-weight: 800;
  vertical-align: middle;
  padding: 0;
}
nav a:hover {
  color: #ffffff;
  transition: text-shadow 0.2s, color 0.2s;
}

/* --- MAIN CONTENT --- */
main {
  margin-top:0;
  padding-top:0; 
  padding: 2rem;
  text-align: center;
}

@media (max-width: 900px) {
}
.queer-salsa-sunsets,
footer {
  color: #f5f5f5;
}
.queer-salsa-sunsets a,
footer a {
  color: #ffe066;
}

/* --- FORMS --- */
input, textarea, button {
  padding: 0.5rem;
  margin: 0.5rem auto;
  width: 90%;
  max-width: 400px;
  display: block;
  font-size: 1rem;
}
button {
  background-color: #f4dfb8;
  color: rgb(34, 3, 57);
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* --- IMAGE GALLERY --- */
#photoGallery {
  width: 600px;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}
.gallery img {
  width: 800px;
  height: auto;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.faded-img {
  opacity: 0.6;
  transition: opacity 0.3s;
}
.faded-img.active,
.faded-img:hover {
  opacity: 1;
}

/* --- SWIPE GALLERY --- */
.swipe-gallery {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 850px;
  margin-top: 1px;
  overflow: hidden;
  display: block;
}
.swipe-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 2px 8px #9acbce26;
  position: absolute;
  left: 0;
  top: 0;
}
.swipe-img.active {
  display: block;
  position: relative;
  z-index: 1;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .hero-flex {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0.5rem;
    max-width: 98vw;
  }
  .hero-content {
    text-align: center;
    width: 100%;
    padding: 0 1rem;
  }
  #photoGallery {
    width: 100%;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .about-hero-blob {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 2rem;
    padding: 1.2rem 1.2rem;
  }
  .about-hero-img {
    width: 160px;
    height: 160px;
  }
  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 3.2rem;
    letter-spacing: -2px;
    top: 1.2rem;
  }
  .about-hero-text h1 {
    font-size: 2.2rem;
  }
  .gallery-title {
    font-size: 2.2rem;
  }
  .salsa-history-title {
    font-size: 2.2rem;
  }
  .footer-newsletter h2 {
    font-size: 1.5rem;
  }
  .footer-social h3 {
    font-size: 1.3rem;
  }
  .gallery-photo {
    width: 98vw;
    max-width: 98vw;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 40px 5px 30px 5px;
    border-radius: 20px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.05;
    top: 0.2rem;
    word-break: break-word;
    hyphens: auto;
    padding: 0 0.2rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 0.7rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0.7rem;
  }
  .about-hero-img {
    width: 100px;
    height: 100px;
  }
  .about-hero-text h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .about-hero-blob {
    padding: 0.7rem 0.7rem;
    border-radius: 1.2rem;
  }
  .gallery-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .salsa-history-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .footer-newsletter h2 {
    font-size: 1.1rem;
  }
  .footer-social h3 {
    font-size: 1rem;
  }
  .gallery-photo {
    width: 98vw;
    max-width: 98vw;
    border-radius: 8px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  .logo, .logo1, .logo2 {
    width: 120px;
    max-width: 60vw;
  }
}

@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 1.1rem;
    line-height: 1.15;
    word-break: break-word;
    padding: 0 0.4em;
    top: 0;
    letter-spacing: 0;
    hyphens: auto;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  .about-hero-text h1 {
    font-size: 0.9rem;
  }
  .gallery-title {
    font-size: 0.9rem;
  }
  .salsa-history-title {
    font-size: 0.9rem;
  }
  .footer-newsletter h2 {
    font-size: 0.8rem;
  }
  .footer-social h3 {
    font-size: 0.7rem;
  }
}

/* --- SPARKLE BACKGROUND --- */
#sparkle-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fdfcff;
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 8px 2px rgb(255, 255, 255), 0 0 20px 8px #b57edc55;
  animation: sparkle-fade 2s linear infinite;
}
@keyframes sparkle-fade {
  0% { opacity: 0; transform: scale(0.5);}
  10% { opacity: 1; transform: scale(1);}
  90% { opacity: 1; transform: scale(1);}
  100% { opacity: 0; transform: scale(0.5);}
}

/* --- HERO SECTION --- */
.hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto 1rem auto;
  padding: 1rem 1rem;
}
.hero-content {
  flex: 1 1 45%;
  text-align: left;
}
#photoGallery {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1rem;
}
.hero {
  background: linear-gradient(120deg, #e4d2f2 0%, #8986fe 100%);
  color: #2e0233;
  padding: 80px 20px 60px 20px;
  text-align: center;
  border-radius: 40px;
  margin-bottom: 2rem;
}
.hero-content h1 {
  font-family: 'PassionOne','lilita One','Signika',Arial, sans-serif;
  font-size: 6.8rem;
  margin-top: -1.0rem;
  margin-bottom: 1.5rem;
  line-height: 0.9;
  background: linear-gradient(90deg, #d8a0fe 0%, #8a31ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  position: relative;
  top: 2.0rem;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  margin-top: 1.4rem;
}
.cta-btn {
  background: #dbdd7d;
  color: #402e51;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s;
  margin-bottom: 2rem;
  margin-top:1.2rem;
  display: inline-block;
}
.cta-btn:hover {
  background: #b57edc;
  color: #181010;
}

/* --- VIDEO BACKGROUND --- */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 56.25vw;   /* 100vw * (9/16) for 9:16 video, fills width */
  height: 100vh;
  min-width: 100vw;
  min-height: 177.78vw; /* 100vw * (16/9) for tall screens */
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  background: #000;
}
@media (max-aspect-ratio: 9/16) {
  #bg-video {
    width: 100vw;
    height: 177.78vw; /* 100vw * (16/9) */
    min-height: 100vh;
    min-width: unset;
  }
}

/* --- SCROLLING MESSAGE --- */
.scrolling-message {
  width: 100%;
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
}
.scrolling-message span {
  font-family: 'PassionOne','Huninn', 'Signika', Arial, sans-serif;
  display: inline-block;
  font-size: 6rem;
  font-weight: 1200;
  background: linear-gradient(90deg, #ffbf8a, #b179ff, #fd96ff, #b57edc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding-right: 4rem;
  animation: scroll 18s linear infinite;
  white-space: nowrap;
  letter-spacing: -1.5px;
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Payment1.html Modal & Form Refactor */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0008;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 480px;
  width: 98vw;
  padding: 2.2em 2em;
  box-shadow: 0 4px 32px #a259ff33;
  position: relative;
  overflow-y: auto;
  max-height: 90vh;
  font-size: 0.97em;
}
.paypal-modal .modal-title {
  color: #ffe066;
  font-size: 1.5em;
  margin-bottom: 0.7em;
}
.form-row {
  display: flex;
  gap: 0.7em;
  margin-bottom: 0.7em;
}
.form-col {
  flex: 1;
}
.form-input {
  width: 100%;
  padding: 0.5em;
  border-radius: 7px;
  border: 1px solid #e0e0e0;
  font-size: 1em;
  box-sizing: border-box;
}
.form-input-full {
  margin-bottom: 0.7em;
}
.agreement-row {
  margin-bottom: 1.2em;
  font-size: 0.97em;
  color: #888;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.modal-link {
  text-decoration: underline;
  cursor: pointer;
  text-align: left;
}
.terms-link {
  color: #716cff;
}
.conduct-link {
  color: #a259ff;
}
.modal-instructions {
  background: #eaf6fa;
  padding: 0.7em;
  border-radius: 8px;
  margin-bottom: 1em;
  font-size: 1em;
  color: #444;
}
.modal-submit {
  width: 100%;
  font-size: 1.1em;
  padding: 0.6em;
  border-radius: 7px;
  border: none;
  cursor: pointer;
}
.paypal-submit {
  background: #ffe066;
  color: #222;
}
.whatsapp-invite {
  margin-top: 1.2em;
  font-size: 1em;
  color: #444;
  text-align: left;
  background: #f7f7ff;
  padding: 0.8em 0.7em 0.8em 0.7em;
  border-radius: 8px;
}
.whatsapp-link {
  color: #25d366;
  font-weight: 700;
  text-decoration: underline;
}
.payment-note {
  font-size: 0.98rem;
  color: #888;
  margin-top: 0.7em;
}
.payment-fee-note {
  font-size: 0.98rem;
  color: #716cff;
  margin-top: 0.7em;
}
.payment-fee-highlight {
  color: #e67e22;
  font-weight: 700;
}
/* --- CALENDAR CONTAINER --- */
.calendar-container {
  background: rgba(20, 12, 40, 0.85);
  border: 2px solid #ffe066;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(137,134,254,0.07);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1000px;
  text-align: center;
}
.calendar-container iframe {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background: #140c28;
}

/* --- GALLERY PAGE STYLES --- */
/* ...rest of your gallery and modal/lightbox styles remain unchanged... */

/* --- HERO BLOB SECTION --- */
.logo2 {
  width: 300px;
  max-width: 300px;
  display: block;
  margin: .3rem 0;
  height: auto;
  vertical-align: middle;
  padding: 0;
  opacity: 1 !important;
}
.about-hero-blob {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: radial-gradient(circle at 30% 30%, #9c51ff97 60%, #ec72ff81 100%);
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  padding: .9rem 1.9rem .9rem 2.9rem; /* More left padding, less right */
  margin: 2rem 0;
  box-shadow: 0 4px 32px #a259ff44;
  overflow: hidden;
  justify-content: flex-start; /* Keep items in order, but shifted right */
}
.about-hero-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 32px #a259ff55;
  /* border: 6px solid #fff; */ /* Remove or comment out this line */
}

.about-hero-text {
  color: #fff;
  max-width: 500px;
}
.about-hero-text h1 {
  font-family: 'PassionOne','Lilita One', 'Signika', 'Huninn', Arial, sans-serif;
  font-size: 3.8rem;
  margin-bottom: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 0%, #f9f9f9 40%, #c574ff 80%, #be45ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: solid;
  color: transparent;
  letter-spacing: 1px;
}
.about-hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* --- ABOUT CARDS --- */
.about-card {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  color: #601d6d;
  background: #fff;
  box-shadow: 0 2px 24px #bc8dc022;
}
.about-card-round {
  border-radius: 2rem 4rem 2rem 4rem;
  background: linear-gradient(120deg, #e09be4 0%, #f7c1ff 100%);
}
.about-card-square {
  border-radius: 1.5rem;
  background: linear-gradient(120deg, #fff 60%, #cf23feb6 100%);
}
.about-card h2 { 
  color: #a866ff77;
  margin-top: 0;
  font-size: 2.0rem;
}

/* --- WHAT WE OFFER --- */
.about-content {
  max-width: 700px;
  margin: 2rem auto;
  padding: 2rem;
  background: #c994ff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 24px #a259ff22;
  text-align: center;
}
.about-content h2 {
  color: #6f00ab;
  margin-top: 1.5rem;
  font-size: 2rem;
  font-family: 'Signika', 'Huninn', Arial, sans-serif;
}
.about-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  text-align: left;
  display: inline-block;
}
.about-list li {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  font-family: 'Signika', 'Huninn', Arial, sans-serif;
}
.about-links {
  margin-top: 2rem;
}

/* --- QUOTE --- */
blockquote {
  font-style: italic;
  font-family: 'Signika', 'Huninn', Arial, sans-serif;
  background: #5b00882a;
  border-left: 4px solid #7e20f8;
  margin: 2rem 0;
  padding: 1rem 2rem;
  border-radius: 1rem;
  color: #431160;
  font-size: 1.7rem;
}
.quote-author {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-family: 'Signika', 'Huninn', Arial, sans-serif;
  color: #fff0fb;
}

/* --- TEAM SECTION --- */
.about-team {
  margin: 2.5rem auto 2rem auto;
  max-width: 1200px;
  text-align: center;
}
.about-team h2 {
  color: #c192ff;
  max-width:1500px;
  text-align:center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.team-card {
  background: linear-gradient(120deg, #5c1a8b 0%, #ac46bc 100%);
  border-radius: 2rem 2rem 1rem 1rem;
  box-shadow: 0 2px 16px #a259ff22;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px #a35cff44;
}
.team-card h3 {
  margin: 0.5rem 0 0.5rem 0;
  color: #d5b4ff;
}
.team-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* --- BANNER --- */
.about-banner {
  background: linear-gradient(90deg, #a25bff 0%, #f7c1ff 100%);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 2rem;
  margin: 2rem 0;
}
.about-banner-wave {
  border-radius: 0 0 80% 80% / 0 0 20% 20%;
  background: linear-gradient(120deg, #9f5df6 60%, #ffe066 100%);
}
.about-banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}
.about-banner .social-icon {
    vertical-align: middle;
    margin-bottom: 0.2em;
    margin-right: 0.2em;
    margin-left: 0.2em;
    display: inline-block;
    position: relative;
    top: 0.1em;
    width: 36px;
    height: 36px;
  }
  .about-banner a {
    display: inline-block;
  }
.about-welcome-title {
  /* ...existing code... */
  /* Add a white outline for extra pop */
  -webkit-text-stroke: 2px #fff8;
}
/* --- GALLERY GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-photo {
  width: 500px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(137,134,254,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: block;
  object-fit: cover;
}
.gallery-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 24px #a259ff55;
}
/* Gallery overlay thumbnail strip */
.gallery-thumbnails-container {
  width: 100%; /* or a fixed px width if you want */
  max-width: 700px; /* adjust for 10 thumbnails */
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin: 0 auto;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Each thumbnail */
.gallery-thumbnail {
  display: inline-block;
  width: 60px;   /* adjust as needed for 10 to fit */
  height: 60px;
  object-fit: cover;
  margin-right: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: border 0.2s;
  border: 2px solid transparent;
}

.gallery-thumbnail.active {
  border: 2px solid #e91e63; /* highlight active */
}

.thumbs-wrapper {
  max-width: 650px; /* Adjust for 10 thumbnails at 60px + margin */
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  margin: 0 auto;
  padding: 10px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 5px;
}

.thumbs-wrapper .thumb {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.thumbs-wrapper .thumb.active {
  border: 2px solid #e91e63;
}
/* --- FILTER BUTTONS --- */
.event-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  background: #b57edc;
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 0.4rem 1.2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: #ffe066;
  color: #45366e;
}

/* --- MODAL & LIGHTBOX --- */
.workshop-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 0, 40, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.workshop-modal-content {
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  box-shadow: 0 0 40px 10px #a259ff88;
  padding: 0.5rem 0.5rem;
  position: relative;
  max-width: 1500px;
  width: 98vw;
  max-height: 98vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-photo-glow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
  height: 100%;
}

.main-photo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  width: 100%;
  height: auto;
}
.main-photo img,
#mainWorkshopPhoto {
  border-radius: 16px;
  box-shadow: 0 0 0 8px rgba(162,89,255,0.2); /* Only subtle background by default */
  max-width: 400px;
  width: 100%;
  height: auto;
  background: #fff;
  object-fit: contain;
  display: block;
  transition: box-shadow 0.3s;
}

.main-photo img:hover,
#mainWorkshopPhoto:hover {
  box-shadow: 0 0 32px 8px #a259ff, 0 0 0 8px rgba(162,89,255,0.2);
}
.thumbs-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  width: 100%;
}
.thumbnail-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  max-width: 200px;
  width: 98vw;
  scrollbar-width: thin;
  scrollbar-color: #a259ff #2d0036;
}
.thumbnail-row::-webkit-scrollbar {
  height: 8px;
}
.thumbnail-row::-webkit-scrollbar-thumb {
  background: #a259ff;
  border-radius: 4px;
}
.thumbnail-row::-webkit-scrollbar-track {
  background: #2d0036;
}
.thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid transparent;
  box-shadow: 0 0 8px 2px #a259ff44;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
}
.thumb.active,
.thumb:hover {
  border: 2px solid #a259ff;
  box-shadow: 0 0 16px 4px #a259ffcc;
}
.thumb-arrow {
  background: none;
  border: none;
  color: #a259ff;
  font-size: 2rem;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: color 0.2s;
}
.thumb-arrow:hover {
  color: #fff;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.modal-close:hover {
  color: #a259ff;
}

/* --- CONTACT PAGE --- */
.contact-page {
  background: linear-gradient(120deg, #ffe066 0%, #b57edc 100%) !important;
  min-height: 100vh;
  color: #2e0233;
  position: relative;
  overflow-y: auto;
}
.contact-page::before {
  content: none;
}
.contact-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(120deg, #fffbe6cc 0%, #e6cfffcc 100%);
  border-radius: 2rem 4rem 2rem 4rem;
  box-shadow: 0 4px 32px #b57edc55, 0 0 80px 10px #ffe06633;
  padding: 2.5rem 2rem;
  margin: 3rem auto 2rem auto;
  max-width: 500px;
  color: #2e0233;
  text-align: center;
  overflow: hidden;
  border: 3px solid #fff7;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  background: url('images/home/photo1.png') center center/cover no-repeat;
  opacity: 0.18;
  pointer-events: none;
}
.contact-card > * {
  position: relative;
  z-index: 1;
}
.contact-card h2 {
  font-family: 'Lilita One', 'Signika', 'Huninn', Arial, sans-serif;
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffe066 10%, #ff6f91 50%, #b57edc 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 2.5s linear infinite;
}
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.contact-card input,
.contact-card textarea {
  border-radius: 1.2rem;
  border: 2px solid #b57edc;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  background: #fff;
  color: #2e0233;
  box-shadow: 0 2px 8px #b57edc22;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.contact-card input:focus,
.contact-card textarea:focus {
  border: 2px solid #ffe066;
  box-shadow: 0 0 12px #ffe06655;
}
.contact-card button {
  background: linear-gradient(90deg, #ffe066 10%, #b57edc 90%);
  color: #2e0233;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2rem;
  font-size: 1.3rem;
  font-weight: bold;
  box-shadow: 0 2px 8px #b57edc33;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-card button:hover {
  background: #b57edc;
  color: #fff;
}
.contact-card p {
  font-size: 1.1rem;
  color: #6f00ab;
  margin-top: 1.5rem;
}

.gallery-title {
  font-family: 'Lilita One', 'Signika', 'Huninn', Arial, sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: #ce8dfd;
  letter-spacing: -2px;
  margin-bottom: 2.5rem;
  text-align: center;
  background: linear-gradient(90deg, #df8dff 10%, #9612f4 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.5s linear infinite;
  filter: drop-shadow(0 2px 16px #ffe06688) drop-shadow(0 0px 32px #b57edc44);
}

.mission, .about-hero-text .mission, .hero-content p.mission, .hero-content .mission {
  color: #a826ff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  font-weight: 700;
}
/* --- MISSION CARD --- */
/* --- Mission Card Section --- */
.mission-title {
  font-family: 'PassionOne';
  font-size: 4vw;
  color: #a826ff;
  text-align: left;
  margin-top: 2vw;
  margin-bottom: 0vw;
  font-weight: 900;
}
.mission-text {
  font-family: 'PassionOne', Arial, sans-serif;
  font-size: 2vw;
  color: #a826ff;
  text-align: left;
  font-weight: 700;
  margin-top: 2vw;
  margin-bottom: 0vw;
}
.mission-card {
  max-width: 1000px;
  height: 400px;
  margin: 2.5rem auto 2.5rem auto;
  padding: 2.5rem 2rem;
  background: linear-gradient(120deg, #7a43ad 0%, #5200b675 50%);
  border-radius: 2.5rem 4rem 2.5rem 4rem;
  box-shadow: 0 4px 32px #360c5555, 0 0 80px 10px #ffe06633;
  color: #601d6d;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.mission-card h1, .mission-card h2 {
  font-family: 'Lilita One','Signika',Arial,sans-serif;
  font-size: 8rem;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff 10%, #eaceff 90%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mission-card p {
  font-size: 1.2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.2rem;
  font-family: 'Huninn', Arial, sans-serif;
}

/* --- INFO CARDS --- */
/* --- QUEER SALSA SUNSETS LOGO & CARD --- */
.qss-logo {
  width: 700px;
  max-width: 90vw;
  height: auto;
  display: block;
  margin: 0.5rem auto;
  border-radius: 30px;
}
.qss-info-card img.qss-logo {
  max-width: 1800px;
  margin-bottom: 0.1rem;
  margin-top: 0rem;
}
.qss-info-card {
  padding: 1.2rem 1.5rem 1.2rem 2.2rem; /* Same shape, but smaller overall */
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; /* Organic, wavy shape */
  box-shadow: none !important;
  background: none !important;
  filter: none !important;
  outline: none !important;
  border: none !important;
  /* ...existing styles... */
  position: relative;
  background: linear-gradient(120deg, #7a43ad 0%, #5200b675 50%);
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/SalsaSunsets/qssjun14.png') center center/cover no-repeat;
  opacity: 0.22;
  border-radius: inherit;
  pointer-events: none;
}

.mission-card > * {
  position: relative;
  z-index: 1;
}
/* --- INDEX INFO CARD --- */
/* Add this for the about page blob */
.index-info-card {
  position: relative;
  padding: 1.2rem 1.5rem 1.2rem 2.2rem; /* Same shape, but smaller overall */
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; /* Organic, wavy shape */
  background: linear-gradient(120deg, #7a43ad 0%, #5200b675 50%);
  color: #601d6d;
  text-align: center;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.index-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/SalsaSunsets/qssjun14.png') center center/cover no-repeat;
  opacity: 0.26;
  border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
  pointer-events: none;
}
.index-info-card > * {
  position: relative;
  z-index: 1;
}

.index-info-card p {
  font-family: 'Nunito','Signika', 'Huninn', Arial, sans-serif; /* Paragraph font */
  color: #ffffff; /* Paragraph color */
  font-size: 1.2rem;
  margin: 0.5rem 0.8rem 0.8rem 0.8rem; /* Add right margin to match left */
  line-height: 1.6;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.index-info-card a {
  color: #c0a3f3; /* Link color */
  font-weight: regular;
  font-family: 'PassionOne', 'Signika', Arial, sans-serif;
  font-size: 3rem;
  text-decoration: none;
}

/* Salsa History Section */
.theme-toggle-btn {
  background: linear-gradient(120deg, #a259ff 0%, #fff 100%);
  color: #2e0233;
  border: none;
  border-radius: 1.2rem;
  padding: 0.7rem 2.2rem;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 2px 12px #a259ff22;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  margin: 0.5rem;
  display: inline-block;
}
.theme-toggle-btn:hover {
  background: linear-gradient(120deg, #be45ff 0%, #fff 100%);
  color: #601d6d;
  box-shadow: 0 4px 24px #a259ff55;
}
.salsa-history-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  margin: 2.5rem auto 2rem auto;
  max-width: 1200px;
  text-align: center;
  background: none;
  box-shadow: none;
  padding: 0;
  color:#2a174c;
  font-weight: 1000;
  font-family: 'Huninn', Arial, sans-serif;
}
.salsa-history-title {
  font-family: 'Huninn', 'PassionOne','Signika', Arial, sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  color: #ffe066;
  margin-bottom: 1.0rem;
  text-align: center;
  max-width: 1200px;
  background: linear-gradient(90deg, #ff6f91, #b57edc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 2.5s linear infinite;
}
.salsa-history-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 0.7rem auto;
  box-shadow: 0 1px 4px rgba(137,134,254,0.10);
  border: 2px solid #9d09ff;
}

.social-icons {
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
  align-items: center;
  gap: 2rem;
  width: 100%;
}
/* Payment Buttons Styling */
.payment-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
}
.pay-btn {
  display: flex;
  align-items: center;
  background: #fff;
  color: #402e51;
  border: none;
  border-radius: 30px;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  gap: 0.7rem;
}
.pay-btn:hover {
  background: #f6f6f6;
  transform: translateY(-2px) scale(1.04);
}
.pay-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 0.5rem;
}

/* --- CANVA STYLE FOOTER --- */
/* Clean, right-aligned Canva-style footer */
.footer {
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(120deg, #2e0233 0%, #4a1f94 100%);
  color: #fff;
  padding: 2.5rem 0 2.5rem 0;
  text-align: left;
  font-family: 'Signika', Arial, sans-serif;
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
.footer-bottom {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem; /* equal left/right padding for symmetry */
  padding-right: 0;
  margin-right: 0;
  min-height: 220px;
  gap: 0;
  position: relative;
  padding-right: 0;
  margin-right: 1.5rem;
}

.footer-newsletter {
  flex: 1 1 50%;
  min-width: 320px;
  max-width: 1000px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
}
.footer-newsletter h2 {
  font-family: 'Lilita One','PassionOne', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 1.5rem;
  letter-spacing: -1.0px;
  color: #fff;
  text-align: left;
  line-height: 1.1;
}
.footer-newsletter form {
  display: flex;
  gap: 1rem;
  margin-left: 1.2rem;
  margin-bottom: 1.2rem;
  width: 100%;
  max-width: 500px;
}
.footer-newsletter input[type="email"] {
  font-size: 1.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 0.7rem;
  border: none;
  outline: none;
  width: 260px;
  background: #fff;
  color: #222;
  font-family: 'Nunito', Arial, sans-serif;
}
.footer-newsletter button {
  font-size: 1.7rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 200;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 1.2rem;
  padding: 0.3rem 2.0rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.footer-newsletter button:hover {
  background: #ae7df4;
  color: #000;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-left: 1.5rem;
  color: #fff;
  font-family: 'Signika', Arial, sans-serif;
  align-items: flex-start;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
  background: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  background-clip: text;
  text-fill-color: #fff;
  position: relative;
  z-index: 1;
}
.footer-links a:hover {
  background: linear-gradient(90deg, #f8f8f8 0%, #b57edc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-fill-color: transparent;
}
.footer-social {
  flex: 1 1 50%;
  min-width: unset;
  max-width: unset;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 2.5rem;
  margin-bottom: 0;
  /* Remove margin-right to fix right gap */
  height: 100%;
  padding-top: 0.1rem;
  position: relative;
  left: unset;
  right: 0;
  top: unset;
  text-align: right;
  padding-right: 2.5rem; /* Add right padding for consistent edge spacing */
}
.footer-social h3 {
  font-size: 2.5rem;
  font-family: 'lilita One', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #fff;
  text-align: right;
  margin-top: 0.2rem;
  line-height: 1.1;
  margin-right: 0; /* Remove extra right margin */
  padding-right: 0; /* Remove extra right padding */
}
.footer-social-icons {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  justify-content: flex-end;
}
.footer-social-icons img {
  width: 35px;
  height: 35px;
  border-radius: 16px;
  background: #fff;
  padding: 0.3rem;
  transition: box-shadow 0.2s, background 0.2s;
  object-fit: contain;
}
.footer-social-icons img:hover {
  background: #ffe066;
  box-shadow: 0 0 0 4px #ffe066, 0 2px 16px #ffe06688;
}
.footer-copyright {
  width: 100%;
  text-align: right;
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Signika', Arial, sans-serif;
  margin-top: 1.5rem;
}
@media (max-width: 1100px) {
  .footer {
    background: linear-gradient(120deg, #2e0233 0%, #b57edc 100%) !important;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 2rem 1rem 1rem 1rem;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    min-height: unset;
  }
  .footer-newsletter {
    max-width: 100vw;
    width: 100%;
    align-items: flex-start !important;
    padding: 0;
  }
  .footer-social {
    margin-top: 2.5rem;
    align-items: flex-end !important;
    justify-content: flex-end;
    left: unset;
    right: 0;
    position: relative;
    top: unset;
    text-align: right;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
  }
  .footer-social h3 {
    text-align: right;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .footer-social-icons {
    justify-content: flex-end;
    gap: 0.7rem;
  }
  .footer-social-icons img {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    padding: 0.15rem;
  }
  .footer-copyright {
    text-align: left;
    margin-top: 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 700px) {
  .footer-social-icons img {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    padding: 0.1rem;
  }
  .footer-social h3 {
    font-size: 0.9rem;
  }
  .footer-copyright {
    font-size: 0.8rem;
  }

  /* --- MOBILE FOOTER FIXES --- */
  .footer-newsletter form {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .footer-newsletter input[type="email"] {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
  }
  .footer-newsletter button {
    width: 100%;
    max-width: 100%;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-radius: 0.7rem;
    margin: 0;
  }
  .footer-links {
    margin-left: 0;
    align-items: flex-start;
    font-size: 1rem;
    gap: 0.2rem;
  }
  .footer-social {
    align-items: flex-start !important;
    text-align: left;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    width: 100%;
    padding-left: 0;
  }
  .footer-social h3 {
    text-align: left;
    margin-bottom: 0.5rem;
    margin-top: 0;
  }
  .footer-social-icons {
    justify-content: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .footer-copyright {
    text-align: left;
    margin-top: 0.7rem;
    font-size: 0.7rem;
    }
  }