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

html {
  scroll-behavior: smooth;
}
.hide-navbar .navbar {
    display: none;
}
.hide-navbar main {
    display: block;
    visibility: visible;
    opacity: 1;
}

body {
  font-family: "Georgia", serif;
  color: #fefae0;
  min-height: 100vh;
  overflow-x: hidden;

  background:
    url("https://www.transparenttextures.com/patterns/arabesque.png") repeat,
    radial-gradient(circle at 12% 18%, rgba(0, 180, 190, 0.32), transparent 40%),
    radial-gradient(circle at 82% 12%, rgba(0, 140, 160, 0.28), transparent 38%),
    radial-gradient(circle at 50% 88%, rgba(0, 100, 110, 0.34), transparent 40%),
    linear-gradient(180deg, #021a24 0%, #063143 28%, #0a5661 55%, #0c5d5c 78%, #0d3f4a 100%);
}

/* -----------------------------------------------------------
   NAVBAR
----------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 24px;
  background: rgba(2, 26, 36, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,237,0.12);
  z-index: 999;
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand a {
  color: #fff8d6;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff8d6;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
main {
  padding-top: 90px;
}

.hero {
  padding: 180px 24px 0;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 36px;
  display: flex;
  gap: 48px;
  background: rgba(255,255,255,0.05);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 60px rgba(255,255,255,0.04),
              0 12px 40px rgba(0,0,0,0.28);
}

/* Portrait */
.hero-portrait {
  position: relative;
  margin-left: -20px;
}

.hero-portrait::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  background: url("https://www.transparenttextures.com/patterns/mandala.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.portrait-ellipse {
  width: 200px;
  height: 270px;
  border-radius: 50% / 42%;
  overflow: hidden;
  border: 2px dashed rgba(255,255,237,0.5);
  background: rgba(4,28,45,0.25);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.05),
              0 10px 25px rgba(0,0,0,0.18);
}

.portrait-ellipse img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 500px;
}

.hero-name {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 700;
  color: #fff8d6;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0,0,0,0.16);
}

.hero-underline {
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #ffd27f, #ffefc2);
  margin-top: 6px;
  border-radius: 999px;
}

.hero-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255,255,237,0.95);
}

.hero-qualification {
  font-size: 1.2rem;
  color: rgba(255,255,237,0.85);
}

/* -----------------------------------------------------------
   SECTIONS
----------------------------------------------------------- */
.content-band {
  padding: 90px 22px 70px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.content-band + .content-band {
  margin-top: 12px;
}
#classes.content-band {
  padding-top: 60px;   /* instead of 110px */
}
.content-band {
  padding: 110px 24px 90px;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.content-band.in-view {
  opacity: 1;
  transform: translateY(0);
}

.content-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 48px));
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,237,0.3), transparent);
}

.band-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.band-inner h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 600;
  color: #fff8d6;
}

.band-text {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255,255,237,0.92);
  max-width: 920px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.band-grid article {
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,237,0.12);
}
.navbar {
  position: fixed;
  z-index: 99999; /* highest layer */
}


/* -----------------------------------------------------------
   SCROLL ANIMATIONS
----------------------------------------------------------- */
.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
.footer {
  margin-top: 80px;
  padding: 40px 24px;
  background: rgba(6, 49, 67, 0.9);
  border-top: 1px solid rgba(255,255,237,0.18);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255,255,237,0.85);
  line-height: 1.8;
}

.footer-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff8d6;
}
/* -----------------------------------------------------------
   CONTACT FORM — RESTORED ORIGINAL DESIGN
----------------------------------------------------------- */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 26, 36, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: rgba(6, 49, 67, 0.98);
  color: #fefae0;
  border: 1px solid rgba(255, 230, 150, 0.22);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  font-family: inherit;
}

.modal-box h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #fff8d6;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: none;
  background: transparent;
  color: #fff8d6;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.contact-form label {
  font-size: 0.95rem;
  color: #fefae0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(245, 217, 107, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #f5d96b;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 217, 107, 0.7);
}

.submit-btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,230,150,0.28);
  background: linear-gradient(135deg, rgba(0, 180, 190, 0.32), rgba(0, 120, 140, 0.32));
  color: #fff8d6;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.submit-btn:hover {
  box-shadow: 0 0 18px rgba(0, 200, 210, 0.55);
  background: linear-gradient(135deg, rgba(0, 210, 220, 0.42), rgba(0, 140, 160, 0.42));
}

