:root {
  --main-color: #235126;
  --nav-color: #AAC87E;
  --text-color: #235126;
  --hover-bg: #235126;
  --hover-text: #AAC87E;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Tenor Sans', sans-serif;
  background-color: var(--nav-color);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  background-color: var(--nav-color);
  display: flex;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
}

.branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.branding img {
  height: 100px;
  width: auto;
  border-radius: 10px;
  background-color: var(--main-color);
}

.branding-text {
  font-family: 'ALTA', sans-serif;
  font-size: clamp(20px, 4vw, 32px);
  color: var(--main-color);
  width: auto;
  max-width: 300px;
}

nav {
  background-color: var(--main-color);
  display: flex;
  gap: 20px;
  padding: 10px 30px;
  border-radius: 25px;
}

nav a {
  text-decoration: none;
  color: white;
  font-family: 'Aileron', sans-serif;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: bold;
  white-space: nowrap;
}

nav a:hover,
nav a:active,
nav a.active {
  background-color: var(--nav-color);
  color: var(--main-color);
}

.mobile-only {
    margin-top: 5px;
    display: none;
}
.hamburger-button {
  background-color: var(--main-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 24px;
  margin-left: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-content {
  display: none;
  position: absolute;
  margin-top: 15px;
  top: 100px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  width: 220px;
  z-index: 1000;
  overflow: hidden;
}

.hamburger-content a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: var(--text-color);
  font-family: 'Aileron', sans-serif;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.hamburger-content a:last-child {
  border-bottom: none;
}

.hamburger-content a:hover {
  background-color: var(--hover-bg);
  color: var(--hover-text);
}

.hero {
  background: url('assets/ambassadors.jpg') no-repeat center center/cover;
  height: 70vh;
  min-height: 400px;
  max-height: 900px;
  width: 100%;
  position: relative;
}

.intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  gap: 40px;
  flex-wrap: wrap;
  background-color: #D8E8B5;
  max-width: 100%;
}

.intro-block {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  flex: 1;
  min-width: 300px;
}

.intro-block img {
  height: 200px;
  width: 200px;
  min-width: 150px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.intro-block .text {
  font-family: 'Aileron', sans-serif;
  flex: 1;
}

.intro-block .text strong {
  font-size: clamp(28px, 5vw, 42px);
  display: block;
  line-height: 1.2;
}

.intro-block .text .title {
  font-style: italic;
  font-size: clamp(28px, 5vw, 42px);
  display: block;
  line-height: 1.2;
}

.intro-block .text button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Aileron', sans-serif;
  transition: background-color 0.3s ease;
}

.intro-block .text button:hover {
  background-color: #1a3d1f;
}

.content-section {
  padding: 40px 20px;
  max-width: 90%;
  margin: auto;
  font-size: clamp(16px, 2.5vw, 20px);
  font-family: 'Tenor Sans', sans-serif;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 90%;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  padding: 40px 20px;
}

.product-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  font-family: 'Aileron', sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h4 {
  margin: 15px 0 10px;
  font-size: clamp(16px, 2vw, 18px);
  font-weight: bold;
}

.product-card p {
  color: var(--text-color);
  font-weight: bold;
  margin: 0;
}

.contact-section {
  background-color: white;
  padding: 60px 20px;
  margin-top: 3rem;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  justify-content: center;
}

.contact-header img {
  height: 120px;
  width: auto;
  border-radius: 10px;
  flex-shrink: 0;
}

.contact-header h1 {
  font-size: clamp(28px, 5vw, 36px);
  margin: 0;
  font-weight: normal;
}

.contact-header h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin: 0;
  font-family: 'Aileron', sans-serif;
}

