html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  line-height: 1.6;
  color: #FFFFF0; 
}

body {
  display: block; 
  background-color: #455D73; 
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 15px 0;
}

.main-header.scrolled {
  background-color: rgba(69, 93, 115, 1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFFFF0; 
  text-decoration: none;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.main-nav ul li {
  margin-left: 30px;
}

.main-nav ul li a {
  color: #FE5D26; 
  font-family: "Roboto Mono", mono;
  text-decoration: none; 
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #FFA500;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFF0; 
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../src/hero/4.jpg'); 
  background-size: cover;
  background-position: center;
  filter: brightness(0.25); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  padding: 1rem;
  text-align: left;
}

.hero-section h1 {
  font-size: 7rem; 
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #FFFFF0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

.hero-section h3 {
  font-size: 2rem;
  font-family: "Roboto Mono", mono;
  font-weight: normal;
  color: #FFFFF0; 
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

#quote {
  text-align: left;
  font-size: 3rem;
  color: #fffff0;
}

#goal {
  background-color: #455d73;
  font-family: "Special Gothic Expanded One", sans-serif;
}

#order {
  background-color: #fe5d26;
  color: #fffff0;
}

#order .section-inner p {
  font-size: 1.5rem;
  font-family: "Roboto Mono", mono;
}

#order .section-inner h2 {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-size: 3.5rem;
  color: #fffff0;
}

.content-section, .cta-section {
  padding: 4rem 0; 
  background-color: #B5D3F7; 
  border-bottom: 1px solid #455d73; 
  position: relative;
  overflow: hidden; 
}

.grid-container {
  display: grid;  
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); 
  gap: 30px; 
  margin-top: 40px;
}

.about-layout {
  display: flex; 
  flex-wrap: wrap; 
  flex-direction: row-reverse; 
  align-items: flex-start; 
  gap: 40px; 
}

.about-featured-image {
  flex: 0 0 400px; 
  max-width: 100%; 
  height: 50rem; 
  object-fit: cover; 
}

.about-content {
  flex: 1; 
  min-width: 30rem; 
}

.about-content p {
  color: #455d73;
  font-family: "Roboto Mono", mono;
  font-size: 1.5rem;
}

.team-member-card {
  background-color: #DDEBFD; 
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member-card img {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #FE5D26; 
}

.team-member-card h3 {
  font-size: 1.5em;
  font-family: "Roboto Mono", mono;
  margin-bottom: 10px;
  color: #455D73; 
}

.team-member-card p {
  color: #6C7A89; 
  font-size: 0.95em;
  font-family: "Roboto Mono", mono;
}

.section-inner {
  max-width: 80rem; 
  margin: 0 auto;
  padding: 0 20px;
}

h2, h3 { 
 font-weight: normal;
 color: #455D73;
}

h2 {
  font-size: 4rem;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 40px; 
  margin-top: 40px;
}

.statistic {
  background-color: #DDEBFD;
  padding: 2rem;
  text-align: center; 
}

.statistic h3 {
  font-size: 2.5rem;
  font-family: "Special Gothic Expanded One", sans-serif;
  margin-bottom: 1rem;
  color: #455D73; 
}

.statistic p {
  font-size: 1.1rem;
  font-family: "Roboto Mono", mono;
  margin-bottom: 1.5rem;
  color: #455D73; 
}

.statistic-image {
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  margin-top: 1rem;
}

.order-form {
  background-color: #dde8fd; 
  font-family: "Roboto Mono", mono;
  padding: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 600px; 
  margin: 2rem auto 0 auto; 
  text-align: left; 
}

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

.form-group label {
  display: block; 
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #455D73; 
}

.form-group input[type='text'],
.form-group input[type='email'],
.form-group select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #A0BCE0; 
  font-size: 1rem;
  color: #455D73; 
  background-color: #F8F8F8; 
  box-sizing: border-box;
}

.form-group input::placeholder {
  color: #8898A6; 
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 12px;
  padding-right: 2.5rem; 
}

.cta-section {
  text-align: center;
  background-color: #B5D3F7; 
}

.cta-section p {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.primary-button {
  background-color: #FE5D26; 
  color: #FFFFF0; 
  padding: 15px 30px;
  border: none;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
}

.primary-button:hover {
  background-color: #FF7F4C; 
  transform: translateY(-2px);
}

.main-footer {
  background-color: #455D73; 
  color: #FFFFF0; 
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content p {
  margin-bottom: 20px;
  font-family: "Roboto Mono", mono;
  font-size: 0.9em;
  color: #FFFFF0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav ul li {
  margin: 0 15px 10px 15px;
}

.footer-nav ul li a {
  color: #FE5D26; 
  text-decoration: none; 
  font-family: "Roboto Mono", mono;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #FF7F4C; 
}

section {
    opacity: 0; 
    transform: translateY(-50px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

section.reveal {
    opacity: 1; 
    transform: translateY(0); 
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    padding: 10px 20px;
  }

  .logo {
    margin-bottom: 15px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }

  .main-nav ul li {
    margin: 8px 0;
  }

  .hero-section h3 {
    font-size: 1.2em;
  }

  p {
    font-family: "Roboto Mono", mono;
    font-size: 1em;
  }

  .section-inner {
    padding: 0 15px;
  }

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

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2em;
  }

  .hero-section h3 {
    font-size: 1em;
  }

  .primary-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .footer-nav ul li {
    margin: 0 10px 8px 10px;
  }
}

::-webkit-scrollbar {
    width: 14px; 
    background-color: none;
}

::-webkit-scrollbar-thumb {
    background-color: #FE5D26; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #FF7F4C; 
}
