/* Base CSS Framework for Bandits on the Run Squarespace Clone */

/* CSS Reset/Normalize */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: rgb(241, 208, 208);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CSS Custom Properties */
:root {
  /* Typography */
  --font-family-primary: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-family-secondary: Georgia, serif;
  --font-size-base: 16px;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-small: 0.875rem;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
  
  /* Colors */
  --color-primary: #333333;
  --color-secondary: #666666;
  --color-accent: #000000;
  --color-background: rgb(241, 208, 208);
  --color-text: #333333;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --color-link: #000000;
  --color-link-hover: #666666;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  /* Layout */
  --container-max-width: 1400px;
  --container-padding: 2rem;
  --section-padding: 4rem 0;
  
  /* Navigation */
  --nav-height: 80px;
  --nav-background: rgb(241, 208, 208);
  --nav-text-color: #333333;
  --nav-hover-color: #666666;
  
  /* Footer */
  --footer-background: rgb(241, 208, 208);
  --footer-text-color: #666666;
  --footer-padding: 3rem 0;
  
  /* Forms */
  --input-padding: 0.75rem;
  --input-border: 1px solid #e0e0e0;
  --input-border-radius: 4px;
  --button-padding: 0.75rem 1.5rem;
  --button-border-radius: 4px;
  
  /* Responsive Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: 400;
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-sm);
  color: var(--color-text);
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

p {
  margin-bottom: var(--spacing-sm);
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-link-hover);
}

small {
  font-size: var(--font-size-small);
  color: var(--color-text-light);
}

/* Layout Components */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding);
}

/* Main Content */
main {
  background-color: var(--color-background);
  margin-top: -2rem;
  padding-top: 2rem;
  min-height: 60vh;
  flex: 1;
}

.content-wrapper {
  background-color: var(--color-background);
  padding: var(--section-padding);
  margin: 0 auto;
  max-width: var(--container-max-width);
}

.band-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.band-image {
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 4px;
}

.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.large-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Spacing Utilities */
.mt-xs { margin-top: var(--spacing-xs); }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-xs { margin-bottom: var(--spacing-xs); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.pt-xs { padding-top: var(--spacing-xs); }
.pt-sm { padding-top: var(--spacing-sm); }
.pt-md { padding-top: var(--spacing-md); }
.pt-lg { padding-top: var(--spacing-lg); }
.pt-xl { padding-top: var(--spacing-xl); }

.pb-xs { padding-bottom: var(--spacing-xs); }
.pb-sm { padding-bottom: var(--spacing-sm); }
.pb-md { padding-bottom: var(--spacing-md); }
.pb-lg { padding-bottom: var(--spacing-lg); }
.pb-xl { padding-bottom: var(--spacing-xl); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-light { color: var(--color-text-light); }
.text-primary { color: var(--color-text); }

.uppercase { text-transform: uppercase; }
.letter-spacing { letter-spacing: 0.1em; }

/* Form Elements */
input, textarea, select {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  padding: var(--input-padding);
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  background-color: var(--color-background);
  color: var(--color-text);
  transition: border-color 0.2s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-accent);
}

button, .btn {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  padding: var(--button-padding);
  border: none;
  border-radius: var(--button-border-radius);
  background-color: var(--color-accent);
  color: var(--color-background);
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--color-link-hover);
}

/* Navigation */
.nav {
  position: relative;
  z-index: 100;
}

.nav-banner {
  position: relative;
  height: 450px;
  overflow: hidden;
  background-color: rgb(51, 50, 34);
}

.nav-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47.86234067785705% 28.811716242759278%;
}

.nav-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-banner-content {
  text-align: center;
  color: white;
}

.nav-page-title {
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  color: rgb(241, 208, 208);
  font-family: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
}

.nav-bar {
  background-color: var(--nav-background);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  gap: var(--spacing-md);
}

