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

body {
  font-family: 'Fira Code', monospace;
  background: #fff;
  color: #333;
}

/* Header styles */
header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  padding: 0.7rem 1.5rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  margin: 0.4rem 1.2rem;
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 0.85rem;
}

nav a:hover {
  color: #888;
}

.hamburger {
  display: none;
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 0.3rem;
}

/* Common section styles */
.section {
  text-align: center;
  padding: 3rem 1rem;
}

.section.quote-section {
  background-color: #e1c9c9;
  padding: 2rem 1rem 1.5rem 1rem;
  width: 100%;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Banner styles */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-banner {
  background-color: #8B0000;
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: 'Allura', cursive;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.banner-link {
  text-decoration: none;
  display: block;
}

.banner-link:hover .top-banner {
  background-color: #760000;
  cursor: pointer;
}

/* Footer styles */
footer {
  text-align: center;
  padding: 3rem 1rem;
  color: #888;
  font-size: 0.9rem;
}

/* Media Queries */
/* Mobile and Tablet shared styles (up to 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .hamburger {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
  }

  nav.active {
    display: flex;
    transform: translateY(0);
  }

  nav a {
    margin: 0.4rem 0;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    padding: 0.4rem 0;
  }
}

/* Desktop (769px and above) */
@media (min-width: 769px) {
  header {
    justify-content: center;
  }

  nav {
    display: flex;
    justify-content: center;
    position: static;
    box-shadow: none;
    transform: none;
    padding: 0;
  }

  .hamburger {
    display: none;
  }
}

/* Typography for mobile */
@media (max-width: 480px) {
  .top-banner {
    font-size: 1.2rem;
  }
  
  .section h2 {
    font-size: 1.5rem;
  }
}

/* Typography for tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .section h2 {
    font-size: 1.8rem;
  }
} 