* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
  scroll-behavior: smooth;
}

  body {
    font-family: 'Montserrat', sans-serif;
    background-color:#fefdfb;;
    color: #111;
  }
  
  header {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 16px;
    position: sticky;
    top: 0;
    z-index: 999;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1260px;
    margin: auto;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo-img {
    height: 95px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    padding-right: 90px;
  }  
  
/* Hide nav links on small screens, show hamburger */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Default desktop */
.nav-links {
  display: flex;
  gap: 18px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 70px; /* just below header */
    right: 20px;
    padding: 15px;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex; /* toggle open */
  }

  .hamburger {
    display: block;
  }
}

.artistry-spotlight {
  display: none;
}

/* Mobile Spotlight for Artistry */
@media (max-width: 768px) {
  .nav-links li.artistry-link {
    display: none; /* hide artistry in dropdown */
  }

  .artistry-spotlight {
    display: inline-block;
    margin-left: auto;
  }

  .artistry-spotlight a {
    color: #f3c623; /* golden highlight */
    font-weight: bold;
    text-decoration: none;
    padding: 8px 12px;
  }

  .artistry-spotlight a:hover {
    text-decoration: underline;
  }
}

  .nav-links li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #f3c623;
  }
  
  .hero {
    padding: 50px 20px;
    text-align: center;
    background-color: #fefdfb;
  }
  
  .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #222;
    margin-bottom: 50px;
   margin: 0 auto 50px; /* centers it */
  text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
  
  .hero-image {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .hero-text-block {
    max-width: 600px;
  }
  
  .tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
  }
  
  .bio {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  
  .bio-container {
    max-width: 1000px;
    margin: 40px auto 0;
    padding: 0 20px;
    text-align: left;
    margin-top: 10px;
  }
  
  .highlight-link {
    color: #d4af37;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .highlight-link:hover {
    text-decoration: underline;
    color: #b2912e;
  }
  

  .hero-text h1 {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 1.3rem;
    color: #808080;
  }
  
  .short-bio {
    margin-top: 15px;
  }
  
  .extended-bio {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 40px;
     padding: 0 20px;
    align-items: flex-start;
  }
  
  .bio-text {
    flex: 1 1 500px;
  }
  
  .childhood-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1 1 100px;
  }
  
  .child-img {
    width: 68%;
  max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    object-fit: cover;
  }
  
  .quote {
    margin-top: 20px;
    font-style: italic;
    color: #666;
    border-left: 4px solid #d4af37;
    padding-left: 12px;
    font-size: 0.95rem;
  }
  
  #discography {
    padding: 10px 20px;
    background-color: #fffef9;
    text-align: center;
  }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .section-header h3 {
    font-size: 1.6rem;
    color: #222;
    margin: 0;
  }
  
  .section-header a {
    font-size: 1.6rem;
    color: #222;
    transition: color 0.3s ease;
  }
  
  .section-header a:hover {
    color: #d4af37;
  }
  

  .title-disco {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
  }
  .latest-releases, .all-releases {
    max-width: 1600px;
    margin: 50px auto;
  }
  
  .release-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .release-card {
    width: 320px;
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
  }
  
  .stream-links a {
    display: inline-block;
    margin: 5px;
    padding: 6px 12px;
    background-color: #d4af37;
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  
  .stream-links a:hover {
    background-color: #b2912e;
  }
  
  .release-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 700px;
    margin: 20px auto 0;
  }
  
  .release-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
  }

  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  #festivals {
    padding: 80px 20px;
    background-color: #fffef9;
    text-align: center;
  }
  
  #festivals h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  #festivals p {
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }
  
  #weddings {
    padding: 80px 20px;
    background-color: #fefdfb;
    text-align: center;
  }
  
  #weddings h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  #weddings p {
    font-size: 1.05rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }
  


  #media {
    padding: 80px 20px;
    background-color: #fcfaf7;
    text-align: center;
  }
  
  #media h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
  }
  
  .media-category {
    max-width: 1100px;
    margin: 16px auto 60px;
    text-align: center;
  }
  
  .media-category h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .media-category p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .media-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    /* <- increased */
  margin: 0 auto;
  }
  
  .media-card {
  flex: 1 1 calc(33.333% - 30px); /* 3 per row on desktop */
  max-width: 300px; /* prevents cards from being too wide */
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}
  
  .media-card iframe {
    width: 100%;
    height: 170px;
    border-radius: 6px;
  }
  
  .media-card p {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
  }  
  
  .media-card video.media-video {
    width: 100%;
    height: 170px;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  

  .media-article {
    margin-top: 20px;
  }
  
  .media-article img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
  
  .media-article a {
    display: inline-block;
    margin-top: 12px;
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
  }
  
  .media-article a:hover {
    text-decoration: underline;
  }

  .media-img {
    width: 100%;
    height: 198px;
    object-fit: cover;
    object-position: 50% 15%;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  }
  
  
  .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .video-container iframe,
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  
  
  #AndaloRetro {
    padding: 80px 20px;
    background-color: #fffdf7;
    text-align: center;
  }
  
  #AndaloRetro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .andalotext {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
  }
  
  #contact {
    padding: 80px 20px;
    background-color: #fffef9;
    text-align: center;
  }
  
  #contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
  }
  
  .contact-intro {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
  }
  
  .contact-info p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 20px;
  }
  
  .contact-info a {
    color: #d4af37;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    margin-top: 10px;
  }
  
  .social-icons a {
    font-size: 1.6rem;
    color: #222;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #d4af37;
  }

  footer {
    padding: 30px 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #999;
  }

  .lightbox {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(4px);
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  position: relative;
  text-align: center;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.lightbox-caption {
  color: white;
  margin-top: 15px;
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
}

.lightbox .close {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
}

/* Mobile fixes */
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  @media (max-width: 768px) {
  .logo-img {
    padding-right: 0;
    height: 70px; /* smaller logo on phones */
  }
}

  /* Tablets */
/* Tablets */
@media (max-width: 1024px) {
  .media-card {
    flex: 1 1 calc(45% - 30px); /* 2 per row */
    max-width: none;
  }
}

/* Phones */
@media (max-width: 600px) {
  .media-card {
    flex: 1 1 calc(48% - 20px); /* 2 per row, smaller */
    max-width: none;
  }
}

  .main-title {
    font-size: 2.2rem;
    margin-left: 0; /* 🚨 remove giant left margin */
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .extended-bio {
    margin-right: 0; /* 🚨 fix chopped text */
    flex-direction: column;
    align-items: center;
  }

  .bio-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .childhood-images {
    flex-direction: row; /* or column depending on look */
    justify-content: center;
  }

  .child-img {
    width: 100%;
    max-width: 200px;
  }

  .media-grid {
    gap: 15px;
  }

  .media-card {
    width: 100%;
    max-width: 320px;
  }
}

/* Artistry Banner */
.artistry-banner {
  margin: 40px auto;
  padding: 22px;
  background: #f7f2e8; /* soft warm tone like your site */
  border-radius: 12px;
  text-align: center;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.artistry-banner-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #af9338;
  text-decoration: none;
  transition: 0.25s ease;
}

.artistry-banner-link:hover {
  color: #947b30;
  text-shadow: 0 0 6px rgba(212,175,55,0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .artistry-banner {
    padding: 18px;
    margin: 30px 15px;
  }

  .artistry-banner-link {
    font-size: 1.1rem;
  }
}

/* Gallery Banner */
.gallery-banner {
  margin: 50px auto;
  padding: 22px;
  background: #f7f2e8;
  border-radius: 12px;
  text-align: center;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.gallery-banner-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: #a88d35;
  text-decoration: none;
  transition: 0.25s ease;
}

.gallery-banner-link:hover {
  color: #866f28;
  text-shadow: 0 0 6px rgba(212,175,55,0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .gallery-banner {
    padding: 18px;
    margin: 35px 15px;
  }

  .gallery-banner-link {
    font-size: 1.1rem;
  }
}

/* Latest Highlights */
#latest-highlights {
  padding: 80px 20px;
  background-color: #fefdfb;
  text-align: center;
}

.latest-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 12px;
}

.latest-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.latest-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.latest-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #444;
}

/* Desktop hover play */
@media (hover: hover) {
  .latest-card:hover video {
    filter: brightness(1.05);
  }
}

@media (max-width: 768px) {
  .latest-card {
    width: 100%;
    max-width: 360px;
  }
}

.latest-card {
  width: 420px;
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* Vertical (TikTok-style) video container */
.vertical-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
}

/* Make video fit properly */
.vertical-video video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ← IMPORTANT */
  border-radius: 12px;
}

/* Play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hide overlay when playing */
.latest-card.playing .play-overlay {
  opacity: 0;
}