.nav-brand {
  font-size: var(--font-size-h3);
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-brand:hover {
  color: var(--nav-hover-color);
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-self: start;
}

.nav-brand-wrapper {
  justify-self: center;
  text-align: center;
}

.nav-brand {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-brand:hover {
  opacity: 0.8;
}

.nav-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-social-wrapper {
  justify-self: end;
  display: flex;
  align-items: center;
}

.nav-social {
  display: flex;
  list-style: none;
  gap: var(--spacing-sm);
  margin: 0;
  padding: 0;
}

.nav-social-link {
  color: var(--nav-text-color);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.nav-social-link:hover {
  color: var(--nav-hover-color);
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-social-mobile {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--nav-text-color);
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--font-size-small);
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--nav-hover-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--nav-hover-color);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}

.nav-toggle-line {
  width: 100%;
  height: 3px;
  background-color: var(--nav-text-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* New Overlay Navigation Styles */
.nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem var(--container-padding);
  z-index: 10;
}

.nav-overlay .nav-menu-wrapper {
  display: flex;
  align-items: center;
  width: 33%;
  justify-content: flex-start;
}

.nav-overlay .nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.nav-overlay .nav-link {
  color: rgb(241, 208, 208);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
  white-space: nowrap;
  font-family: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
}

.nav-overlay .nav-link:hover {
  color: rgba(241, 208, 208, 0.7);
  text-decoration: underline;
  text-decoration-color: rgb(241, 208, 208);
}

.nav-overlay .nav-brand-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34%;
}

.nav-overlay .nav-brand {
  display: block;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-overlay .nav-brand:hover {
  opacity: 0.8;
}

.nav-overlay .nav-logo {
  height: 80px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

.nav-overlay .nav-social-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 33%;
}

.nav-overlay .nav-social {
  display: flex;
  list-style: none;
  gap: var(--spacing-sm);
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-overlay .nav-social-link {
  color: rgb(241, 208, 208);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-family: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
}

.nav-overlay .nav-social-link:hover {
  color: rgba(241, 208, 208, 0.7);
  background-color: rgba(241, 208, 208, 0.1);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer */
.footer {
  background-color: rgb(241, 208, 208); /* Light pink/peach background to match site */
  padding: 2rem 0; /* Reduced from 4rem to match original spacing */
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* Further reduced to match original tight spacing */
}

.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-section.mailing-list {
  order: 2;
}

.footer-section.contact-info {
  order: 3;
}

.footer-section.social-section {
  order: 1;
}

.footer-title {
  font-size: var(--font-size-h3);
  margin-bottom: 1rem; /* Increased margin */
  font-weight: 700; /* Made bolder to match original */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.footer-text {
  color: var(--color-text);
  margin-bottom: 1rem; /* Reduced from 2rem to match original spacing */
  font-size: var(--font-size-small);
  line-height: 1.6; /* Increased line height */
  /* Removed max-width constraint */
}

.footer-form {
  width: 100%;
  margin-bottom: 1rem; /* Reduced from 2rem to match original spacing */
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.input-button-wrapper {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-form input {
  flex: 1;
  padding: var(--input-padding);
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  font-size: var(--font-size-base);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff; /* White background for email input */
}

.footer-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.footer-form input.has-error {
  border-color: #dc3545;
}

.footer-form button {
  padding: 0.875rem 1.5rem; /* Increased padding for taller button */
  background-color: transparent; /* Clear background */
  color: #dc2626; /* Red text to match outline */
  border: 2px solid #dc2626; /* Red outline */
  border-radius: 0; /* Square corners */
  font-size: var(--font-size-small);
  font-weight: 500;
  text-transform: none; /* Remove uppercase to match sentence case */
  letter-spacing: 0.02em; /* Reduced letter spacing */
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
  white-space: nowrap;
  min-width: 320px; /* Increased button width to fit content */
  min-height: 48px; /* Use min-height instead of fixed height */
  display: inline-block; /* Use inline-block instead of flex */
  vertical-align: middle; /* Align with input field */
}

.footer-form button:hover {
  background-color: #dc2626; /* Solid red background on hover */
  color: white; /* White text on hover */
  transform: translateY(-1px);
}

.footer-form button:active {
  transform: translateY(0);
}

.footer-form button:disabled {
  background-color: var(--color-border);
  cursor: not-allowed;
  transform: none;
}

.error-message {
  display: none;
  color: #dc3545;
  font-size: var(--font-size-small);
  margin-bottom: var(--spacing-xs);
  text-align: left;
  width: 100%;
  background-color: rgb(241, 208, 208);
  border: 1px solid #dc3545;
  padding: 0.5rem;
  border-radius: 4px;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  padding: var(--spacing-sm);
  border-radius: var(--input-border-radius);
  border: 1px solid #c3e6cb;
  margin-top: var(--spacing-sm);
}

.success-message p {
  margin: 0;
  font-size: var(--font-size-small);
}

.footer-contact {
  color: var(--color-text);
  font-size: var(--font-size-small);
  text-align: center;
  margin-top: 1rem; /* Added margin */
}

.contact-email {
  margin-bottom: 0.5rem; /* Reduced margin */
  font-weight: 700; /* Made bolder */
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-location {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700; /* Made bolder */
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem; /* Increased gap between icons */
  flex-wrap: wrap;
  /* Removed margin-bottom */
}

/* Mailchimp Form Styling */
#mc_embed_signup {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: transparent;
  clear: left;
}

#mc-embedded-subscribe-form {
  margin: 0 !important;
}

#mc_embed_signup #mc_embed_signup_scroll {
  width: 100% !important;
  max-width: 800px !important;
}

#mc_embed_signup .mc-field-group {
  margin-bottom: 1rem;
  width: 100%;
}

#mc_embed_signup .mc-field-group.input-button-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

#mc_embed_signup label {
  display: none;
}

#mc_embed_signup .asterisk {
  color: #dc3545;
}

#mc_embed_signup input[type="email"] {
  flex: 0 0 auto;
  width: 300px;
  max-width: 500px;
  padding: 1.25rem 1.5rem;
  border: 1px solid #dc2626;
  border-radius: 0;
  font-size: 1.125rem;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-family-primary);
  height: 60px;
  box-sizing: border-box;
}