.submit-btn:active {
  transform: scale(0.96);
  box-shadow: 0 0 12px rgba(255, 230, 150, 0.45);
  background: linear-gradient(135deg, rgba(0, 160, 170, 0.38), rgba(0, 100, 120, 0.38));
}
/* CONTACT BUTTON — GOLD GLOW RESTORED */
.contact-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 26px;
  border-radius: 999px;

  background: rgba(255,215,0,0.22);
  border: 1px solid rgba(255,230,150,0.32);

  color: #fff8d6;
  font-weight: 600;
  font-size: 1.15rem; /* increased font size */
  letter-spacing: 0.5px;

  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-box:hover {
  background: rgba(255,215,0,0.32);
  box-shadow: 0 0 22px rgba(255, 230, 150, 0.55);
  transform: translateY(-2px);
}

.contact-box:active {
  transform: scale(0.96);
  box-shadow: 0 0 14px rgba(255, 230, 150, 0.45);
  background: rgba(255,215,0,0.26);
}
/* CLASSES SECTION — CLEANER SPACING */
.band-grid article p {
  line-height: 1.9; /* increased spacing */
  margin-bottom: 10px;
}
.classes-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,237,0.88);
  margin-bottom: 20px;
  letter-spacing: 0.4px;
}
/* WORKSHOP SUMMARY — MAKE CLICKABLE */
.workshop-list summary {
  cursor: pointer;
  color: #ffe9a3;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,237,0.18);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.workshop-list summary:hover {
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 12px rgba(255,215,0,0.35);
  transform: translateY(-2px);
}

.workshop-list summary::after {
  content: "▸";
  font-size: 1.1rem;
  color: #ffe9a3;
  transition: transform 0.25s ease;
}

details[open] summary::after {
  transform: rotate(90deg);
}
/* CLASSES SECTION BEAUTIFICATION */
.classes-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,237,0.88);
  margin-bottom: 26px;
  letter-spacing: 0.4px;
  text-shadow: 0 0 12px rgba(0,0,0,0.25);
}

.band-grid article {
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,237,0.18);
}

.band-grid article h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
}

.band-grid article p {
  line-height: 1.9;
  margin-bottom: 10px;
}

/* ICONS */
.class-icon {
  font-size: 1.3rem;
  color: #ffe9a3;
}
.band-grid article {
  border-top: 1px solid rgba(255,255,237,0.18);
  padding-top: 20px;
}
.portrait-ellipse {
  width: 200px;
  height: 270px;
  border-radius: 50% / 42%;
  overflow: hidden;

  /* Replace dashed border with gold solid border */
  border: 3px solid #ffd27f; /* gold tone matching your text */

  background: rgba(4,28,45,0.25);

  box-shadow:
    inset 0 0 40px rgba(255,255,255,0.05),
    0 10px 25px rgba(0,0,0,0.18);
}
.hamburger {
  display: none;
}


/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-name {
    white-space: normal;
  }

  .band-text {
    max-width: none;
  }

  .content-band {
    padding: 82px 18px 70px;
  }
}

@media (max-width: 520px) {
  .portrait-ellipse {
    width: 170px;
    height: 240px;
  }

  .content-band {
    padding: 80px 18px;
  }
}
@media (max-width: 820px) {
  .hamburger {
    display: block;
  }
}
/* CONTACT BUTTON — GOLD GLOW */
.contact-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 28px;
  border-radius: 999px;

  background: rgba(255,215,0,0.22);
  border: 1px solid rgba(255,230,150,0.32);

  color: #fff8d6;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.6px;

  cursor: pointer;
  transition: all 0.25s ease;
}

.contact-box:hover {
  background: rgba(255,215,0,0.32);
  box-shadow: 0 0 22px rgba(255, 230, 150, 0.55);
  transform: translateY(-2px);
}

.contact-box:active {
  transform: scale(0.96);
  box-shadow: 0 0 14px rgba(255, 230, 150, 0.45);
  background: rgba(255,215,0,0.26);
}

/* CONTACT FORM — MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 26, 36, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: rgba(6, 49, 67, 0.98);
  color: #fefae0;
  border: 1px solid rgba(255, 230, 150, 0.22);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Modal Heading */
.modal-box h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: #fff8d6;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Close Button */
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: none;
  background: transparent;
  color: #fff8d6;
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}

