/* CSS Variables */
:root {
  --primary: #1e3a5f;
  --secondary: #A5D8FF;
  --light: #e8f4fd;
  --accent: #C0C0C0;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--primary);
  background-color: var(--white);
}

main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  margin: 3px 0;
  transition: var(--transition);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

/* Hero Section */
.hero {
  padding-top: 80px; /* Account for fixed nav */
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero.small-hero {
  padding: 80px 0 2rem 0; /* Smaller padding */
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
}

.hero-notice-section {
  padding: 2rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
}

.hero-notice {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.9);
}

.hero-notice a {
  font-size: 1.5rem;
  font-weight: 900;
  color: #00ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-notice a:hover {
  color: var(--primary);
  transform: scale(1.05);
}

/* About Section */
.about {
  padding: 4rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px var(--shadow);
  margin: 2rem 0;
  animation: fadeIn 0.5s ease-in;
}

.sections .about:nth-child(odd) {
  background-color: var(--light);
}

.sections .about:nth-child(even) {
  background-color: var(--white);
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.about h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
  font-size: 2.5rem;
}

.about p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.highlight {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  font-weight: 600;
}
.highlight.tickets-announcement {
  background-color: var(--secondary);
  color: var(--white);
  text-align: center;
  font-size: 1.2rem;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.about h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.8rem;
  text-align: center;
}

.about h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.about li {
  margin-bottom: 0.5rem;
}

.contact {
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  margin: 1rem 0.5rem;
}

.btn.primary {
  background: linear-gradient(135deg, var(--secondary), #7bbfff);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn.primary:hover, .btn.primary:active, .btn.primary:focus {
  background: linear-gradient(135deg, #7bbfff, var(--secondary));
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn.secondary {
  background-color: var(--primary);
  color: var(--white);
}

.btn.secondary:hover, .btn.secondary:active, .btn.secondary:focus {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

.btn.outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.btn.outline:hover, .btn.outline:active, .btn.outline:focus {
  background-color: var(--secondary);
  color: var(--white);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

/* Snow Animation */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.snowflake {
  position: absolute;
  color: var(--accent);
  font-size: 1.5rem;
  animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 1s; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 8s; animation-delay: 7s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 14s; animation-delay: 3s; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 9s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 9s; animation-delay: 5s; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 13s; animation-delay: 2s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 7s; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 12s; animation-delay: 8s; }
.snowflake:nth-child(10) { left: 95%; animation-duration: 15s; animation-delay: 4s; }

@keyframes fall {
  0% { top: -10%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 110%; opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 10px var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    border-bottom: 1px solid var(--light);
  }

  .nav-links a {
    display: block;
    padding: 1rem 2rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .hero-content {
    padding: 1rem;
  }

  /* Ensure comfortable spacing on small screens so text doesn't touch the edges */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .about {
    padding: 2rem 1rem;
  }

  .about h2 {
    font-size: 2rem;
  }

  .about p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  /* Make ordered list numbers visible and not clipped on small screens */
  .about ol {
    padding-left: 1.25rem;
    list-style-position: outside;
  }

  .about li {
    margin-bottom: 0.5rem;
    word-break: break-word;
  }

  .btn {
    display: block;
    margin: 1rem 0;
  }

  .contact {
    font-size: 0.85rem;
    word-break: break-word;
  }
}