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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdfaf5;
  background-image: url('https://www.transparenttextures.com/patterns/beige-paper.png');
  background-repeat: repeat;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.announcement-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #a67c00;
  color: white;
  padding: 6px 40px 4px;
  font-size: 14px;
  font-weight: bold;
  flex-wrap: wrap;
}

.phone-number {
  margin-left: auto;
  white-space: nowrap;
  color: white;
  text-decoration: none;
}

.phone-number:hover {
  text-decoration: underline;
}

.nav-header {
  padding: 10px 40px 0;
}

.logo-container {
  text-align: center;
}

.logo {
  max-height: 180px;
  height: auto;
}

.nav-menu {
  margin-top: -160px;
}

.nav-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-menu a:hover {
  color: #a67c00;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 2rem 2rem;
  gap: 2rem;
}

.hero-text {
  flex: 1 1 400px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  line-height: 1.1;
}

.hero-text .blue {
  color: #2e2e4d;
}

.hero-text .red {
  color: #4d2e2e;
}

.hero-text p {
  margin-bottom: 1.2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-img img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border-radius: 10px;
}

.button {
  background-color: #a67c00;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

.button:hover {
  background-color: #8b6500;
}

.button.outline {
  background: none;
  border: 2px solid #a67c00;
  color: #a67c00;
}

.button.outline:hover {
  background-color: #a67c00;
  color: white;
}

.button.small {
  font-size: 14px;
  padding: 8px 16px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 1rem;
  background-color: #faf7f2;
}

.feature-box {
  background-color: #cdb38a;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
  width: 280px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feature-box img {
  border-radius: 10px;
  margin-bottom: 1rem;
}

.feature-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #5a4300;
}

.our-story {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  gap: 2rem;
  background-color: #fffdf8;
}

.story-text {
  flex: 1 1 400px;
  max-width: 500px;
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #4d2e2e;
}

.story-text p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.story-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.story-img img {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

@media (max-width: 1000px) {
  .nav-menu {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    margin-top: 0;
  }

  .logo {
    max-height: 100px;
  }

  .logo-container {
    margin-bottom: 0;
    text-align: center;
  }

  .hero {
    margin-top: -10px;
  }

  .nav-header {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .nav-menu ul {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
  }

  .fullwidth-hero {
    background-size: 250%;
    background-position: 10% 60%;
  }

  .logo-container {
    text-align: center;
    margin: 0 auto 12px;
  }

  .logo {
    display: block;
    margin: 0 auto;
  }

  .nav-header {
    padding-bottom: 8px;
  }

  .nav-menu ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 12px;
    min-width: 100%;
  }

  .nav-menu ul li a {
    white-space: nowrap;
    display: inline-block;
  }

  .announcement-bar {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .announcement-bar span {
    flex-shrink: 1;
  }

  .phone-number {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

.fullwidth-hero {
  background-repeat: no-repeat;
  background-color: black;
  background-image: url('https://thechaileaves.com/img_001/img_001/chaipot_pour_wide2.png');
  background-size: 120%;
  background-position: 20% 55%;
  min-height: 480px;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: 20px;
}

.fullwidth-hero .hero-text h1,
.fullwidth-hero .hero-text p {
  color: white;
}

.fullwidth-hero .hero-text .blue {
  color: #66ccff;
}

.fullwidth-hero .hero-text .red {
  color: white;
}

html {
  -webkit-text-size-adjust: 100%;
}




@media (max-width: 768px) {
  .fullwidth-hero {
    background-size: 250% !important;
    background-position: 40% 60% !important;
  }
}


@media (min-width: 769px) {
  .content-container,
  .form-container,
  .hero.fullwidth-hero {
    margin-top: 40px;
  }
}


@media (max-width: 768px) {
  .nav-menu ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 12px;
    min-width: 100%;
  }

  .nav-menu ul li a {
    white-space: nowrap;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .nav-menu-wrapper {
    margin: 0 -12px;
    padding-top: 5px;
  }

  .nav-menu {
    transform: translateY(9px);
  }
}

@media (min-width: 769px) {
  .nav-menu {
    transform: translateY(20px);
  }
}

.feature-section {
  background-image: url('https://www.transparenttextures.com/patterns/beige-paper.png');
}

.features {
  background-color: transparent !important;
  background-image: url('https://www.transparenttextures.com/patterns/beige-paper.png');
  background-repeat: repeat;
}