
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
  /* Header Styles */
  .site-header {
    background: #ff6600;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 5px;
  }
  
  .nav-links li a.active {
    background: #fff;
    color: #ff6600;
  }
  
  .nav-links li a:hover {
    background: #ffd699;
    color: #333;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    gap: 5px;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  


/* Selection Page Styles */
.selection-page {
  text-align: center;
  padding: 4rem 0;
  background-color: #f8f8f8;
}

.selection-page h2 {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 1rem;
}

.selection-page p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
}

.options {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.option-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(to right, #32a852, #66d27a);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.option-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/**/
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.main-content {
  flex: 1; /* This will push the footer down */
}



/* Footer Styles */
.site-footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
  width: 100%;
  position: relative;
  margin-top: auto;
}

/* Mobile Responsive - Small Screens (below 900px) */
@media (max-width: 899px) {
  .hamburger {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .navbar {
    position: relative;
    flex-direction: row;
    gap: 0;
    padding: 0 1rem;
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
  }

  .nav-links {
    order: 3;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ff6600;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .nav-links li a {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .selection-page {
    padding: 2rem 0;
  }

  .selection-page h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .selection-page p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .options {
    flex-direction: column;
    gap: 1rem;
  }

  .option-button {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 1.2rem;
  }
}

/* Desktop Responsive - Large Screens (900px and above) */
@media (min-width: 900px) {
  .hamburger {
    display: none;
  }

  .navbar {
    padding: 0 1.5rem;
    flex-direction: row;
    gap: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: flex;
    position: static;
    max-height: none;
    overflow: visible;
    background: transparent;
    flex-direction: row;
    gap: 1.5rem;
  }

  .nav-links li a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: none;
    display: inline;
  }

  .logo {
    font-size: 1.8rem;
  }

  .selection-page {
    padding: 3rem 0;
  }

  .selection-page h2 {
    font-size: 2.5rem;
  }

  .selection-page p {
    font-size: 1.2rem;
  }

  .options {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .option-button {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
}
