/*
Theme Name: Organic Store Theme
Theme URI: http://example.com/
Author: Jagjot Kaur
Description: Custom WordPress theme for Organic Store
Version: 1.0
*/

:root {
    --primary-green: #8ec63f;
    --text-dark: #1d1d1b;
    --text-light: #666666;
}
    .bg-theme {
        background-color: var(--primary-green);
        color: var(--text-dark);
    }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    /* font-family: "Poppins", sans-serif; */
    font-family: "dashicons", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  /* Header styles */
  .site-header {
    padding: 15px 0;
        position: relative;
        background-image: url('/wp-content/uploads/2025/09/fresh-herbs-e1758360514641.avif');
        border-bottom: 1px solid #eeeeee;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
        height: 400px;
        background-color: #26a7ffbd;
    }
  
  .header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .site-logo {
    height: 100px;
    width: 100px;
  }
  /* Center the title inside the header */
    .header-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 50%;
    }

    .header-title h1 {
        font-size: 36px;
        color: black;
        font-weight: 600;
        font-family: 'Poppins', sans-serif;
    }

  
  .main-navigation {
    display: flex;
    align-items: center;
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
  }
  .home-header {
      background: #f9fafa;
  }
  /*.home-header .nav-menu a {*/
  /*    color: white;*/
  /*}*/
  
  .nav-menu a {
    text-decoration: none;
    color: black;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover,
  .nav-menu .current-menu-item a {
/*     background: var(--primary-green); */
    padding: 5px 10px;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .cart-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
  }
  
  .cart-amount {
    color: var(--text-dark);
    font-size: 15px;
  }
  
  .cart-badge {
    background: var(--primary-green);
    color: white;
    font-size: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #1d1d1b;
  }
  
  /* Get In Touch Section */
  .get-in-touch {
    text-align: center;
    padding: 80px 0;
    background: #ffffff;
    position: relative;
  }
  
  .get-in-touch h1 {
    font-size: 52px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 600;
  }
  
  .leaf-decoration {
    width: 80px;
    height: auto;
    margin: 30px auto;
  }
  
  .contact-info {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 30px;
  }
  
  .contact-item {
    padding: 40px 30px;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
  }
  
  .contact-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
  }
  
  .contact-item i {
    color: var(--primary-green);
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .contact-item p {
    color: var(--text-light);
    margin: 8px 0;
    font-size: 15px;
  }
  
  /* Mobile Menu Styles */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    padding: 50px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .mobile-menu.active {
    right: 0;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
  }
  
  .mobile-nav-menu {
    list-style: none;
    margin: 30px 0;
  }
  
  .mobile-nav-menu li {
    margin: 15px 0;
  }
  
  .mobile-nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .nav-menu {
      gap: 25px;
    }
  
    .contact-info {
      gap: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .main-navigation {
      display: none;
    }
  
    .mobile-menu-toggle {
      display: block;
    }
  
    .contact-info {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
  
    .get-in-touch h1 {
      font-size: 42px;
    }
  }
  
  @media (max-width: 480px) {
    .header-container {
      padding: 0 20px;
    }
  
    .site-logo {
      max-width: 100px;
    }
  
    .get-in-touch h1 {
      font-size: 36px;
    }
  
    .contact-item {
      padding: 30px 20px;
    }
  }

  .border-image {
    position: absolute;
    bottom: -55px; /* Moves the image below the header */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 100%;
}

.border-image img {
    display: block;
    width: 100%;
    max-width: 600px; /* Adjust width as needed */
}

.custom-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: auto;
    padding: 20px;
    /* background: white;
    box-shadow: 0px 0px 10px grey; */
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.full-width {
    grid-column: span 1;
}

/* Submit Button */
.custom-form-grid [type="submit"] {
    background-color: #497214;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.custom-form-grid [type="submit"]:hover {
    background-color: #3a5b10;
}

/* Responsive Grid */
@media (min-width: 768px) {
    .custom-form-grid {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: span 2;
    }
}

.site-branding img {
  width: 100px;
}


  
  