/* General Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fffdf7;
    color: #333;
  }
  
  header {
    background: linear-gradient(to right, #e2e4e6, #f18f0f);
    padding: 20px;
    display: flex;
    align-items: justify;
    justify-content: space-between;
  }
  .centered-header {
    background: linear-gradient(to bottom, #ffffff, #c7630b);
    height: 86vh; /* Full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    color: white;
  }
  .logo {
    justify-content: center;
    display: block;
    margin: 0 auto 40px auto; /* Centers the logo and adds space below */
    max-width: 500px; /* Adjust size as needed */
    height: auto;
  }
  .header-text h1 {
    justify-content: center;
    font-size: 60px;
    margin-bottom: 10px;
  }
  
  .header-text p {
    font-size: 38px;
    margin: 5px 0 0 ;
  }
  
  header img {
    height: 90px;
    border-radius: 10px;
  }
  
  header h1 {
    color: white;
    font-size: 30px;
  }
  
  header p {
    color: white;
    font-size: 18px;
  }

 /* Navigation Bar */
nav {
    background-color: #c7630b;
    display: flex;
    height: 35px;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav a {
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    padding: 4px 15px;
    border-radius: 8px;
    transition: 0.3s ease;
    border: 1px solid white; /* Added boundary box with white border */
  }
  
  nav a:hover {
    background-color: #f1c40f;
    color: #000;
    transform: scale(1.05);
  }
  
  /* Sections */
  section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }
  /* Home Section */
#home {
    margin-top: 10px;
    padding: 30px;
    background-color: #f9f1e7; /* Light background to match the theme */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
  }
  
  .highlight-box {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;

    margin-top: 40px;
    margin-bottom: 20px; /* Space between highlight box and home text */
  }
  
  .highlight-box img {
    max-width: 600px; /* Increased size of the image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: for a rounded look */
    margin-bottom: 10px; /* Space between image and award text */
  }
  
  .award-text {
    font-size: 20px;
    color: #744700; /* Matching orange-brown theme */
  }
  
  h2 {
    font-size: 30px;
    color: #c7630b; /* Matching navigation bar color */
    margin-bottom: 15px;
  }
  
  .home-text {
    text-align: left;
    max-width: 800px; /* Limit width for readability */
    margin: 0 auto; /* Center the text block */
    font-size: 18px;
    color: #333;
  }
  /* about */
  #about {
    margin-top: 10px;
    padding: 30px;
    background-color: #f9f1e7; /* Light background to match the theme */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 30px;
  }
  
  .about-text{
    line-height: 1.6;
    font-size: 20px;
  }
  .about-text p{

    text-align: left;
    font-size: 20px;
  }
  .about-text p.diff{
    font-weight: bold;
    font-size: x-large;
  }
  .about-text ul {
    list-style-type: disc;
    margin: 20px 0;
    font-size: 20px;
    padding-left: 40px;
    text-align: left; /* Optional: left-align list for better readability */
  }
  .about-text li {
    margin-bottom: 10px;
  }
  .home-text {
    font-size: 18px;
    line-height: 1.6;
  }

    /* Products */
    #products {
        margin-top: 10px;
        padding: 50px;
        background-color: #f9f1e7; /* Light background to match the theme */
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        font-size: 20px;
        margin-bottom: 30px;
      }
      
      #products .product {
        text-align: left;
        font-size: 20px;
        font-weight: bolder;
      }
  
      .products-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
      }
      
      .product-card {
        background-color: #fefefe;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }
      
      .product-card:hover {
        transform: translateY(-10px);
      }
      
      .product-card h3 {
        font-size: 24px;
        color: #e67e22;
      }
      
      .product-card ul {
        list-style: none;
        padding: 0;
        font-size: 16px;
      }
      
      .product-card ul li {
        margin: 10px 0;
      }
      
      .product-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
        border-radius: 8px;
        margin-bottom: 15px;
        border: 1px solid #f0f0f0;
      }
  /* Footer */

  footer {
    background-color: #c7630b;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
  }
  
  /* Contact Form Styles */
  #contact {
    margin-top: 10px;
    padding: 50px;
    background-color: #f9f1e7; /* Light background to match the theme */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
  }
  
  .contact-form button {
    background-color: #c7630b;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #f1c40f;
    color: #333;
  }

  .contact-info {
    margin-bottom: 30px;
    text-align: left;
    font-size: 17px;
  }
  
  .contact-info p {
    margin: 10px 0;
  }
  
  .contact-info a {
    color: #e67e22; /* Match your site's color scheme */
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  @media screen and (max-width: 576px) {
    /* Header */
    .centered-header {
      height: auto;
      padding: 30px 15px;
    }
    
    .logo {
      max-width: 150px;
      margin-bottom: 20px;
    }
    
    .header-text h1 {
      font-size: 28px;
    }
    
    .header-text p {
      font-size: 16px;
    }
    
    /* Navigation */
    nav {
      flex-direction: column;
      height: auto;
      gap: 10px;
      padding: 10px;
    }
    
    nav a {
      width: 80%;
      text-align: center;
      padding: 8px 0;
    }
    
    /* Sections */
    section {
      padding: 20px 15px;
    }
    
    #home, #about, #products, #contact {
      padding: 20px 15px;
    }
    
    .highlight-box img {
      max-width: 100%;
    }
    
    /* Products */
    .products-list {
      grid-template-columns: 1fr;
    }
    
    /* Forms */
    .contact-form input,
    .contact-form textarea {
      padding: 10px;
    }
  }
  
  /* Tablets - Medium screens (577px to 992px) */
  @media screen and (min-width: 577px) and (max-width: 992px) {
    .centered-header {
      height: auto;
      padding: 40px 20px;
    }
    
    .logo {
      max-width: 300px;
    }
    
    .header-text h1 {
      font-size: 40px;
    }
    
    .header-text p {
      font-size: 24px;
    }
    
    /* Navigation */
    nav {
      gap: 20px;
    }
    
    /* Products */
    .products-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
/* Mobile Navigation Styles */
.mobile-nav-toggle {
    background-color: #c7630b;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    width: 100%;
    text-align: center;
  }
  
  .mobile-nav {
    display: none;
    width: 100%;
  }
  
  .mobile-nav.nav-open {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  
  .mobile-nav a {
    width: auto;
    margin: 5px;
    margin-bottom: 10px;
    text-align: center;
    padding: 8px 15px;
  }
  
  @media (max-width: 480px) {
    .mobile-nav.nav-open {
      gap: 5px;
    }
    
    .mobile-nav a {
      padding: 5px 10px;
      font-size: 0.9em;
    }
  }