/* Form Layout */
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.contact-form label {
  font-size: 1rem;
  color: #fefae0;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(245, 217, 107, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #f5d96b;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(245, 217, 107, 0.7);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,230,150,0.28);
  background: linear-gradient(135deg, rgba(0, 180, 190, 0.32), rgba(0, 120, 140, 0.32));
  color: #fff8d6;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.submit-btn:hover {
  box-shadow: 0 0 18px rgba(0, 200, 210, 0.55);
  background: linear-gradient(135deg, rgba(0, 210, 220, 0.42), rgba(0, 140, 160, 0.42));
}

.submit-btn:active {
  transform: scale(0.96);
  box-shadow: 0 0 12px rgba(255, 230, 150, 0.45);
  background: linear-gradient(135deg, rgba(0, 160, 170, 0.38), rgba(0, 100, 120, 0.38));
}

/* SUCCESS POPUP */
.success-popup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255,215,0,0.22);
  border: 1px solid rgba(255,230,150,0.32);
  padding: 16px 22px;
  border-radius: 12px;
  color: #fff8d6;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 22px rgba(255, 230, 150, 0.55);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 99999;
  pointer-events: none;
}

.success-popup.show {
  opacity: 1;
  transform: translateY(0);
}


.blog-hero,
.blog-detail-hero {
    position: relative;
}


/* BACK TOP-RIGHT */
.back-home-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #004d40;
    text-decoration: none;
}
/* Small Contact Button for Blog Pages */
.contact-hero-link {
    position: absolute;
    top: 20px;
    left: 20px;

    padding: 8px 16px;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 237, 0.18);

    color: #fff8d6;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    text-decoration: none;

    transition: all 0.25s ease;
}

.contact-hero-link:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}



.back-home-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 237, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05),
              0 10px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

.blog-card h3 {
  margin: 0 0 8px;
  color: #fff8d6;
  font-size: 1.35rem;
  line-height: 1.35;
}

.blog-date {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 237, 0.72);
}

.blog-preview {
  color: rgba(255, 255, 237, 0.9);
  line-height: 1.8;
  margin: 0;
}

.blog-readmore {
  align-self: flex-start;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 237, 0.14);
  color: #fff8d6;
  text-decoration: none;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease;
}

.blog-readmore:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}
.blog-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px 24px;
  position: relative;
}

.blog-hero h1 {
  color: #fff8d6;
  font-size: clamp(2.0rem, 4vw, 3.5rem);
  margin-bottom: 8px;
}

.blog-subtitle {
  color: rgba(255, 255, 237, 0.82);
  margin: 0;
}
.blog-detail-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 20px;
  position: relative;
}

.blog-detail-hero h1 {
  color: #fff8d6;
  font-size: clamp(2.0rem, 4vw, 3.8rem);
  margin: 0 0 10px;
  line-height: 1.15;
}

.blog-detail-hero .blog-date {
  color: rgba(255, 255, 237, 0.72);
  margin: 0;
  font-size: 0.95rem;
}

.blog-detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 90px;
}

.blog-detail-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  color: rgba(255, 255, 237, 0.92);
  line-height: 1.95;
  font-size: 1.08rem;
}

.blog-detail-card p {
  margin: 0 0 18px;
}

.blog-detail-card h2 {
  color: #fff8d6;
  margin: 30px 0 12px;
  font-size: 1.45rem;
  line-height: 1.3;
}

.back-home-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 237, 0.14);
  color: #fff8d6;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.back-home-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 700px) {
  .blog-detail-hero {
    padding-top: 90px;
  }

  .back-home-btn {
    top: 20px;
    right: 24px;
  }

  .blog-detail-card {
    padding: 22px;
    font-size: 1rem;
  }
}

/* CLEAN STRUCTURED INTRO SECTION */
.blog-intro {
  max-width: 900px;
  margin: 3rem auto 4rem;
  padding: 0 2rem;

  /* No card, no blur, no border */
  background: none;
  border: none;
  box-shadow: none;

  color: rgba(255,255,237,0.92);
  line-height: 1.85;
  font-size: 1.08rem;
}

.blog-intro h2 {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  color: #fff8d6;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.blog-intro p {
  margin-bottom: 1.2rem;
}

/* WORKSHOP REGISTER BUTTON — GOLD, ELEGANT, VISIBLE */
.workshop-form-link {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(255, 215, 0, 0.22);
  border: 1px solid rgba(255, 230, 150, 0.32);

  color: #fff8d6 !important;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
  text-decoration: none;

  transition: all 0.25s ease;
}

.workshop-form-link:hover {
  background: rgba(255, 215, 0, 0.32);
  box-shadow: 0 0 18px rgba(255, 230, 150, 0.55);
  transform: translateY(-2px);
}

