/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #333;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1;
  position: relative;
}

/* Homepage Background */
.homepage {
  position: relative;
}

.homepage::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -1;
}

.homepage > * {
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  background: #fff9e5;
  color: #333;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-hamburger:hover span {
  background: #2d5016;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1 1;
  justify-content: flex-end;
}

.nav-dashboard {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  transition: opacity 0.2s;
}

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

.nav-link-cta {
  background: #2d5016;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-link-cta:hover {
  opacity: 1;
  background: #3d6026;
}

/* Page Content */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 3rem;
  color: #2d5016;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: #666;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-button {
  display: inline-block;
  background: white;
  color: #2d5016;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s;
}

.hero-button:hover {
  transform: translateY(-2px);
}

/* Content Sections */
.content-section {
  margin: 3rem 0;
}

.content-section h2 {
  font-size: 2rem;
  color: #2d5016;
  margin-bottom: 1rem;
}

.content-section p {
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.content-section ul {
  margin-left: 0;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #555;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* Homepage Content Sections - readable over background image */
.homepage .page-container {
  background: transparent;
  padding: 2rem;
}

.homepage .hero {
  border-radius: 8px;
  margin-bottom: 2rem;
}

.homepage .content-section {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%);
  color: white;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  width: 100%;
}

.homepage .content-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.homepage .content-section p {
  color: white;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.homepage .content-section ul {
  color: white;
  margin-left: 0;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.homepage .content-section li {
  color: white;
  margin-bottom: 0.5rem;
}

/* Form Styles */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group label[for="subscribesToMailingList"] {
  margin-bottom: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-button {
  background: #2d5016;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.form-button:hover:not(:disabled) {
  background: #4a7c2a;
}

.form-button:disabled {
  background: #ccc;
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Season Cards */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin: 2rem 0;
}

.season-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.2s;
}

.season-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.season-card h3 {
  color: #2d5016;
  margin-bottom: 1rem;
}

.season-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

/* Homepage Season Cards - readable over background */
.homepage .season-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.homepage .season-card h3 {
  color: #2d5016;
}

.homepage .season-card p {
  color: #333;
}

.homepage .season-card a {
  color: #2d5016;
}

/* Footer */
.footer {
  background: #fff9e5;
  color: #333;
  padding: 2rem;
  text-align: center;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 914px) {
  .nav-container {
    position: relative;
    padding: 0 1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
  }

  .nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1;
    justify-content: flex-end;
  }

  .nav-menu-wrapper .nav-dashboard {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 101;
  }

  .nav-menu-wrapper .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff9e5;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
  }

  .nav-menu-wrapper .nav-menu.nav-menu-open {
    transform: translateX(0);
  }

  .nav-menu-wrapper .nav-menu .nav-link {
    font-size: 1.25rem;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }

  .nav-hamburger-open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-hamburger-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-hamburger-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    padding: 4rem 1.5rem 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  /* Disable fixed background on mobile for better performance */
  .homepage::before {
    background-attachment: scroll;
    position: absolute;
  }
}


