/* ==========================================================================
   POLEWORX DANCE & FITNESS STUDIO - DARK CHARCOAL & ROSE GOLD LUXE THEME
   - Background: Dark Studio Charcoal Grey matching the Empowerment Banner (#232228)
   - Text: Metallic Rose Gold (#e5b3b9 & #d4949c)
   - Accents & Image Borders: Rose Gold Line Accents (#b76e79)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-main: #232228;
  --bg-card: #2c2a33;
  --bg-card-hover: #35333f;
  --bg-input: #1d1c21;
  
  --border-color: #b76e79;
  --border-rose-subtle: rgba(183, 110, 121, 0.45);
  
  --hot-pink: #ff2a85;
  --primary-rose: #b76e79;
  --primary-rose-bright: #d4949c;
  --primary-rose-hover: #e5b3b9;
  --rose-glow: rgba(183, 110, 121, 0.35);
  
  --text-main: #e5b3b9;
  --text-muted: #d4949c;
  --text-light: #c8828b;
  --text-white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

*:focus, *:focus-visible, *:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  line-height: 1.5;
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
}

/* TOP NAVBAR & SEAMLESS LOGO GREY BLEND */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1d1c21; /* Matches exact grey of rosegold_logo.png */
  border-bottom: 1.5px solid var(--border-color);
  padding: 0.65rem 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 95px;
  max-height: 105px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: normal;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s ease;
  padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  border-bottom: 2px solid var(--border-color);
}

.btn-book-now {
  background: linear-gradient(135deg, #ff2a85 0%, #d81b60 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  box-shadow: 0 4px 14px var(--rose-glow);
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 42, 133, 0.45);
  color: #ffffff;
}

/* DASHBOARD MAIN 2-COLUMN GRID (ALIGNED TO 1240PX) */
.dashboard-grid {
  max-width: 1240px;
  margin: 2rem auto 3rem;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 1100px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.col-left {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.col-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* HERO BANNER CARD */
.hero-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* MINDBODY SCHEDULE CARD */
.schedule-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.schedule-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-main);
}

.arrow-controls {
  display: flex;
  gap: 0.4rem;
}

.btn-arrow {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.btn-arrow:hover {
  background: var(--primary-rose);
  color: #ffffff;
}

/* Day Pills Row */
.day-pills-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.day-pill-item {
  padding: 0.65rem 0.4rem;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border: 1px solid var(--border-rose-subtle);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text-muted);
}

.day-pill-item:hover {
  border-color: var(--border-color);
  color: var(--text-main);
}

.day-pill-item.active {
  background: var(--primary-rose);
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 4px 12px var(--rose-glow);
}

.day-pill-item .d-name {
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
}

.day-pill-item .d-num {
  font-size: 0.75rem;
  opacity: 0.9;
}

/* 7-Column Class Matrix */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.6rem;
}

.matrix-grid > div {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (max-width: 900px) {
  .matrix-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.class-card-cell {
  background: var(--bg-input);
  border: 1px solid var(--border-rose-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 165px;
  text-align: center;
  transition: all 0.2s ease;
}

.class-card-cell:hover {
  border-color: var(--border-color);
  background: var(--bg-card-hover);
}

.cell-title {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.cell-time {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.cell-instructor {
  font-size: 0.68rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.btn-signup-pill {
  background: linear-gradient(135deg, #ff2a85 0%, #d81b60 100%);
  border: none;
  color: #ffffff;
  border-radius: 50px;
  padding: 0.25rem 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  box-shadow: 0 3px 10px rgba(255, 42, 133, 0.35);
}

.btn-signup-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 42, 133, 0.55);
}

/* RIGHT COLUMN TOP SCHEDULE WIDGET CARD */
.top-schedule-widget {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mini-class-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-input);
  border: 1px solid var(--border-rose-subtle);
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
}

.mini-class-info {
  font-size: 0.72rem;
}

.mini-class-name {
  font-weight: 700;
  color: var(--text-main);
}

.mini-class-details {
  color: var(--text-muted);
}

.btn-signup-mini {
  background: linear-gradient(135deg, #ff2a85 0%, #d81b60 100%);
  border: none;
  color: #ffffff;
  border-radius: 50px;
  padding: 0.25rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(255, 42, 133, 0.35);
}

.btn-signup-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 42, 133, 0.55);
}

/* RIGHT COLUMN POLEWORX PERKS CARD */
.perks-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.perks-title {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text-main);
}

.perks-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-two-col {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-col {
  flex: 1;
}

.form-col label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.form-select, .form-input {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  color: var(--text-main);
  font-size: 0.82rem;
}

.rewards-list {
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
}

.rewards-list-title {
  font-weight: 700;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-main);
}

.rewards-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  cursor: pointer;
}

.rewards-option input[type="radio"] {
  accent-color: var(--primary-rose);
}

#calculatedPointsDisplay {
  color: var(--hot-pink) !important;
  font-weight: 800;
  font-size: 2.2rem;
}

.btn-calc-points {
  background: linear-gradient(135deg, #ff2a85 0%, #d81b60 100%);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  display: block;
  margin: 1.25rem auto 0;
  box-shadow: 0 4px 14px var(--rose-glow);
  transition: all 0.2s ease;
}

.btn-calc-points:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 42, 133, 0.45);
  color: #ffffff;
}

