:root {
  --yellow: #f7c600;
  --purple: #4a2b82;
  --white: #ffffff;
  --dark: #1e1e1e;
  --transition: 0.3s ease;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--white);
  background-color: var(--purple);
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0; /* always stays at the top of the viewport */
  z-index: 100; /* higher than safe-bar */
  background: var(--purple);
  transition: all var(--transition);
  opacity: 0.75;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: auto;
}

.logo img {
  height: 50px;
}

/* ===== Navigation Links ===== */
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--yellow);
}

/* ===== Access Button ===== */
.btn-access {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  margin-left: 1rem;
}

.btn-access:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* ===== Burger ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 200;
}

.burger span {
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile Navbar ===== */
@media (max-width: 768px) {
  .nav-inner {
    justify-content: space-between;
    position: relative;
    z-index: 200;
  }

  /* Mobile dropdown menu */
  .nav-links {
    position: absolute;
    top: 100%; /* start right under navbar */
    left: 0;
    width: 100%;
    background: var(--purple);
    max-height: 0; /* ✅ hidden by collapsing height */
    overflow: hidden; /* ✅ hides links cleanly */
    transition: max-height 0.35s ease;
    text-align: left;
    z-index: 150;
    pointer-events: none;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  /* When menu is open */
  .nav-links.open {
    max-height: 300px; /* ✅ expands smoothly to show links */
    pointer-events: auto;
  }

  /* List layout */
  .nav-links ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
  }

  .nav-links a {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
  }

  .nav-links a:hover {
    color: var(--yellow);
  }

  .btn-access {
    display: none;
  }

  .burger {
    display: flex;
    position: relative;
    z-index: 250;
  }
}


/* ===== Hero Section ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  overflow: hidden;
  padding: 5rem 5%; /* ✅ Match the rest of sections */
  background-color: var(--purple);
}

/* Hero Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%; /* optional: make overlay cover a bit more */
  background: linear-gradient(
    to top,
    rgba(74, 43, 130, 0.95),  /* stronger opacity */
    rgba(74, 43, 130, 0.5) 75%, /* smoother mid fade */
    rgba(74, 43, 130, 0.15) 90%, /* faint near top */
    transparent 100%
  );
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1520px; /* ✅ Aligns with the global content width */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  animation: fadeIn 1.5s ease forwards;
  color: var(--white);
}

/* Inner Content (text container) */
.hero-content .hero-text {
  max-width: 500px;
}

.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.btn-join {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-join:hover {
  background: var(--white);
  transform: scale(1.05);
}


/* ============================
   VIDEO LIBRARY (CLEAN & CENTERED)
   ============================ */
.video-library {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background-color: var(--purple);
}

/* Container */
.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* ✅ pushes content to the right */
  width: 100%;
  max-width: 1520px;
  min-height: 550px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: -130px;
}

/* Image background */
.video-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 8s ease;
}

.video-container:hover .video-image {
  transform: scale(1.05);
}

/* Text content */
.video-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 480px;
  text-align: left;
  margin-right: 6%;
  animation: fadeInUp 1s ease forwards;
}

