.logo-img {
    width: 50%;
    max-width: 500px;
    filter: grayscale(100%); /* Adds a moody aesthetic */
}
body {
    background-color: #000; /* Dark background */
    /* background-image: url('EP background.jpg'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;           /* Light text */
    font-family: 'Courier New', Courier, monospace; /* Gritty, indie font */
    margin: 0;
    padding: 0;
    text-align: center;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none; /* optional: removes the default underline */
}

header h1 {
    font-size: 2rem;
    letter-spacing: 10px;
    margin: 20px 0;
}

.top-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  max-width:min(50%, 600px);
}
.top-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  /* Fluid sizing */
  font-size: clamp(0.85rem, 2.5vw, 2rem);
}

header h2 {
    font-size: 1.5rem;
    letter-spacing: 10px;
    margin: 0px 0;
}
nav ul {
    list-style: none;
    padding: 0;
}

/* nav li {
    display: inline;
    margin: 0 15px;
    font-size: 2rem;
    gap: 5rem;
} */
nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}

.apple-link {
    color: #FF4E6B;
    font-size: 2rem;
    letter-spacing: 10px;
    text-decoration: none;
    font-style: bold;
    background: transparent;
    border: 1px solid #fff; 
    border-radius: 18px;
    padding: 18px 22px;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.spotify-link {
    color: #1DB954;
    font-size: 2rem;
    letter-spacing: 10px;
    text-decoration: none;
    font-style: bold;
     background: transparent;
     border: 1px solid #fff; 
    border-radius: 18px;
    padding: 18px 22px;
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.luchador-img {
    width: 10%;
    max-width: 500px;
    filter: grayscale(100%); /* Adds a moody aesthetic */
    animation: spin 8s linear infinite;
    padding: 0;
    margin: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg); /* Start at 0 degrees */
  }
  100% {
    transform: rotate(360deg); /* End at 360 degrees (one full turn) */
  }
}

section {
    padding: 50px 20px;
}

.tour-row {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 10px auto;
    border-bottom: 1px solid #333;
    padding: 20px 0;
}

.ticket-btn {
    border: 1px solid #fff;
    padding: 2px 10px;
    color: #fff;
    text-decoration: none;
}

.ticket-btn:hover {
    background: #fff;
    color: #000;
}

.image-container {
    display: flex;       /* Makes the div a flex container */
    justify-content: center; /* Optional: centers the images within the container */
    gap: 20px;           /* Optional: adds space between the images */
    padding: 0;
    margin: 0;
}

.image-container img {
    width: 30%;          /* Adjust width to fit three across (e.g., 33% minus gap space) */
    max-width: 400px;
    height: auto;        /* Maintains aspect ratio */
    padding: 0;
    margin: 0;
}

.star-image {
  width: 300px; /* Set desired width and height */
  height: 300px;
  object-fit: cover; /* Ensures the image covers the entire area within the shape without stretching */
  clip-path: polygon(
    50% 5%, /* center */
    61% 30%, /* upper inner right */
    100% 30%, /* far right tip */ 
    68% 48%, /* lower inner right */
    80% 80%, /* bottom right tip */
    50% 60%, /* bottom indent */
    15% 80%, /* bottom left tip */
    32% 48%, /* lower inner left */
    0% 30%, /* far left tip */
    39% 30% /* upper inner left */
  );
  margin: 0;
  padding: 0px 0;
  filter: grayscale(100%); /* Adds a moody aesthetic */
}
.speech-row {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  justify-content: center;
}

.speech-image {
    display: block;
    width: 30%;
    max-width: 500px;
    filter: grayscale(100%); /* Adds a moody aesthetic */
    animation: spin 8s linear infinite;
    padding: 0;
    margin: 0;
    height: auto;
}

.speech-bubble {
  position: relative;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  max-width: 260px;
  line-height: 1.2;
}

/* Bubble tail */
.speech-bubble::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 24px;
  border-width: 8px 10px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.speech-bubble a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 600;
}

.speech-bubble a:hover {
  text-decoration: underline;
}
.speech-bubble p {
  margin: 0;
}
.page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding:8px 0;
}
.top-nav a:hover {
    color: #ff4da6;             /* pink */
    text-decoration: underline; /* optional */
}
/* ===== Contact Page Styles ===== */
.contact-page {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-card {
  width: min(600px, 90%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid #444;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: left;
}

.contact-card h1 {
  font-size: 2.5rem;
  letter-spacing: 8px;
  margin: 0 0 10px;
  text-align: center;
}

.contact-card .subheading {
  font-size: 1.2rem;
  letter-spacing: 6px;
  color: #aaa;
  margin: 0 0 20px;
  text-align: center;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  padding: 14px 0;
  border-bottom: 1px solid #333;
  font-size: 1.1rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-list strong {
  display: inline-block;
  width: 90px;
  color: #fff;
}

.contactpoint {
  color: #bbb;
}