/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* BASE STYLES */
  body {
    font-family: 'Cinzel', Georgia, serif;  /* Cinzel for all text */
    line-height: 1.6;
    background: #0a0a0a;
    color: #fff;
  }
  
  /* HEADINGS */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', Georgia, serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #f0f0f0, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
/* NAVIGATION */
.navbar {
  background-color: #000;

  background-image:
      linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
      url("images/silk.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 68, 68, 0.3);
}
  
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }
  
  .logo-img {
    height: 40px;        /* Adjust height to fit your navbar */
    width: auto;         /* Keeps aspect ratio */
    max-height: 50px;    /* Prevents overflow */
    display: block;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.9))
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.35));
  }
  
  .logo h2 {
    display: none;       /* Hides the old text completely */
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    text-transform: uppercase;  /* Forces all caps */
    letter-spacing: 1px;        /* Optional: improves readability */
  }
  
  .nav-menu a:hover {
    color: #ff4444;
  }
  
  
  /* HERO SECTION */
  .hero {
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
  }
  
  .hero-image {
    margin: 3rem 0 2rem 0;
    display: flex;
    justify-content: center;
  }
  
  .cta-button {
    display: inline-block;
    background: #ff4444;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #cc0000;
}
  
  /* SECTIONS */
  .section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
  }

.tour-img {
  display: block;
  width: auto;
  max-width: 350px;
  height: auto;
  margin-bottom: 1rem;
}

  /* SNOW EFFECT */
  .snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    background-image:
      radial-gradient(2px 2px at 20% 20%, rgba(255, 255, 255, 0.9), transparent),
      radial-gradient(3px 3px at 40% 40%, rgba(255, 255, 255, 0.8), transparent),
      radial-gradient(4px 4px at 60% 60%, rgba(255, 255, 255, 0.7), transparent),
      radial-gradient(5px 5px at 80% 80%, rgba(255, 255, 255, 0.6), transparent),
      radial-gradient(6px 6px at 30% 70%, rgba(255, 255, 255, 0.4), transparent);
    background-size: 200px 200px, 300px 300px, 400px 400px, 500px 500px, 600px 600px;
    animation: snowFall1 8s linear infinite,
               snowFall2 15s linear infinite reverse,
               snowFall3 22s linear infinite;
  }
  
  @keyframes snowFall1 {
    0% { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 700px, 200px 800px, 400px 900px, 600px 1000px, 800px 1100px; }
  }
  
  @keyframes snowFall2 {
    0% { background-position: 100px 0, 300px 100px, 500px 200px; }
    100% { background-position: 100px 900px, 300px 1000px, 500px 1100px; }
  }
  
  @keyframes snowFall3 {
    0% { background-position: -50px -50px, -150px -100px; }
    100% { background-position: 50px 1000px, 150px 1100px; }
  }
  
/* BIOGRAPHY - 2 COLUMN LAYOUT */
.bio h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
}

.bio-layout {
  display: flex;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  align-items: flex-start;
}

.bio-text {
  flex: 2;
}

.bio-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.stacked-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.bottom-img {
  align-self: flex-end;
}


.bio-section {
  max-width: 900px;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #ff4444;
}

.bio-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-align: left;
}

.bio-section strong {
  color: #ff6666;
}

/* Mobile */
@media (max-width: 900px) {
  .bio-layout {
    flex-direction: column;
    gap: 2rem;
  }

  /* Keep images AFTER the text */
  .bio-image {
    max-width: 100%;
    justify-content: center;
  }

  /* Display the two images side by side */
  .stacked-images {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  /* Make the images responsive */
  .bio-img {
    width: 45%;
    max-width: 200px;
    height: auto;
  }

  /* Remove the desktop offset */
  .bottom-img {
    align-self: center;
  }
}
/* CONTACT PAGE */
/* CONTACT PAGE */
.contact-page {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 100vh;
  padding: 120px 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('images/unsplash1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-page h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
}

.contact-page .contact-container {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
}

.contact-page .contact-form {
  flex: 1;
}

.contact-page .form-group {
  margin-bottom: 1.5rem;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255,68,68,0.3);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Cinzel', serif;
  transition: all 0.3s ease;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
  outline: none;
  border-color: #ff4444;
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 20px rgba(255,68,68,0.2);
}

.contact-page .btn {
  background: linear-gradient(45deg, #ff4444, #ff6666);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-page .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,68,68,0.4);
}

.contact-page .contact-info {
  flex: 0 0 300px;
  background: rgba(255,255,255,0.03);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #ff4444;
}

.contact-page .contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ff6666;
}

.contact-page .contact-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-page .social-links {
  margin-top: 2rem;
}

.contact-page .social-btn {
  display: block;
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  transition: all 0.3s ease;
}

.contact-page .social-btn:hover {
  background: rgba(255,68,68,0.2);
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 0.9rem;
  }

  .nav-menu a {
    font-size: 0.8rem;
  }

  .logo-img {
    height: 30px;
  }

  .contact-page {
    padding-top: 240px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-page h2 {
    display: none;
  }

  .contact-page .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-page .contact-info {
    flex: none;
    width: 100%;
    order: -1;
  }
}
/* Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        flex: none;
        order: -1;
    }
}

.facebook i {
  color: #1877F2;  /* Facebook blue */
}