.contact-form {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row input {
  flex: 1;
  min-width: 250px;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Aileron', sans-serif;
  font-size: 16px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 2px rgba(35, 81, 38, 0.1);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  align-self: center;
  background-color: var(--nav-color);
  color: var(--text-color);
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-family: 'Aileron', sans-serif;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #9ab76e;
}

.contact-form button img {
  height: 20px;
}

.feedback-table {
  width: 90%;
  max-width: 1000px;
  margin: 2rem auto;
  border-collapse: collapse;
  text-align: left;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feedback-table th,
.feedback-table td {
  border: 1px solid #ddd;
  padding: 12px 16px;
}

.feedback-table th {
  background-color: var(--main-color);
  color: white;
  font-weight: bold;
}

.feedback-cards {
  width: 90%;
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feedback-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-card p {
  margin: 0.5rem 0;
}

footer {
  background-color: var(--main-color);
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-left img {
  height: 120px;
  width: auto;
  border-radius: 10px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Aileron', sans-serif;
}

.footer-right a,
.footer-right span {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: var(--nav-color);
}

.footer-bottom {
  background-color: #1e4321;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow.rotated {
  transform: rotate(180deg);
}

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
  header {
      width: 95%;
      padding: 10px 15px;
      gap: 15px;
  }
  
  .branding {
      justify-content: center;
  }
  
  .branding img {
      height: 70px;
  }
  
  .branding-text {
      display: none;
  }
  
  nav {
      display: none;
  }
  
  .hamburger-menu {
      display: block;
  }
  
  .hero {
      height: 20vh;
      min-height: 150px;
  }
  
  .intro-section {
      padding: 30px 15px;
      gap: 25px;
  }
  
  .intro-block {
      flex-direction: column;
      text-align: center;
      min-width: auto;
      width: 100%;
  }
  
  .intro-block img {
      height: 150px;
      width: 150px;
  }
  
  .content-section {
      padding: 30px 15px;
      width: 95%;
  }
  
  .products-grid {
      grid-template-columns: 1fr;
      width: 95%;
      gap: 20px;
      padding: 30px 15px;
  }
  
  .contact-header {
      flex-direction: column;
      text-align: center;
  }
  
  .contact-header img {
      height: 80px;
  }
  
  .form-row {
      flex-direction: column;
  }
  
  .form-row input {
      min-width: auto;
  }
  
  .feedback-table {
      font-size: 14px;
  }
  
  .feedback-table th,
  .feedback-table td {
      padding: 8px 12px;
  }
  
  .feedback-cards {
      grid-template-columns: 1fr;
  }
  
  footer {
      flex-direction: column;
      text-align: center;
      padding: 20px 15px;
  }
  
  .footer-left {
      flex-direction: column;
  }
  
  .footer-left img {
      height: 80px;
  }
  
  .footer-right {
      align-items: center;
      text-align: center;
  }
}

/* Medium Mobile to Small Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  header {
      width: 95%;
  }
  
  .branding img {
      height: 80px;
  }
  
  nav {
      display: none;
  }
  
  .hamburger-menu {
      display: block;
  }
  
  .mobile-only {
      display: block;
  }
  
  .hero {
      height: 60vh;
      min-height: 350px;
  }
  
  .intro-section {
      padding: 35px 20px;
  }
  
  .intro-block {
      flex-direction: column;
      text-align: center;
      min-width: auto;
  }
  
  .intro-block img {
      height: 180px;
      width: 180px;
  }
  
  .products-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      width: 95%;
  }
  
  .contact-header {
      flex-direction: column;
      text-align: center;
  }
  
  .form-row {
      flex-direction: column;
  }
  
  footer {
      padding: 25px 20px;
  }
  
  .footer-left img {
      height: 100px;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  
  header {
    width: 95%;
}

.branding img {
    height: 80px;
}


  .mobile-only {
      display: block;
  }

nav {
    display: none;
}

.hamburger-menu {
    display: block;
}

.hero {
    height: 60vh;
    min-height: 350px;
}

.intro-section {
    padding: 35px 20px;
}

.intro-block {
    flex-direction: column;
    text-align: center;
    min-width: auto;
}

.intro-block img {
    height: 180px;
    width: 180px;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 95%;
}

.contact-header {
    flex-direction: column;
    text-align: center;
}

.form-row {
    flex-direction: column;
}

footer {
    padding: 25px 20px;
}

.footer-left img {
    height: 100px;
}

  .branding img {
      height: 90px;
  }
  
  
  .hero {
      height: 25vh;
      min-height: 400px;
  }
  
  .intro-section {
      padding: 40px 25px;
  }
  
  .intro-block img {
      height: 180px;
      width: 180px;
  }
  
  .products-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      width: 95%;
  }
}

/* Large Laptop/Desktop (1025px - 1440px) */
@media (min-width: 1025px) and (max-width: 1440px) {
  header {
      width: 85%;
  }
  
  .hero {
      height: 70vh;
      min-height: 500px;
  }
  
  .content-section {
      width: 85%;
  }
  
  .products-grid {
      width: 85%;
  }
  
  .feedback-table {
      width: 85%;
  }
  
  .feedback-cards {
      width: 85%;
  }
}

/* Extra Large Screens (1441px+) */
@media (min-width: 1441px) {
  header {
      max-width: 1200px;
  }
  
  .content-section {
      max-width: 1000px;
  }
  
  .products-grid {
      max-width: 1200px;
  }
  
  .hero {
      height: 75vh;
      max-height: 900px;
  }
}