/* === SZA: Saturn Website Style (Hybrid Saturn Background) === */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&family=Montserrat:wght@300;500;700&display=swap');

:root {
  --saturn-gold: #d8c086;
  --saturn-beige: #e8dcc1;
  --saturn-ivory: #f7f3ea;
  --saturn-brown: #8b7b6b;
  --saturn-gray: #2b2b33;
  --cosmic-blue: #0b0c14;
  --cosmic-purple: #1a1530;
  --accent: #d1b36e;
  --text-light: #f1f0ed;
  --text-muted: #c5c1ba;
  --highlight: #f0d28a;
}

/* --- GLOBAL STYLES --- */
body {
  margin: 0;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;

  /* Hybrid Saturn background */
  background:
    radial-gradient(circle at center,
      rgba(216, 192, 134, 0.08) 0%,
      rgba(10, 10, 20, 0.9) 80%,
      rgba(0, 0, 0, 1) 100%),
    url('saturn-bg.png') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: lighten;
}

/* --- NAVIGATION --- */
/* --- NAVIGATION (Centered Version) --- */
nav {
  background: rgba(15, 15, 25, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 10px rgba(216, 192, 134, 0.25);
}

nav h2 {
  color: var(--highlight);
  font-weight: 200;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

nav div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

nav a {
  color: var(--saturn-beige);
  text-decoration: none;
  font-weight: 200;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

nav a:hover,
nav a.active {
  color: var(--highlight);
  text-shadow: 0 0 8px rgba(240, 210, 138, 0.6);
  background: rgba(216, 192, 134, 0.1);
}


/* --- HERO --- */
.hero {
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: linear-gradient(to bottom, rgba(10, 10, 20, 0.6), rgba(10, 10, 15, 0.95));
  color: var(--saturn-ivory);
}

.hero img {
  width: 300px;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(209, 179, 110, 0.4);
}

.hero h1 {
  font-size: 3rem;
  margin-top: 1rem;
  color: var(--highlight);
  letter-spacing: 1px;
}

.hero p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 1rem auto 2rem;
  color: var(--text-muted);
}

/* --- SECTIONS --- */
section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(20, 20, 30, 0.6);
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(216, 192, 134, 0.1);
}

section h2 {
  color: var(--saturn-gold);
  font-size: 2rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* --- CARDS --- */
.card {
  background: rgba(43, 43, 51, 0.8);
  border: 1px solid rgba(216, 192, 134, 0.25);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 25px rgba(216, 192, 134, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 40px rgba(216, 192, 134, 0.3);
}

/* --- BUTTONS --- */
button, .btn {
  background: linear-gradient(100deg, var(--saturn-gold), var(--saturn-beige));
  border: none;
  color: #111;
  padding: 0.75rem 1.5rem;
  border-radius: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(216, 192, 134, 0.3);
}

button:hover, .btn:hover {
  background: linear-gradient(100deg, var(--highlight), var(--saturn-gold));
  box-shadow: 0 0 20px rgba(240, 210, 138, 0.6);
}

/* --- GALLERY --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(240, 210, 138, 0.3);
}

/* --- CONTACT FORM --- */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(43, 43, 51, 0.7);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(216, 192, 134, 0.2);
}

input, textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 1rem;
}

input:focus, textarea:focus {
  box-shadow: 0 0 10px rgba(216, 192, 134, 0.4);
}

/* --- FOOTER --- */
footer {
  background: rgba(10, 10, 15, 0.9);
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(216, 192, 134, 0.25);
  font-size: 0.9rem;
}

/* --- QUIZ --- */
.quiz {
  background: rgba(43, 43, 51, 0.7);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.quiz input[type="radio"] {
  margin: 0.5rem;
}

.quiz button {
  margin-top: 1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero img {
    width: 220px;
  }

  section {
    padding: 3rem 1rem;
  }
}

/* === HOME PAGE === */

.home-hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(216, 192, 134, 0.15), rgba(10, 10, 15, 0.95));
  background-image: url('assets/saturn-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Soft overlay for the Saturn planet look */
.home-hero::after {
  content: "";  
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(216, 192, 134, 0.25), rgba(0, 0, 0, 0.8));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--saturn-beige);
  padding: 2rem;
  animation: fadeIn 1.5s ease;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 1rem;
}

