* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ECEBDF!important;
    font-family: 'Quicksand', sans-serif;
}

/* Sticky Navbar */
.NavBar {
    position: relative;
    top: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 4rem;
    background-color: #F8F7EF;
    min-height: 9rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInDown 0.5s ease forwards;
}

/* Left section: About, Blog, Contact */
.nav-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
}

/* Center: Logo */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    height: 8rem;
    transition: transform 0.4s ease;
}

.logo img:hover {
    transform: scale(1.14);
}

/* Right section: Icons + Shop */
.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
}

/* Nav Links */
.nav-left a {
    font-size: 1.00rem;
    color: #2B2B2B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: #6B8E23;
}

/* Social Icons */
.nav-right i {
    font-size: 1.75rem;
    color: #2B2B2B;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-right i:hover {
    color: #6B8E23;
    transform: scale(1.1);
}

.nav-right a {
    text-decoration: none !important;
}

/* Shop Button */
.shop-btn {
    background-color: #6B8E23;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0;
    font-weight: 400;
    font-family: "Quicksand", sans-serif;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius:0.50rem;
    display: inline-block;
    text-decoration: none;
}

.shop-btn:hover {
    background-color: #5E7B1E;
    transform: translateY(-2px);
    color: white !important;
}

/* Fade-in Animation */
@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .NavBar {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-left, .nav-right, .logo {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .logo img {
        height: 70px;
    }

    .shop-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .nav-left a {
        font-size: 1rem;
    }

    .nav-right i {
        font-size: 1.5rem;
    }
}
/* General Form Styles */
.flexbox {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    background-color: transparent !important;
    padding: 4rem 2rem;
    font-family: 'Quicksand', sans-serif;
}

/* Contact Info Section */
.ContactInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding-left: 2rem;
    color: #2D3A27;
}

.ContactInfo h1 {
    font-family: 'Quicksand';
    font-weight: bold;
    font-size: 2.5rem;
    color: #2D3A27;
}

.ContactInfo .heading {
    font-weight: bold;
    font-size: 1.2rem;
    color: #7F886B;
}

.ContactInfo p {
    font-size: 1rem;
    color: #3E4735;
}

.ContactInfo a i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #7F886B;
    transition: color 0.3s ease;
}

.ContactInfo a i:hover {
    color: #198754;
}

/* Contact Form Section */
.container {
    max-width: 500px;
    background-color: transparent!important;
    padding: 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    color: #2D3A27;
}

/* Labels */
.container label {
    color: #7F886B;
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

/* Inputs and Textarea */
.container input,
.container textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
    background-color: white;
    font-family: 'Quicksand';
}

.name-fields {
    display: flex;
    gap: 1rem;
}

.name-fields input {
    flex: 1;
}

/* Button Styling */
.container button {
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem;
    border: none;
    margin-top: 2rem;
    cursor: pointer;
    background-color: #6B8E23;
    color: white !important;
    font-family: "Quicksand", sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius:0.75rem !important;
    display: inline-block;
    text-decoration: none;
}

.container button:hover {
    background-color: #5E7B1E;
    transform: translateY(-2px);
    color: white !important;
}



footer {
    background-color: #F8F7EF;
    padding: 3rem 2rem;
    font-family: "Quicksand", sans-serif;
    color: #3E4735;
}

.Footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    
}

.footer-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.social-icons a {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: #7F886B;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #198754; /* match navbar hover green */
}

.footer-logo {
    text-align: center;
}

.FooterImg {
    height: 8rem;
    transition: transform 0.4s ease;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.footer-links a {
    text-decoration: none;
    color: #7F886B;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #198754;
}
@media (max-width: 768px) {
  /* Flex container becomes stacked */
  .flexbox {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 3rem;
  }

  /* Contact Info text aligned center on mobile */
  .ContactInfo {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .ContactInfo h1 {
    font-size: 2rem;
  }

  .ContactInfo .heading {
    font-size: 1.1rem;
  }

  .ContactInfo p {
    font-size: 1rem;
  }

  /* Reduce icon size slightly */
  .ContactInfo a i {
    font-size: 1.3rem;
  }

  /* Contact form max width adjustment */
  .container {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  /* Stack name fields vertically */
  .name-fields {
    flex-direction: column;
    gap: 1rem;
  }

  /* Footer responsiveness */
  .Footer {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .FooterImg {
    height: 5rem;
  }

  .footer-left {
    font-size: 0.9rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* Adjust NavBar Padding */
  .NavBar {
    padding: 1.5rem 2rem;
  }

  .logo img {
    height: 6rem;
  }

  /* Nav font and icon sizes */
  .nav-left a,
  .nav-right i {
    font-size: 1rem;
  }

  .shop-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  /* Flexbox Section */
  .flexbox {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2.5rem;
  }

  .ContactInfo {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }

  .ContactInfo h1 {
    font-size: 2.3rem;
  }

  .ContactInfo .heading {
    font-size: 1.2rem;
  }

  .ContactInfo p {
    font-size: 1.05rem;
  }

  .ContactInfo a i {
    font-size: 1.4rem;
  }

  /* Form container */
  .container {
    max-width: 600px;
    padding: 2rem;
  }

  .name-fields {
    flex-direction: row;
    gap: 1rem;
  }

  /* Footer */
  .Footer {
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
  }

  .footer-links {
    flex-direction: row;
    gap: 2rem;
  }

  .FooterImg {
    height: 6rem;
  }

  .footer-left {
    font-size: 1rem;
  }
}