.instagram i {
  color: #E4405F;  /* Instagram pink/red */
}

.spotify i {
  color: #1DB954;  /* Spotify green */
}

.bandcamp i {
  color: #629AA9;  /* Bandcamp teal/blue */
}

.tiktok i {
  color: #000000;  /* TikTok black */
}

.youtube i {
  color: #FF0000;  /* YouTube red */
}

.apple i {
  color: #FA57C1;  /* Apple Music pink */
}

.amazon i {
  color: #FF9900;  /* Amazon orange */
}

.soundcloud i {
  color: #FF5500;  /* SoundCloud orange */
}

.deezer i {
  color: #A238FF;  /* Deezer purple */
}

.tidal i {
  color: #FFFFFF;  /* TIDAL white */
}

.qobuz i {
  color: #00AEEF;  /* Qobuz blue */
}
/* Mockup section styles */
.mockup-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.mockup-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  background: rgba(15, 15, 15, 0.88);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 68, 68, 0.25);
  transition: transform 0.2s ease;
  text-align: center;
}

.mockup-item:hover {
  transform: translateY(-5px);
}

.mockup-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #eee;
}

.mockup-image img {
  width: 100%;
  height: auto;
  display: block;
}


.mockup-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  margin: 0.75rem 0 0.5rem;
  color: #f0f0f0;
}

.mockup-item p {
  font-size: 0.9rem;
  color: #d0d0d0;
  margin-bottom: 1.25rem;
}

.feature-list {
  color: #d0d0d0;
}

.mockup-item strong {
  color: #ffffff;
}

.preorder-btn {
  display: inline-block;
  background-color: #ff4444;
  color: white;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  transition: background-color 0.2s ease,
              transform 0.2s ease;
  font-size: 0.9rem;
}

.preorder-btn:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .mockup-container {
      flex-direction: column;
      align-items: center;
  }
}
/* Feature list - force dark text on white background */
.feature-list {
  text-align: left;
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: #000000;        /* dark gray/black */
  list-style-type: disc;
}

.feature-list li {
  margin-bottom: 0.4rem;
  line-height: 1.4;
  color: #ffffff;        /* ensures each bullet point is dark */
}
/* Footer social icon hover effect (gold on hover) */
footer .nav-container a:hover i {
  color: #c9a03d;
  opacity: 0.9;
} 
.media-page h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
}
.contact-form select {
  background: rgba(20,20,20,0.95);
  color: #fff;
}

.contact-form select option {
  background: #f7eded;
  color: #000000;
}
.listen-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.listen-buttons .cta-button {
  width: 280px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.secondary-cta {
  opacity: 0.9;
}
.cta-button {
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

.secondary-cta:hover {
  opacity: 1;
}
.price-badge {
  display: block;
  width: fit-content;
  background-color: #ff4444;
  color: white;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin: 1rem auto 0.5rem;
}

.bundle-price span {
  display: block;
  font-size: 0.7rem;
  margin-top: 2px;
  color: #ff9999;
}
.purchase-box {
  margin-top: 1rem;
  text-align: center;
}

.price-tag {
  display: inline-block;
  background-color: #cc0000;
  color: white;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
}

.preorder-btn {
  display: block;
  width: 220px;
  margin: 0 auto;
  background-color: #ff4444;
  color: white;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  text-align: center;
}

.preorder-btn:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}
.feature-list {
  color: #d0d0d0;
  min-height: 260px;
}
.deluxe-card {
  display: flex;
  flex-direction: column;
}

.deluxe-card .purchase-box {
  margin-top: auto;
  text-align: center;
}
@media (max-width: 768px) {

  .nav-container {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
  }

  .nav-menu {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem 1rem;
  }

  .nav-menu a {
      font-size: 0.85rem;
  }

  .logo-img {
      height: 32px;
  }
}
.album-art {
  max-width: 100%;
  height: auto;
  display: block;
}
/* TOUR PAGE */
.tour-section {
  width: 100%;
  min-height: 100vh;
  padding: 160px 2rem 3rem;
  text-align: center;

  background-image:
      linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
      url("images/unsplash.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.tour-section h2 {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.9);
}

.tour-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
}

.tour-img {
  display: block;
  width: auto;
  max-width: 350px;
  height: auto;
  margin: 0 auto 2rem;
}
@media (max-width: 768px) {

  .tour-section {
      padding: 220px 2rem 3rem;
  }

  .tour-section h2 {
      font-size: 2.5rem;
  }

  .tour-section p {
      font-size: 1.1rem;
  }

  .tour-img {
      max-width: 80%;
  }
}