.video-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.video-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.video-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Buttons */
.btn-view {
  background: var(--yellow);
  color: var(--dark);
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-view:hover {
  background: var(--white);
  transform: scale(1.05);
}

.btn-download {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-download:hover {
  background: var(--white);
  color: var(--dark);
  transform: scale(1.05);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

/* Tablet */
@media (max-width: 1024px) {
  .video-container {
    min-height: 450px;
  }

  .video-content {
    max-width: 400px;
    margin-right: 4%;
  }

  .video-content h2 {
    font-size: 1.8rem;
  }

  .video-content p {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
    border-radius: 14px;
  }

  .video-content {
    text-align: center;
    margin: 0;
    padding: 2rem 1.5rem;
    width: 100%;
  }

  .video-content h2 {
    font-size: 1.6rem;
  }

  .video-content p {
    font-size: 0.9rem;
  }

  .video-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .video-container {
    min-height: 380px;
  }

  .video-content h2 {
    font-size: 1.4rem;
  }

  .video-content p {
    font-size: 0.85rem;
  }

  .btn-view,
  .btn-download {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   VIDEO GALLERY — STATIC VERSION (No Scroll Animation)
   ============================ */
.video-gallery {
  background: var(--purple);
  color: var(--white);
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-section {
  width: 100%;
  max-width: 1520px;
  margin-bottom: 4rem;
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.section-header h2 span {
  color: var(--yellow);
}

.section-header .view-more {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-header .view-more:hover {
  color: var(--white);
}

/* ===== STATIC GRID WRAPPER ===== */
.video-slider {
  position: relative;
  overflow: visible;
  margin-inline: 0;
  padding: 0;
}

/* ===== STATIC GRID (No scroll/slide) ===== */
.video-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  padding: 0.5rem 0;
  border-radius: 12px;
}

/* ===== VIDEO CARD ===== */
.video-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Make cards able to host an absolute overlay link */
.video-card,
.photo-card {
  position: relative;
}

/* Full-card clickable overlay */
.card-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
}

/* Keep interactive UI above the overlay */
.video-card .heart,
.video-card button,
.photo-card button {
  position: relative;
  z-index: 10;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ===== THUMBNAIL ===== */
.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: inherit;
  overflow: hidden;
}

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

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

/* ===== PLAY ICON ===== */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
  pointer-events: none;
}

.video-card:hover .play-icon {
  background: rgba(0, 0, 0, 0.4);
}

/* ============================
   VIDEO CARD INFO — LEFT ALIGNED
   ============================ */

.video-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0.8rem 0.8rem 0.4rem;
}

.rating {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--yellow);
}

.divider {
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.4);
}

.heart {
  font-size: 1.1rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease, transform 0.3s ease;
}

.heart:hover {
  transform: scale(1.2);
  color: var(--yellow);
}

.heart.liked {
  color: var(--yellow);
  transform: scale(1.3);
}

.title {
  text-align: left;
  padding: 0.3rem 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

/* ===== NAVIGATION BUTTONS (Still usable) ===== */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--yellow);
  border: none;
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: bold;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.video-slider:hover .nav-btn {
  opacity: 1;
  pointer-events: auto;
}

.nav-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-50%) scale(1.08);
}

.prev-btn {
  left: -2.5rem;
}

.next-btn {
  right: -2.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
  .nav-btn {
    display: none !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .video-row {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.3rem;
  }

  .title {
    font-size: 0.85rem;
  }
}


/* ============================
   VIDEO SECTION HEADER — RESPONSIVE SCALE ONLY
   ============================ */

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

/* Tablet: shrink text slightly but keep layout horizontal */
@media (max-width: 1024px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .section-header h2 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .section-header .view-more {
    font-size: 1rem;
  }
}

/* Mobile: same horizontal layout, smaller text and spacing */
@media (max-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .section-header .view-more {
    font-size: 0.95rem;
  }
}

/* Small Mobile: still horizontal, tighter spacing */
@media (max-width: 480px) {
  .section-header {
    gap: 0.3rem;
    padding-inline: 0.3rem;
  }

  .section-header h2 {
    font-size: 1.1rem;
  }

  .section-header .view-more {
    font-size: 0.9rem;
  }
}

/* ============================
   PHOTO LIBRARY — Center-Left (Slightly Higher)
   ============================ */
.photo-library {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background-color: var(--purple);
}

/* Container */
.photo-container {
  position: relative;
  width: 100%;
  max-width: 1520px;
  min-height: 550px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

/* Background Image */
.photo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  z-index: 1;
}

.photo-container:hover .photo-image {
  transform: scale(1.05);
}

/* Content — Center-Left but slightly higher */
.photo-content {
  position: absolute;
  top: 43%; /* was 50%, now slightly higher */
  left: 6%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--white);
  max-width: 520px;
  text-align: left;
  animation: fadeInUp 1s ease forwards;
}

/* Text Styling */
.photo-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.photo-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Buttons */
.photo-buttons {
  display: flex;
  gap: 1rem;
}