.workshop-form-link:active {
  transform: scale(0.96);
  box-shadow: 0 0 12px rgba(255, 230, 150, 0.45);
  background: rgba(255, 215, 0, 0.26);
}

/* Prevent purple visited color */
.workshop-form-link:visited {
  color: #fff8d6 !important;
}
/* UPCOMING EVENT BUTTON — GOLD, ELEGANT */
.event-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.22);
  border: 1px solid rgba(255, 230, 150, 0.32);
  color: #fff8d6 !important;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
  text-decoration: none;
  transition: all 0.25s ease;
}


.event-btn:hover {
  background: rgba(255, 215, 0, 0.32);
  box-shadow: 0 0 18px rgba(255, 230, 150, 0.55);
  transform: translateY(-2px);
}

.event-btn:active {
  transform: scale(0.96);
  box-shadow: 0 0 12px rgba(255, 230, 150, 0.45);
  background: rgba(255, 215, 0, 0.26);
}

.event-btn:visited {
  color: #fff8d6 !important;
}
/* LATEST BLOG BUTTON — GOLD, ELEGANT */
.latest-blog-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;

  background: rgba(255, 215, 0, 0.22);
  border: 1px solid rgba(255, 230, 150, 0.32);

  color: #fff8d6 !important;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.4px;
  text-decoration: none;

  transition: all 0.25s ease;
}

.latest-blog-btn:hover {
  background: rgba(255, 215, 0, 0.32);
  box-shadow: 0 0 18px rgba(255, 230, 150, 0.55);
  transform: translateY(-2px);
}

.latest-blog-btn:active {
  transform: scale(0.96);
  box-shadow: 0 0 12px rgba(255, 230, 150, 0.45);
  background: rgba(255, 215, 0, 0.26);
}

.latest-blog-btn:visited {
  color: #fff8d6 !important;
}
/* UPCOMING EVENT — CLEAN SPACING */
.event-item {
  margin-top: 1.2rem;
  line-height: 1.85;
  max-width: 700px;
}

.event-item h3 {
  margin-bottom: 0.4rem;
}

.event-desc {
  margin-bottom: 1rem;
}

/* LATEST BLOG — CLEAN SPACING */
.latest-blog-item {
  margin-top: 1.2rem;
  line-height: 1.85;
  max-width: 700px;
}

.latest-blog-date {
  margin-bottom: 0.6rem;
}

/* READ FULL BLOG — UNDERLINED LINK */
.latest-blog-link {
  color: #ffe9a3;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.latest-blog-link:hover {
  color: #fff8d6;
}

/* VIEW ALL BLOGS — HIGHLIGHTED */
.all-blogs-link.highlight {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffd27f;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.all-blogs-link.highlight:hover {
  color: #fff8d6;
}

section p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.6;
}
.band-grid article.class-structure ul li {
  margin-bottom: 0.9rem;   /* adds breathing room between bullets */
  line-height: 1.7;        /* softer, more readable spacing */
}

.insta-link {
  color:#FFC107;   /* soft yellow */
  font-weight: 600; /* optional: makes it stand out */
}
.insta-link:hover {
  color: #FFE082;
}

/* ============================
   SIDE MOTIF – DANCER SILHOUETTES
   ============================ */

.side-motif {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 500px;        /* Bigger frame */
  height: 1000px;       /* Taller frame */

  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: none !important;
  opacity: 0.32;
  z-index: 5;          /* Make motifs visible */
  pointer-events: none;

  animation: float 6s ease-in-out infinite;
}

.side-motif.left {
  left: 120px;         /* Move inward */
  background-image: url("/static/images/left-motif.dea1dc02ab84.png");
}

.side-motif.right {
  right: 120px;        /* Move inward */
  background-image: url("/static/images/right-motif.f9b2fc0970ee.png");
  animation-delay: 3s;
}
@media (min-width: 1024px) {
    .side-motif {
        height: 380px;   /* reduce height */
        top: 80px;       /* push down */
        opacity: 0.18;   /* softer */
    }
}
@media (max-width: 768px) {
    .side-motif {
        height: 260px;
        top: 20px;
        opacity: 0.22;
    }
}

@keyframes float {
  0%   { transform: translateY(-50%) translateY(0px); }
  50%  { transform: translateY(-50%) translateY(-20px); }
  100% { transform: translateY(-50%) translateY(0px); }
}

@media (max-width: 768px) {
  .side-motif {
    display: none;
  }
}


