/* Picnic Works - Static Site Stylesheet */

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #203952;
  padding: 15px 25px;
}

.nav img {
  height: 30px;
  margin-top: 4px;
}

.nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 0 10px 40px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

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

/* Banner */
.banner {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  background-color: #ff5756;
  padding: 2px 25px;
}

.banner p {
  font-weight: 700;
  color: #fff;
}

.banner a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 75px 25px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.hero-left h1 {
  font-size: 3rem;
  margin: 0;
  color: #ff5756;
}

.hero-left h2 {
  font-size: 3rem;
  margin: 0;
  color: #203952;
}

.hero-left p {
  font-size: 1.2rem;
  color: #203952;
  max-width: 550px;
}

.hero-left .btn {
  background-color: #ff5756;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  text-decoration: none;
  display: inline-block;
}

.hero-right {
  flex: 1;
  min-width: 400px;
  max-width: 800px;
}

/* Customers */
.customers {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 25px;
  background-color: #f8f8ff;
}

.customers h2 {
  font-size: 3rem;
  color: #203952;
  margin: 0 0 50px;
}

.customer-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin-bottom: 50px;
}

.customer-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.customer-logo:hover {
  transform: scale(1.1);
}

.customer-highlight {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}

.highlight-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 400px;
  max-width: 650px;
}

.highlight-left h2 {
  font-size: 3rem;
  margin: 0 0 10px;
  color: #ff5756;
}

.highlight-left p {
  font-size: 1.3rem;
  font-weight: 700;
  color: #203952;
  margin: 0 0 10px;
}

.highlight-right {
  flex: 1;
  min-width: 400px;
  max-width: 800px;
}

/* Grow */
.grow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding: 75px 25px;
}

.grow-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.grow-header h2 {
  width: 100%;
  font-size: 3rem;
  margin: 0 0 30px;
  color: #203952;
}

.grow-header p {
  font-size: 1.2rem;
  color: #203952;
  max-width: 1000px;
  margin: 0;
}

.grow-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.grow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px;
  text-align: center;
}

.grow-card .icon-image {
  width: 150px;
  height: 150px;
  margin-bottom: 20px;
}

.grow-card h3 {
  font-size: 1.5rem;
  color: #ff5756;
  margin-bottom: 10px;
}

.grow-card p {
  font-size: 1.2rem;
  color: #203952;
}

/* Station */
.station {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 25px;
  background-color: #dcdcdc;
}

.station h2 {
  font-size: 3rem;
  color: #203952;
  margin: 0 0 50px;
}

.station > p {
  font-size: 1.2rem;
  color: #203952;
  text-align: center;
  max-width: 1000px;
  margin: 0 0 25px;
}

.station-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  margin: 25px 0;
}

.station-info img {
  width: auto;
  max-width: 100%;
  height: 400px;
  object-fit: contain;
}

.station-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.station-details h3 {
  font-size: 2rem;
  color: #ff5756;
  margin-bottom: 10px;
}

.station-details ul {
  list-style-type: none;
  padding-left: 0;
  max-width: 500px;
}

.station-details li {
  font-size: 1.2rem;
  color: #203952;
  margin-bottom: 5px;
}

/* Station Stats */
.station-stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 75px 25px;
}

.station-stats h2 {
  font-size: 3rem;
  color: #203952;
  margin: 0 0 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0 20px;
}

.stats-grid .line-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #203952;
  text-align: center;
  background: #faebd7;
  padding: 20px 0;
  text-decoration: underline;
}

.stats-grid .stat-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #203952;
  text-align: right;
  padding: 10px 0;
  border-bottom: 1px solid lightgray;
}

.stats-grid .stat-value {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff5756;
  background: #faebd7;
  padding: 10px 0;
}

.stats-grid .stat-value span {
  font-size: 1.5rem;
}

.stats-grid .stat-value .stat-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #203952;
}

.station-stats .btn {
  background-color: #ff5756;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
}

/* Partners */
.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 25px;
  background-color: #f8f8ff;
}

.partners h2 {
  font-size: 3rem;
  color: #203952;
  margin: 0 0 50px;
}

.partner-logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin-bottom: 10px;
}

.partner-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.1);
}

/* Awards */
.awards {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 75px 25px;
}

.awards-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.awards-info img {
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.awards-info p {
  font-size: 1.2rem;
  font-weight: 700;
  color: #203952;
  max-width: 800px;
  text-align: left;
  margin-bottom: 50px;
}

.award-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin-bottom: 50px;
}

.award-logo {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.award-logo:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: #203952;
  color: #fff;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer img.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer p {
  margin: 0;
  max-width: 700px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 30px;
}

.social-links a img {
  width: 25px;
  height: 25px;
}

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

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

/* Page Content (simple pages) */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 75px 25px;
  min-height: 40vh;
}

.page-content h1 {
  font-size: 3rem;
  color: #203952;
  margin: 0 0 20px;
}

.page-content p {
  font-size: 1.2rem;
  color: #203952;
}

/* Contact page specifics */
.contact-info {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
  color: #203952;
}

.contact-info li {
  margin-bottom: 15px;
}

.contact-info a {
  color: #ff5756;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-right,
  .highlight-left,
  .highlight-right {
    min-width: 100%;
  }

  .stats-grid {
    font-size: 0.9rem;
  }

  .stats-grid .stat-name,
  .stats-grid .stat-value {
    font-size: 1rem;
  }

  .stats-grid .line-title {
    font-size: 1.2rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