.btn-view {
  background: var(--yellow);
  color: var(--dark);
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-view:hover {
  background: var(--white);
  transform: scale(1.05);
}

.btn-download {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-download:hover {
  background: var(--white);
  color: var(--dark);
  transform: scale(1.05);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 1024px) {
  .photo-content {
    top: 40%; /* still slightly lifted */
    max-width: 420px;
    left: 5%;
  }

  .photo-content h2 {
    font-size: 1.8rem;
  }

  .photo-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .photo-container {
    min-height: 480px;
    border-radius: 14px;
  }

  .photo-content {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    text-align: center;
    margin: 0;
    padding: 2rem 1.5rem;
    max-width: 100%;
    background: linear-gradient(
      to top,
      rgba(74, 43, 130, 0.9) 30%,
      rgba(74, 43, 130, 0.6) 70%,
      rgba(74, 43, 130, 0) 100%
    );
  }

  .photo-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .photo-content h2 {
    font-size: 1.5rem;
  }

  .photo-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .photo-container {
    min-height: 380px;
  }

  .photo-content h2 {
    font-size: 1.3rem;
  }

  .photo-content p {
    font-size: 0.85rem;
  }

  .btn-view,
  .btn-download {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   EXCLUSIVE PHOTOS — FINAL FIX
   ============================ */
.photo-gallery {
  background: var(--purple);
  color: var(--white);
  padding: 4rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.photo-section {
  width: 100%;
  max-width: 1520px;
  margin-bottom: 4rem;
  position: relative; /* ✅ keeps prev/next buttons visible */
}

/* ===== HEADER ===== */
.photo-gallery .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0 0.5rem;
}

.photo-gallery .section-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.photo-gallery .section-header h2 span {
  color: var(--yellow);
}

.photo-gallery .view-more {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.photo-gallery .view-more:hover {
  color: var(--white);
}

/* ===== GRID ROW ===== */
.photo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  align-items: start; /* ✅ aligns titles perfectly */
}

/* ===== CARD ===== */
.photo-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
}
.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ===== IMAGE ===== */
.thumb {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-card:hover .thumb img {
  transform: scale(1.05);
}

/* ===== INFO ===== */
.photo-info {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Title + Details aligned left with tight spacing */
.title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  line-height: 1.25;
  margin-bottom: 0.3rem; /* ✅ tighter spacing above ratings */
}

/* ===== DETAILS (Stars + Count) ===== */
.details {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  margin: 0; /* ✅ removes spacing */
  padding: 0;
}

.stars {
  color: var(--yellow);
  font-size: 0.95rem;
  line-height: 1;
  margin-top: 1px; /* visually balances vertical alignment */
}

.divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
}

.photo-count {
  font-size: 0.9rem;
  color: var(--white);
}

/* ===== NAV BUTTONS ===== */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--yellow);
  border: none;
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: bold;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  opacity: 1; /* ✅ always visible */
  pointer-events: auto;
}

.nav-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -2rem; }
.next-btn { right: -2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .photo-card { min-height: 380px; }
  .nav-btn { display: none; }
}
@media (max-width: 768px) {
  .photo-card { min-height: 360px; }
  .title { font-size: 0.95rem; margin-bottom: 0.25rem; }
  .details { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .photo-card { min-height: 340px; }
  .title { font-size: 0.9rem; margin-bottom: 0.2rem; }
}



/* ============================
   JOIN NOW PROMO SECTION
   ============================ */
.join-section {
  background: var(--purple);
  color: var(--white);
  padding: 0.5rem 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-container {
  width: 100%;
  max-width: 1520px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  transition: all 0.4s ease;
}

/* ===== TEXT AREA ===== */
.join-text {
  flex: 1;
  min-width: 280px;
}

.join-text h2 {
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.join-text h2 span {
  color: var(--yellow);
  font-weight: 700;
}

.join-btn {
  background: var(--yellow);
  border: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.join-btn:hover {
  background: var(--white);
  color: var(--dark);
}

/* ===== LOGOS ===== */
.join-logos {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.join-logos img {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .join-container {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }

  .join-text h2 {
    font-size: 1.6rem;
  }

  .join-btn {
    margin: 0 auto;
  }

  .join-logos img {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .join-container {
    padding: 2rem 1.5rem;
  }

  .join-text h2 {
    font-size: 1.4rem;
  }

  .join-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .join-logos img {
    max-width: 380px;
  }
}

@media (max-width: 480px) {
  .join-text h2 {
    font-size: 1.2rem;
  }

  .join-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
  }

  .join-logos img {
    max-width: 320px;
  }
}

/* ============================
   FOOTER SECTION — UPDATED
   ============================ */
.site-footer {
  background: var(--purple);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 5% 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  text-align: center;
}

.footer-container {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

/* ===== TOP SECTION ===== */
.footer-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: 0.2rem;
}

.footer-logo {
  height: 40px;
  width: auto;
}

/* ===== NAVIGATION ===== */
.footer-nav {
  flex: 1;
  display: flex;
  justify-content: space-between; /* evenly spread links */
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-nav a {
  flex: 1;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--yellow);
}

/* ===== BOTTOM SECTION ===== */
.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-nav a {
    flex: unset;
    text-align: center;
    min-width: 130px;
  }
}

@media (max-width: 768px) {
  .footer-nav a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  .footer-logo {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 0.8rem;
  }

  .footer-top {
    gap: 1rem;
  }
}

/* =========================================
   FINAL TRUE FIX — Photo Title & Rating Alignment
   ========================================= */
.photo-gallery .photo-card .photo-info {
  padding: 0.75rem 1rem 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.photo-gallery .photo-card .photo-info .title {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  text-align: left !important;
  color: var(--white);
}

.photo-gallery .photo-card .photo-info .details {
  display: flex !important;
  align-items: baseline !important; /* ✅ align all to text baseline */
  justify-content: flex-start !important;
  gap: 0.4rem !important;
  margin-top: 0.15rem !important; /* ✅ small gap below title */
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.9);
  line-height: 1 !important;
}

.photo-gallery .photo-card .photo-info .stars {
  display: inline-flex !important;
  align-items: center !important;
  color: var(--yellow) !important;
  font-size: 0.92rem !important;
  line-height: 1 !important;
  transform: translateY(1px); /* ✅ perfect vertical balance */
}

.photo-gallery .photo-card .photo-info .divider {
  display: inline-block !important;
  width: 1px !important;
  height: 14px !important;
  background: rgba(255,255,255,0.4) !important;
  transform: translateY(1px); /* ✅ visually centered */
}

.photo-gallery .photo-card .photo-info .photo-count {
  color: var(--white) !important;
  font-size: 0.9rem !important;
  line-height: 1 !important;
}

/* ===== NAV BUTTONS RESTORE ===== */
.photo-gallery .photo-section {
  position: relative !important;
}

.photo-gallery .photo-section .nav-btn {
  opacity: 1 !important;
  pointer-events: auto !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  background: var(--yellow);
  color: var(--dark);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.photo-gallery .photo-section .nav-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-50%) scale(1.1);
}

.photo-gallery .photo-section .prev-btn { left: -2rem !important; }
.photo-gallery .photo-section .next-btn { right: -2rem !important; }

@media (max-width: 1024px) {
  .photo-gallery .photo-section .nav-btn {
    display: none !important;
  }
}

/* =========================================
   FIX — Independent Thumbnail Sizes
   ========================================= */

/* ✅ Keep video thumbnails unchanged */
.video-gallery .thumb {
  aspect-ratio: 16 / 9; /* cinematic look */
  height: auto;
}

.video-gallery .thumb img {
  object-fit: cover;
}

/* ✅ Make exclusive photo thumbnails adjustable separately */
.photo-gallery .thumb {
  width: 100%;
  height: 400px; /* <-- adjust freely here */
  aspect-ratio: auto; /* disables ratio lock */
  overflow: hidden;
}

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

/* Hover zoom (kept for consistency) */
.photo-gallery .photo-card:hover .thumb img {
  transform: scale(1.05);
}
