* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  background-color: #e0e0e0; /* Background for the empty space */
  display: flex;
  flex-direction: column;
  margin: 0;
  
}



main {
  flex: 1; /* Makes the content grow and push the footer to the bottom */
  padding: 2rem;
  
}

/* Centered container: dynamically adjusts width */
.container {
  width: 100%;
  margin: 0 auto;
  
}

.navbar {
  width: clamp(70%, 70vw, 95%);
  display: flex;
  overflow-x: auto; /* handles overflow if nav items are too many */
  flex-grow: 1; /* allow navbar to stretch */
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  color: #fff;
  margin: 0 auto;
  padding-left: clamp(10px, 5vw, 30px);
  padding-right: clamp(10px, 5vw, 30px);
  box-sizing: border-box;
  height: clamp(60px, 10vw, 70px);
  overflow: visible;
  position: relative;
  
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  width: auto;
  height: clamp(60px, 12vw, 100px);
  margin-top: clamp(-10px, -2vw, -20px); 
}

.nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Align nav-links to the right */
  overflow: hidden;
  
  
}

/* Desktop Nav */
.nav-links {
  display: flex;
  gap: clamp(10px, 2vw, 25px);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  
  
}

.nav-links a {
  flex: 1 1 auto;
  min-width: fit-content;
  color: #fff;
  text-decoration: none;
  margin-left: clamp(10px, 2vw, 20px);
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  overflow: hidden;
  
}

.nav-links a:hover {
  text-decoration: underline;
}



/* Hide hamburger by default */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: clamp(1.5rem, 10vw, 3rem);
  color: white;
  cursor: pointer;
}

.hamburger:hover {
  color: red;
}


:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --muted: #6b7280;
  --accent: #0f172a;
  --gap: 1.25rem;
  --radius: 12px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}


header {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

header h1 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.2px;
}


.shows-grid {
  max-width: 1100px;
  gap: 1.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(12, 16, 29, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(12, 16, 29, 0.12);
}

.card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: linear-gradient(180deg, #e8eefc, #f6f7fb);
}

.card-body {
  padding: 0.9rem 1rem 1.2rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  flex: 1 1 auto;
}



.title {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: clamp(10px, 3vw, 20px) 0;
  width: 100%; /*clamp(90%, 70%, 70%);*/ /* auto-scales between 90% and 70% */
  margin: 0 auto;
  transition: width 0.3s ease;
  font-size: clamp(0.8rem, 2vw, 1rem); /* dynamic text sizing */
  box-sizing: border-box;
  gap: clamp(50px, 5vw, 80px); 
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 80px);
}

.footer-inner {
  display: flex;
  gap: clamp(150px, 80vw, 200px); 
  flex-wrap: wrap; /* stack on smaller screens */
  justify-content: center;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* aligns content to left */
  text-align: left; /* ensures text inside is left-aligned */
}

.footer-column h4 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem); /* slightly larger font */
  font-weight: 700; /* bold */
  margin-bottom: clamp(10px, 1.5vw, 14px); /* a little more spacing */
  color: #fff;
  
}

.footer-column p,
.footer-column li {
  margin-bottom: clamp(6px, 1vw, 10px);
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.contact-info .contact-grid {
  display: flex;
  gap: clamp(30px, 4vw, 50px); /* space between two sub-columns */
  flex-wrap: wrap; /* stack on smaller screens */
}

.contact-info .contact-subcolumn {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 10px);
}

/* Keep About Us left-aligned, Contact Info left-aligned */
.footer-column.about-us {
  align-items: flex-start;
}
.footer-column.contact-info {
  align-items: flex-start;
}

.social-icons {
  margin-bottom: clamp(10px, 2vw, 20px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 20px);
}

.social-icons a {
  color: #ccc;
  font-size: clamp(1rem, 2.5vw, 1.5rem); /* Responsive sizing */
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}



/* Responsive */
@media (max-width: 1200px) {

  .nav-links {
    display: none; /* Hide nav links initially */
    flex-direction: column;
    background-color: #111;
    position: absolute;
    top: clamp(60px, 10vw, 80px);
    left: 0;
    right: 0;
    padding: clamp(8px, 2vw, 16px);
    width: 100%;
    height: 50vh;
    overflow-y: auto; 
    
  }
  

  .nav-links.active {
    display: flex; /* Show nav when active */
  }

  .hamburger {
    display: block; /* Show hamburger on small screens */
  }

  .navbar {
    width: clamp(90%, 90vw, 95%);
    position: relative;
  }


  .footer-inner {
    flex-direction: column;
    align-items: center; /* center all footer columns */
    gap: clamp(15px, 3vw, 30px);
  }

  /* About Us: center content */
  .footer-column.about-us {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  /* Contact Info: stack sub-columns and center everything */
  .footer-column.contact-info {
    width: 100%; /* full width */
    align-items: center;
    text-align: center;
  }

  .contact-info .contact-grid {
    flex-direction: column; /* stack sub-columns */
    gap: clamp(15px, 3vw, 25px); /* spacing between sub-columns */
    align-items: center; /* center sub-columns horizontally */
  }

  .contact-info .contact-subcolumn {
    width: 100%; /* full width for each sub-column */
    flex: none;  /* prevent flex sizing from messing layout */
    align-items: center; /* center the content */
  }

  /* Center the CONTACT INFO title above sub-columns */
  .footer-column.contact-info h4 {
    text-align: center;
    width: 100%;
    margin-bottom: clamp(15px, 3vw, 20px);
  }

  /* Social icons: center below everything */
  .social-icons {
    justify-content: center;
    gap: clamp(10px, 2vw, 20px);
    margin-top: clamp(15px, 3vw, 25px);
  }

}