/* ==============================
   Base Styles
============================== */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #222;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap,
.footer {
  width: 92%;
  max-width: 68ch;
  margin: 0 auto;
  text-align: center;
}

.wrap {
  font-size: 14px;
}

.footer {
  font-size: 12px;
}

/* ==============================
   Header & Logo
============================== */
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.logo,
.logo-container {
  text-align: center;
  margin: 20px 0;
}

.logo img,
.logo-container img.swing_tickets_logo,
.responsive-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.logo img {
  margin-bottom: 20px;
}

/* ==============================
   Mobile Break
============================== */
.mobile-break {
  display: none;
}

@media (max-width: 767px) {
  .mobile-break {
    display: inline;
  }
}

/* ===== Primary Nav Base ===== */
.primary-nav summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  padding: 1rem;
  border-radius: 2px;
  display: inline-block;
  user-select: none;
  color: #000;
}

/* Base mobile layout */
.primary-nav ul {
  list-style: none;
  padding: 5px 0;
  margin: 0;
  text-align: center;
  background-color: #000;
}

.primary-nav li {
  display: block;
  margin: 0.25rem 0;
  letter-spacing: 2px;
}

/* Mobile link colors */
@media (max-width: 767px) {
  .primary-nav ul li a {
    color: #ffffff;           /* White by default */
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
  }

  .primary-nav ul li a:hover,
  .primary-nav ul li a:focus {
    color: #E52F7E;           /* Pink on hover/focus */
  }

  /* Center the hamburger */
  .primary-nav {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .primary-nav details {
    display: inline-block;
  }

  .primary-nav summary {
    display: inline-block;
    margin: 0.5rem auto;
    font-size: 30px;
    padding: 0.5rem 0.75rem;
    text-align: center;
  }

  .primary-nav summary::-webkit-details-marker {
    display: none;
  }

  /* Mobile dropdown spans full width */
  .primary-nav details > ul {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background-color: #000;
    padding: 10px 0;
    text-align: center;
    box-sizing: border-box;
  }
}

/* Desktop layout */
@media (min-width: 768px) {
  .primary-nav summary {
    display: none;
  }
  .primary-nav ul {
    display: flex;
    gap: 3rem;
    text-align: center;
  }
  .primary-nav li {
    display: inline-block;
    margin: 0 10px;
  }
}

/* ==============================
   Mobile Full-Width Dropdown + Slide/Fade + Animated Shadow
============================== */
@media (max-width: 767px) {
  /* Center hamburger and nav */
  .primary-nav {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  .primary-nav details {
    display: inline-block !important;
  }

  .primary-nav summary {
    display: inline-block !important;
    margin: 0.5rem auto !important;
    float: none !important;
    text-align: center !important;
    font-size: 30px !important;
    padding: 0.5rem 0.75rem;
  }

  .primary-nav summary::-webkit-details-marker {
    display: none !important;
  }

  /* Dropdown full width */
  .primary-nav details > ul {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    background-color: #000 !important;
    padding: 10px 0 !important;
    text-align: center !important;
    box-sizing: border-box !important;

    /* Slide down */
    max-height: 500px;
    overflow: hidden;
    transition: 
      max-height 0.35s ease-in, 
      padding 0.35s ease-in, 
      border-radius 0.35s ease-in, 
      box-shadow 0.35s ease-in;

    /* Start state for animation */
    border-radius: 0px;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }

  /* Animated rounded corners + shadow when open */
  .primary-nav details[data-animated="true"] > ul {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  /* Slide/fade links */
  .primary-nav details ul li {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
  }

  .primary-nav details[open] > ul li {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease-in, transform 0.35s ease-in;
  }

  /* Optional stagger for cascade effect */
  .primary-nav details[open] > ul li:nth-child(1) { transition-delay: 0s; }
  .primary-nav details[open] > ul li:nth-child(2) { transition-delay: 0.05s; }
  .primary-nav details[open] > ul li:nth-child(3) { transition-delay: 0.1s; }
  .primary-nav details[open] > ul li:nth-child(4) { transition-delay: 0.15s; }
  .primary-nav details[open] > ul li:nth-child(5) { transition-delay: 0.2s; }
}

/* ==============================
   Hero, Footer, Other Links
============================== */
.hero {
  padding: 1.25rem 0;
}

.hero h1 {
  margin: 0 0 0.25rem;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid #eee;
}

.site-footer .wrap {
  padding: 1rem 0;
  font-size: 0.95rem;
  color: #555;
}

a[href^="mailto:"] {
  color: #000 !important;
  text-decoration: underline !important;
}

.phone-link {
  color: black !important;
  text-decoration: none !important;
  font-weight: bold;
  letter-spacing: 1px;
}
/* ===== MOBILE MENU ===== */
.mobile-nav summary {
  cursor: pointer;
  font-size: 28px;
  color: #E52F7E;
  background: none;
  border: none;
  padding: 0;
}
.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav ul.nav-links {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0 auto;
  text-align: center;
  border-radius: 0px;
  background-color: #fff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.mobile-nav[open] ul.nav-links {
  opacity: 1;
  max-height: 500px;
}

.mobile-nav li {
  margin: 0.25rem 0;
}

.mobile-nav li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  color: #E52F7E;
}

/* ===== DESKTOP/TABLET MENU ===== */
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav li {
  display: inline-block;
}

.desktop-nav li a {
  color: #E52F7E;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.desktop-nav li a:hover,
.desktop-nav li a:focus {
  transform: scale(1.05);
  color: #FF66B2;
}

/* ===== HIDE DESKTOP NAV ON MOBILE ===== */
@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
/* ===== MOBILE MENU ===== */
.mobile-nav summary {
  cursor: pointer;
  font-size: 28px;
  color: #000000;
  background: none;
  border: none;
  padding: 0;
}
.mobile-nav summary::-webkit-details-marker { display: none; }

.mobile-nav ul.nav-links {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0 auto;
  text-align: center;
  border-radius: 0px;
  background-color: #fff;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.mobile-nav[open] ul.nav-links {
  opacity: 1;
  max-height: 500px;
}

.mobile-nav li {
  margin: 0.25rem 0;
}

.mobile-nav li a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0;
  transition: color 0.2s ease;
}

.mobile-nav li a:hover,
.mobile-nav li a:focus {
  color: #E52F7E;
}

/* ===== DESKTOP/TABLET MENU ===== */
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-nav li {
  display: inline-block;
}

.desktop-nav li a {
  color: #E52F7E;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.desktop-nav li a:hover,
.desktop-nav li a:focus {
  transform: scale(1.05);
  color: #FF66B2;
}

/* ===== HIDE DESKTOP NAV ON MOBILE ===== */
@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }
}
.footer {
  color: #000;        /* black text for copyright */
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
}

.footer-separator {
  margin: 0 6px;
}

.footer a.footer-link {
  color: #000;        /* default link black */
  text-decoration: none;
}

.footer a.footer-link:hover {
  color: #E52F7E;     /* pink on hover */
  text-decoration: underline;
}

/* Mobile-friendly stacking */
@media (max-width: 600px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .footer-separator {
    display: none;
  }
}
/* Stack footer on small screens */
@media (max-width: 600px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .footer-separator {
    display: none;
  }
}
/* Cookie Consent Styling */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 1000;
  color: #fff;
  font-size: 14px;
}