#mc_embed_signup input[type="email"]::placeholder {
  color: #999;
}

#mc_embed_signup input[type="email"]:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

#mc_embed_signup .clear {
  margin-top: 0.5rem;
  text-align: center;
}

#mc_embed_signup input[type="submit"],
#mc_embed_signup #mc-embedded-subscribe {
  flex: 0 1 auto;
  width: min(444px, 100%);
  min-width: 0;
  padding: 0 1.5rem;
  background-color: rgb(241, 208, 208);
  color: var(--color-text);
  border: 2px solid #dc2626;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease, color 0.2s ease;
  white-space: normal;
  min-height: 60px;
  height: auto;
  font-family: var(--font-family-primary);
  box-sizing: border-box;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0px !important;
}

#mc_embed_signup input[type="submit"]:hover {
  background-color: #dc2626;
  color: white;
  transform: translateY(-1px);
}

#mc_embed_signup input[type="submit"]:active {
  transform: translateY(0);
}

#mc_embed_signup .privacy-text {
  text-align: center;
  color: var(--color-text);
  font-size: var(--font-size-small);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

#mc_embed_signup #success-message {
  text-align: center;
  padding: 2rem 0;
}

#mc_embed_signup .success-text {
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

#mc_embed_signup input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

#mc_embed_signup .spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

#mc_embed_signup .response {
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0;
  font-size: var(--font-size-small);
  text-align: left;
}

#mc_embed_signup #mce-error-response {
  background-color: transparent;
  color: #dc2626;
  border: none;
}

#mc_embed_signup #mce-error-response * {
  display: none;
}

#mc_embed_signup #mce-error-response::before {
  content: "Email Address is required.";
  display: block;
}

#mc_embed_signup #mce-success-response {
  display: none !important;
}

.social-link {
  color: var(--color-text);
  font-size: var(--font-size-small);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; /* Smaller icons to match original */
  /* Removed height constraint */
  border-radius: 50%;
  background-color: transparent;
}

.social-link:hover {
  color: var(--color-text);
  transform: scale(1.1);
}

.social-link--header {
  color: rgb(241, 208, 208); 
}

.social-link--header:hover {
  color: rgba(241, 208, 208, 0.8); /* slightly transparent version for hover */
}

/* Removed copyright section styles - no longer needed */