/* RIGHT COLUMN PRIVATE PARTIES CARDS (SIDE BY SIDE) */
.parties-container-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.parties-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 500px) {
  .parties-two-grid { grid-template-columns: 1fr; }
}

.party-vertical-card {
  background: var(--bg-input);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.party-vertical-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary-rose-bright);
}

.party-vertical-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  border: 1.5px solid var(--border-color);
}

.party-vertical-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.25;
  color: var(--text-main);
}

.party-btn-row {
  display: flex;
  gap: 0.4rem;
}

.btn-p-outline {
  flex: 1;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  padding: 0.4rem 0.3rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
}

.btn-p-outline:hover {
  background: var(--primary-rose);
  color: #ffffff;
}

.btn-p-solid {
  flex: 1;
  background: linear-gradient(135deg, #ff2a85 0%, #d81b60 100%);
  color: #ffffff;
  border: none;
  padding: 0.45rem 0.3rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(255, 42, 133, 0.35);
}

.btn-p-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 42, 133, 0.55);
  color: #ffffff;
}

/* LEFT COLUMN SHOPIFY MERCH STORE CARD */
.merch-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}

.merch-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.merch-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
}

.merch-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.btn-shop-dreyton {
  background: transparent;
  border: 1.5px solid var(--hot-pink);
  color: var(--hot-pink);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-shop-dreyton:hover {
  background: var(--hot-pink);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(255, 42, 133, 0.4);
}

.merch-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .merch-products-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--bg-input);
  border: 1px solid var(--border-rose-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.product-card:hover {
  border-color: var(--border-color);
  transform: translateY(-2px);
}

.product-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--border-color);
  background: #ffffff;
}

.product-img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  display: block;
}

.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--hot-pink);
  border: 1px solid var(--hot-pink);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.product-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hot-pink);
}

.btn-buy-shopify {
  background: linear-gradient(135deg, #ff2a85 0%, #d81b60 100%);
  color: #ffffff;
  border: none;
  padding: 0.45rem 0.85rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(255, 42, 133, 0.35);
}

.btn-buy-shopify:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 42, 133, 0.55);
  color: #ffffff;
}

/* FOOTER */
footer {
  background: #1d1c21;
  border-top: 1.5px solid var(--border-color);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3.5rem;
  color: var(--hot-pink);
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-contact {
  font-size: 0.85rem;
  color: var(--hot-pink);
}

.footer-social-icons {
  display: flex;
  gap: 0.6rem;
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 42, 133, 0.1);
  border: 1px solid var(--hot-pink);
  color: var(--hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.2s ease;
}

.icon-circle:hover {
  background: var(--hot-pink);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 42, 133, 0.5);
}

/* MINDBODY & VIP MODAL STYLES */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

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

.modal-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 600px;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* FAQ ACCORDION STYLES */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-input);
  border: 1.5px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item.active {
  border-color: var(--hot-pink);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--hot-pink);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.25rem 1rem;
}

/* TRUST BADGES BAR STYLES */
.trust-badges-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border-rose-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}

.badge-icon {
  font-size: 1.6rem;
}

.trust-badge-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-main);
}

.trust-badge-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* VERIFIED 5-STAR REVIEWS STYLES */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: var(--bg-input);
  border: 1px solid var(--border-rose-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.review-card:hover {
  border-color: var(--hot-pink);
  transform: translateY(-2px);
}

.review-stars {
  color: #FFD700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.review-text {
  font-size: 0.84rem;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--hot-pink);
}

.review-source {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* PARTY SHOW DETAILS TOGGLE STYLES */
.btn-party-details-toggle {
  background: transparent;
  border: 1.5px solid var(--border-color);
  color: var(--text-main);
  padding: 0.45rem 0.9rem;
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-party-details-toggle:hover {
  background: var(--bg-card);
  color: var(--hot-pink);
  border-color: var(--hot-pink);
}

.party-details-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
  border-top: 0px solid transparent;
  margin-top: 0;
}

.party-package-card.details-active .party-details-content {
  max-height: 900px;
  padding-top: 1.25rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-rose-subtle);
}

.party-details-content h4 {
  color: var(--hot-pink);
  font-size: 0.95rem;
  margin: 0.75rem 0 0.4rem;
}

.party-details-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.85rem;
}

.party-details-content li {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
}

.party-details-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--hot-pink);
  font-weight: bold;
}

/* INTERACTIVE STUDIO GALLERY STYLES */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background: var(--bg-input);
  cursor: pointer;
  height: 210px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: var(--hot-pink);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.5rem 0.75rem;
  backdrop-filter: blur(4px);
}

/* INSTRUCTOR ROSTER STYLES */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.instructor-card {
  background: var(--bg-input);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.instructor-card:hover {
  transform: translateY(-4px);
  border-color: var(--hot-pink);
}

.instructor-img-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #111;
}

.instructor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-img {
  transform: scale(1.04);
}

.instructor-info {
  padding: 1.25rem;
}

.instructor-info h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.instructor-role {
  display: inline-block;
  font-size: 0.76rem;
  color: var(--hot-pink);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.instructor-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
