/* styles.css */


/* LAYOUT */
header {
    background-color: rgba(255, 255, 255, 0.61);
    color: rgb(64, 211, 20);
    padding: 0px;
    gap: 0px; 
    margin: 0px 0;
    background: linear-gradient(to bottom, white 90%, rgba(255, 255, 255, 0));
    padding-bottom: 15px;

}



.header-branding { 
    display: flex;
    flex-direction: column;
    align-items: center;      
    gap: 0px;                 
    margin: 0 0;
}
.header-branding {
  flex-direction: column;
  gap: 10px;
  text-align: center;
  margin-top: 0px;
}
.header-branding h1 {
  margin: 0;
  justify-content: center; 
}

.brand {
  font-size: 36px;
  font-weight: bold;
  margin: 0px 0;
}
.logo {
    margin-top: 0px;
    height: 100px;
    margin: 0;
    padding-top: 10px;
}


  /* Basic layout */
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    padding: 0px 10px;
    position: relative;
    margin-top: 0px;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

.navbar a {
  font-size: 24px;
  font-weight: bold;
}
.nav-links,
.navbar a {
  position: relative;
}




.nav-links {
  background-color: transparent;
  display: flex;
  width: 90%;
  justify-content: space-evenly;  /* or use space-around / space-evenly */
  gap: 20px; /* optional, for consistent spacing */
  list-style: none;
  padding: 0px;
  margin: 0;
}


.nav-links li a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}


/* Toggle button */
.toggle-btn {
  display: none;
  font-size: 28px;
  background: white;
  border: none;
  cursor: pointer;
  color: #000 !important;
}


.dropdown {
  position: relative;
}

.dropdown-menu {
  left: 30px;
  opacity: 0;
  visibility: hidden;
  flex-direction: column;
  position: absolute;
  background: #fff;
  padding: 10px;
  top: 100%;
  list-style: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  border-radius: 8px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: all;
  text-align: center;
}


.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


.dropdown-menu li {
  padding: 5px 0;
}

.dropdown-menu.show {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Responsive rules */


.nav-links.show {
  display: flex;
}


/* Mobile styles */

@media (min-width: 769px) {
.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;

  background: white;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
}

@media (max-width: 768px) {
  .toggle-btn {
    display: block;
    position: absolute;
    top: -170px;
    left: 340px;
    font-size: 28px;
    background: none;
    border: none;
    color: #000000 !important;
    z-index: 1001;
  }

  .navbar{
    background-color: #ffffff !important;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -70%; /* Start off-screen to the left */
    width: 50%;
    height: auto;               /* ✅ let it grow naturally */
    flex-direction: column;
    gap: 30px;                  /* ✅ space between links */
    padding: 80px 20px 280px; 
    background-color: rgb(255, 255, 255) !important;
    color: rgb(0, 0, 0) !important;

    display: flex;
    transition: left 0.3s ease;
    z-index: 1001;
  }

  .nav-links li {
    margin: 0px 0;
    padding: 0;
    background-color: white !important;
  }

  .nav-links a {
    color: #000000 !important;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;     /* Optional: slightly smaller text */
    padding: 0px 0;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    gap: 0;
    text-align: center;
    display: flex;
           /* Reduce internal link padding */
  }
  .nav-links.show {
    left: 0; /* Slide in from the left */
  }

  .nav-links li a{
    color: rgb(0, 0, 0) !important;
    background: transparent !important;
  }
}






body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0px;
  line-height: 1.6;
  /*background-color: #ffffff; */
}

body {
background-image: url('imgs/background.webp');
background-size: cover;
background-position: center;
background-attachment: fixed;
margin: 0;
padding: 0;
font-size: 112.5%;
}

footer {
  background-color: white;
  color: black;
  text-align: center;
  padding: 20px;
}

main {
  padding: 20px;
}
/* END OF LAYOUT */




/* ALL TABS*/

.textbox {
    background-color: #f2f2f2be;   /* light grey */
    padding: 20px;
    border-radius: 8px;
    color: #333;
    margin: 20px auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* optional soft shadow */
    font-size: 1.125rem;
    padding: 30px;
  }

  h2 {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #140101;
  }
  

  /* END OF ALL TABS */


  /* PRODUCTS */

  .centered-text {
    text-align: center;
  }

  .section-divider {
    border: none;
    border-top: 2px solid #ddd;
    margin: 30px auto;
    width: 80%; /* adjust width to your liking */
  }

  .disclaimer-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
  }

  .product-category {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }

  .subcategory p {
    margin-bottom: 40px;     /* adds space after each fruit description */
  }

  .product-category h3 {
    font-size: 28px;
    font-weight: bold;
    color: #140101;
    /*border-bottom: 2px solid #ddd;
    padding-bottom: 8px; */
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .subcategory h4 {
    font-size: 20px;
    color: #333;
    font-weight: bold;
    margin-top: 15px;
  }

  .fruit-image {
    width: 240px;      /* adjust size as needed */
    height: auto;
    display: block;

  }
  /* END OF PRODUCTS */

/* CONTACT US */

.disabled-link {
    pointer-events: none;
    cursor: default;
    color: white; /* keeps style consistent */
  }

  


  .contact-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.897);
    border-radius: 10px;
  }
  
  .inquiry-form input,
  .inquiry-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
  }
  
  .inquiry-form button {
    padding: 10px 20px;
    background-color: #140101;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .inquiry-form button:hover {
    background-color: #333;
  }
  .thank-you-box {
    max-width: 600px;
    margin: 100px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .thank-you-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #140101;
  }
  
  .thank-you-box p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .back-home {
    text-decoration: none;
    background-color: #140101;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .back-home:hover {
    background-color: #333;
  }

/* END OF CONTACT US */
