*{
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* Base Reset */
body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  /* Header styling */
  #header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: #ffcc00;
    color: #fff;
  }
  .alt{
    position: sticky;
    top:0;
    z-index: 1000;
    padding:10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1);
    }
  #header #logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
  }
  
  /* Navigation styling (mobile-first) */
  #nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: none; /* hidden by default */
    flex-direction: column;
    align-items: center;
  }
  
  #nav ul.show {
    display: flex;
  }
  
  #nav ul li {
    margin: 0.5rem 0;
  }
  
  #nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
  }
  
  /* Hamburger toggle button */
  #menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  /* Show nav on larger screens */
  @media (min-width: 768px) {
    #header {
      flex-direction: row;
      justify-content: space-between;
    }
  
    #menu-toggle {
      display: none;
    }
  
    #nav ul {
      display: flex !important;
      flex-direction: row;
      margin: 0;
    }
  
    #nav ul li {
      margin: 0 1rem;
    }
  }
  .hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
      url('./hens-looking-aggressively-something-farm-yard.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    animation: zoomFade 30s infinite alternate ease-in-out;
  }

  @keyframes zoomFade {
    0% {
      background-size: 100%;
    }
    100% {
      background-size: 105%;
    }
  }

  .hero-content {
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    animation: fadeIn 2s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #f0f0f0;
  }

  .btn {
    display: inline-block;
    background: #ffcc00;
    color: #222;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .btn:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .hero h2 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }

    .btn {
      padding: 10px 20px;
      font-size: 0.9rem;
    }
  }
  
 
  .container2 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px;
  }
  
  
  .formContact {
    flex: 1 1 50%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    margin-bottom: 20px;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #28a745;
    outline: none;
  }
  

  .contact-form button{
    background-color:#ffcc00;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background-color: brown;
  }
  .informo {
    flex: 1 1 40%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .informo ul {
    list-style: none;
    padding: 0;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
  }
  
  .informo li {
    margin-bottom: 10px;
  }
  
  
  @media (max-width: 768px) {
    .container2 {
      flex-direction: column;
    }
  
    .formContact,
    .informo {
      width: 100%;
    }
}
   
  .about-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
  }
  
  .about-text {
    flex: 1;
    min-width: 250px;
  }
  
  .products-section .product-card {
    background: white;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .product-card img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
  }
  
  .product-info {
    flex: 1;
    min-width: 250px;
  }
  
  @media (max-width: 768px) {
    .main-nav ul {
      flex-direction: column;
      background-color: green;
      position: absolute;
      top: 70px;
      right: 0;
      width: 200px;
      display: none;
      padding: 1rem;
    }
  
    .main-nav ul.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  
    .about-container,
    .products-section .product-card {
      flex-direction: column;
    }
  }
  .about-section {
    background: linear-gradient(to right, #fffdf7, #f0f7ff);
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .about-image {
    flex: 1 1 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .about-image:hover img {
    transform: scale(1.05);
  }
  
  .about-text {
    flex: 1 1 55%;
    color: #333;
  }
  
  .about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3b3b3b;
    position: relative;
  }
  
  .about-text h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #f39c12;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 4px;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .about-text strong i {
    margin-right: 8px;
    color: #f39c12;
  }
  
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-text h2::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }

  .products-section {
    background: linear-gradient(to left, #ffffff, #f5faff);
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .products-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  
  .products-container h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2d3436;
    position: relative;
  }
  
  .products-container h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background: #3498db;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 4px;
  }
  
  .product-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }
  
  .product-card img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .product-info {
    max-width: 600px;
    text-align: left;
  }
  
  .product-info h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
  }
  
  .product-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
  }
  
  @media (max-width: 768px) {
    .product-card {
      flex-direction: column;
      text-align: center;
    }
  
    .product-info {
      text-align: center;
    }
  
    .product-card img {
      width: 100%;
      max-width: 400px;
    }
  }
  
  .footer{
    background-color: #ffcc00;
    text-align: center;
    color: white;
  }
  .footer a{
    color: white;
  }