.hero-content h1 span {
  color: var(--highlight);
}

.hero-content p {
  margin: 1rem 0 2rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.album-cover {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid rgba(216, 192, 134, 0.6);
  box-shadow: 0 0 40px rgba(216, 192, 134, 0.3);
  animation: float 4s ease-in-out infinite;
}

.explore-btn {
  background-color: var(--highlight);
  color: #0d0d0f;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.8rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(216, 192, 134, 0.4);
}

/* Floating animation for album */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Intro Section --- */
.intro-section {
  padding: 4rem 2rem;
  background: rgba(43, 43, 51, 0.8);
  text-align: center;
}

.intro-container {
  max-width: 800px;
  margin: auto;
}

.intro-container h2 {
  color: var(--highlight);
  margin-bottom: 1rem;
}

.intro-container p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}


/* === ALBUM PAGE STYLING === */

.album-hero {
  text-align: center;
  padding: 7rem 2rem;
  background: radial-gradient(circle at center, rgba(216, 192, 134, 0.1), rgba(10, 10, 15, 0.9));
}

.album-hero img {
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(216, 192, 134, 0.4);
  transition: transform 0.3s ease;
}

.album-hero img:hover {
  transform: scale(1.05);
}

.album-hero h1 {
  font-size: 2.5rem;
  color: var(--highlight);
  margin-top: 1.5rem;
}

.album-hero p {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin: 0.5rem 0 1.5rem;
}