/* Responsive Design */
@media (min-width: 576px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-form {
    /* Removed max-width constraint */
  }
  
  .footer-form button {
    min-width: 320px; /* Match desktop width */
    min-height: 48px; /* Match desktop height */
  }
  
  .footer-content {
    gap: 1rem; /* Slightly reduced but still generous */
  }
  
  .footer-section {
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .nav-menu {
    gap: var(--spacing-lg);
  }
  
  .footer-content {
    max-width: 800px;
    gap: var(--spacing-xl);
  }
  
  .footer-section {
    max-width: none;
  }
  
  .footer-form {
    /* Removed max-width constraint */
  }
}

@media (max-width: 575px) {
  .nav-banner {
    height: 300px;
  }
  
  .nav-page-title {
    font-size: 2rem;
  }
  
  .nav-overlay {
    padding: 1rem var(--spacing-sm);
  }
  
  .nav-overlay .nav-menu-wrapper {
    display: none;
  }
  
  .nav-overlay .nav-brand-wrapper {
    top: 1rem;
  }
  
  .nav-overlay .nav-logo {
    height: 40px;
  }
  
  .nav-overlay .nav-social-wrapper {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
    position: absolute;
    right: var(--spacing-sm);
    top: 1rem;
  }
  
  .band-images {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .band-image {
    aspect-ratio: 3/4;
  }
  
  #mc_embed_signup .mc-field-group.input-button-wrapper {
    flex-wrap: wrap;
  }
  
  #mc_embed_signup input[type="email"] {
    width: 100%;
    max-width: 100%;
  }
  
  #mc_embed_signup input[type="submit"] {
    white-space: normal;
    line-height: 1.4;
    padding: 1rem 1.5rem;
    min-height: 60px;
    height: auto;
  }
}

@media (max-width: 575px) {
  .nav-banner {
    height: 300px;
  }
  
  .nav-page-title {
    font-size: 2rem;
  }
  
  .nav-overlay {
    padding: 1rem var(--spacing-sm);
  }
  
  .nav-overlay .nav-menu-wrapper {
    display: none;
  }
  
  .nav-overlay .nav-brand-wrapper {
    top: 1rem;
  }
  
  .nav-overlay .nav-logo {
    height: 40px;
  }
  
  .nav-overlay .nav-social-wrapper {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
    position: absolute;
    right: var(--spacing-sm);
    top: 1rem;
  }
  
  .band-images {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }
  
  .band-image {
    aspect-ratio: 3/4;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .footer-form {
    flex-direction: column;
    gap: var(--spacing-sm);
    /* Removed max-width constraint */
  }
  
  .footer-form button {
    min-width: auto;
    width: 100%;
    min-height: auto; /* Allow natural height on mobile */
    padding: 0.75rem 1rem; /* Slightly reduced padding for mobile */
  }
  
  .footer-content {
    gap: 1rem; /* Reduced but still generous on mobile */
  }
  
  .footer {
    padding: 3rem 0; /* Slightly reduced padding on mobile */
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .footer-form {
    /* Removed max-width constraint */
    padding: 0 1rem; /* Add some horizontal padding */
  }
  
  .footer-form input,
  .footer-form button {
    font-size: 16px; /* Prevent zoom on iOS */
    min-width: auto; /* Remove min-width constraints */
    min-height: auto; /* Remove min-height constraints */
  }
  
  .footer-form button {
    white-space: normal; /* Allow text to wrap if needed */
    word-wrap: break-word;
  }
  
  .footer-title {
    font-size: 1.25rem; /* Slightly smaller title on very narrow screens */
  }
  
  .footer-text {
    font-size: 0.875rem; /* Slightly smaller text */
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Print Styles */
@media print {
  .nav, .footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  p {
    orphans: 3;
    widows: 3;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(241, 208, 208, 0.95);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 400px;
  flex: 1;
}

.mobile-nav-menu {
  margin-bottom: 3rem;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: #333;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
  font-family: "aktiv-grotesk", "Helvetica Neue", Arial, sans-serif;
}

.mobile-nav-link:hover {
  color: #666;
}

.mobile-social-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
}

.mobile-social {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.mobile-social-link {
  color: #333;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.mobile-social-link:hover {
  color: #666;
  background-color: rgba(0, 0, 0, 0.05);
}

.mobile-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* New Mobile X Button */
.mobile-x-button {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.mobile-x-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-x-line:first-child {
  transform: rotate(45deg);
}

.mobile-x-line:last-child {
  transform: rotate(-45deg);
}