.cookie-box {
  max-width: 800px;
  text-align: center;
}

.cookie-box a {
  color: #E52F7E;
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 10px;
}

.cookie-buttons button {
  background: #E52F7E;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cookie-buttons button:hover {
  background: #fff;
  color: #E52F7E;
  border: 1px solid #E52F7E;
}
/* Footer styling */
.site-footer {
  background: #fff;        /* white background */
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #000;             /* footer text black */
}

.footer a.footer-link,
.footer a.footer-link:visited {
  color: #000;             /* Privacy link black */
  text-decoration: none;
}

.footer a.footer-link:hover,
.footer a.footer-link:focus {
  color: #E52F7E;          /* pink hover */
  text-decoration: none;
}

.footer-separator {
  margin: 0 6px;
}

/* Mobile-friendly footer */
@media (max-width: 600px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .footer-separator {
    display: none;
  }
}

/* Cookie Consent Styling */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;          /* shown by JS */
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 1000;
  font-size: 14px;
}

.cookie-box {
  max-width: 800px;
  background: #000;       /* black popup background */
  color: #fff;            /* white text */
  padding: 20px;
  text-align: center;
  border-radius: 4px;
}

.cookie-box a {
  color: #E52F7E;         /* pink link inside popup */
  text-decoration: underline;
}

.cookie-buttons {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cookie-buttons button {
  background: #E52F7E;    /* pink buttons */
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.cookie-buttons button:hover {
  background: #fff;
  color: #E52F7E;
  border: 1px solid #E52F7E;
}

/* Responsive popup */
@media (max-width: 768px) {
  .cookie-box {
    padding: 15px;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}
/* Footer Styles - Responsive and matching homepage */
.site-footer {
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  color: #000;             /* black text */
  background-color: #fff;  /* white background */
}

.site-footer a {
  color: #000;            /* black link text */
  text-decoration: none;
  transition: color 0.3s ease; /* smooth hover transition */
}

.site-footer a:hover {
  color: #E52F7E;         /* pink hover */
}

.footer-separator {
  margin: 0 6px;
}

/* Ensure responsive scaling */
@media (max-width: 1024px) {
  .site-footer {
    font-size: 12px;
    padding: 18px 0;
  }
}

@media (max-width: 767px) {
  .site-footer {
    font-size: 11px;
    padding: 15px 0;
  }
}
.contact-form {
  max-width: 600px;
  margin: 20px auto;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

.contact-form button {
  background: #E52F7E;   /* pink */
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #000;      /* black hover */
  color: #fff;
}

/* ✅ Responsive adjustments */
@media (max-width: 600px) {
  .contact-form {
    padding: 15px;
    margin: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
    padding: 10px;
  }

  .contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }
}