/* --- TRACKLIST --- */
.tracklist {
  text-align: center;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.track-card {
  background: rgba(43, 43, 51, 0.7);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(216, 192, 134, 0.2);
  box-shadow: 0 0 20px rgba(216, 192, 134, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(216, 192, 134, 0.25);
}

.track-card h3 {
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

/* --- STREAM SECTION --- */
.stream-section {
  text-align: center;
  margin-top: 4rem;
}

.stream-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stream-links img {
  width: 50px;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.stream-links img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* --- QUOTE SECTION --- */
.quote-section {
  text-align: center;
  margin: 5rem auto;
  font-style: italic;
}

blockquote {
  font-size: 1.4rem;
  color: var(--saturn-beige);
  background: rgba(43, 43, 51, 0.7);
  display: inline-block;
  padding: 2rem 3rem;
  border-radius: 16px;
  border: 1px solid rgba(216, 192, 134, 0.3);
  box-shadow: 0 0 30px rgba(216, 192, 134, 0.1);
}

blockquote span {
  display: block;
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}
/* === MUSIC PAGE STYLING === */

.music-hero {
  background: radial-gradient(circle at center, rgba(216, 192, 134, 0.12), rgba(10, 10, 15, 0.9));
  text-align: center;
  padding: 7rem 2rem;
}

.music-videos {
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-card {
  background: rgba(43, 43, 51, 0.8);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(216, 192, 134, 0.2);
  box-shadow: 0 0 20px rgba(216, 192, 134, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(216, 192, 134, 0.25);
}

.video-card h3 {
  color: var(--highlight);
  margin-top: 1rem;
}

.stream-links-section {
  text-align: center;
  padding: 5rem 2rem;
}

.stream-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

/* --- MERCH --- */
.merch-section {
  text-align: center;
  margin-top: 4rem;
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.merch-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(216, 192, 134, 0.2);
  transition: transform 0.3s ease;
}

.merch-grid img:hover {
  transform: scale(1.05);
}

.merch-grid h3 {
  color: var(--highlight);
  margin: 1rem 0 0.5rem;
}

.merch-grid p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* === CONTACT PAGE (Enhanced) === */
.contact-page {
  padding: 5rem 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(216,192,134,0.08), rgba(10,10,15,0.95));
  color: var(--text-color);
  min-height: 100vh;
}

.contact-page h1 span {
  color: var(--highlight);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin-top: 3rem;
}

form {
  background: rgba(15, 15, 25, 0.7);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(216,192,134,0.2);
  max-width: 400px;
  width: 100%;
}

form input, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

form button {
  background: var(--highlight);
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

form button:hover {
  background: #fff;
  color: var(--highlight);
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1); /* makes icons white */
  transition: transform 0.3s, filter 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
  filter: brightness(0.8) sepia(1) hue-rotate(40deg) saturate(3);
}


/* Social Media Section */
.social-media {
  max-width: 400px;
  text-align: center;
}

.social-media h2 {
  color: var(--highlight);
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.social-icons a {
  color: var(--saturn-beige);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--highlight);
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(216,192,134,0.5);
}

/* Credits */
.credits {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.note {
  font-style: italic;
  color: var(--highlight);
}

/* === QUIZ PAGE === */
.quiz-hero {
  background: radial-gradient(circle at center, rgba(216, 192, 134, 0.2), rgba(10, 10, 15, 0.95));
  text-align: center;
  padding: 6rem 2rem;
}

.quiz-section {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
}

.quiz-container {
  background: rgba(43, 43, 51, 0.8);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 0 30px rgba(216, 192, 134, 0.2);
  max-width: 700px;
  width: 100%;
}

.quiz-container h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--highlight);
}

.quiz-question {
  margin-bottom: 1.5rem;
}

.quiz-question p {
  font-weight: 600;
  color: var(--saturn-beige);
  margin-bottom: 0.5rem;
}

.quiz-question label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.quiz-question input[type="radio"] {
  accent-color: var(--highlight);
  margin-right: 8px;
}

.quiz-result {
  display: none;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: var(--highlight);
  transition: opacity 0.5s ease;
}

.quiz-result.show {
  display: block;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* === GALLERY PAGE === */
.gallery-hero {
  background: radial-gradient(circle at center, rgba(216, 192, 134, 0.2), rgba(10, 10, 15, 0.95));
  text-align: center;
  padding: 6rem 2rem;
}

.gallery-section {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  width: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(216, 192, 134, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: radial-gradient(circle at center, rgba(216, 192, 134, 0.2), transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 600px) {
  .gallery-hero {
    padding: 4rem 1rem;
  }
}
/* === GALLERY PAGE (Enhanced & Larger Images) === */

.gallery-page {
  padding: 5rem 2rem;
  text-align: center;
  background: radial-gradient(circle at center, rgba(216,192,134,0.1), rgba(10,10,15,0.95));
  color: var(--text-color);
  min-height: 100vh;
}

.gallery-page h1 span {
  color: var(--highlight);
}

.subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* Larger Image Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Bigger base size */
  gap: 1rem; /* slightly reduced gap for tighter layout */
  padding: 0 2rem;
  justify-items: center;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 500px; /* keep large but controlled width */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.6s ease;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 35px rgba(216,192,134,0.35);
}

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

/* Caption */
.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,10,15,0.75);
  color: var(--highlight);
  font-size: 1rem;
  padding: 0.8rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.gallery-item:hover .caption {
  opacity: 1;
}

/* Lightbox (same as before) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(216,192,134,0.4);
  animation: fadeIn 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 3rem;
  color: var(--highlight);
  cursor: pointer;
  transition: 0.3s;
}

.lightbox .close:hover {
  color: #fff;
  transform: scale(1.1);
}
.gallery-page {
  text-align: center;
  padding: 50px;
  color: #fff;
}

.gallery-page h1 {
  font-size: 2.8rem;
  color: #f5d483;
  margin-bottom: 10px;
}

.gallery-page .subtitle {
  color: #cfcfcf;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(245, 212, 131, 0.6);
}

.divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, transparent, #f5d483, transparent);
  margin: 60px auto;
  width: 80%;
}

.product-section {
  text-align: center;
  padding: 30px 10%;
}

.product-section h2 {
  color: #f5d483;
  font-size: 2rem;
  margin-bottom: 15px;
}

.product-section .description {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}

.product-gallery img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(245, 212, 131, 0.6);
}

.shop-button {
  background: linear-gradient(45deg, #d1aa57, #f5d483);
  color: #000;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.shop-button:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #f5d483, #fff0c0);
}
