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

body {
    background-color: #F8F7EF;
    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;
    }
}

.shop{
    background-color: #ECEBDF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:1rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.shop>h1{
    font-family: 'Quicksand';
    font-size:3.15rem;
    font-weight: 700;
    text-align: center;
}
.shop>p{
    font-family: 'Quicksand';
    font-size:1.25rem;
    font-weight: 500;
    text-align: center;
    width:55%;
}
.shop>p>a>i {
    color: #2B2B2B;
    transition: color 0.3s ease, transform 0.3s ease;
}

.shop>p>a>i:hover {
    color: #6B8E23;
    transform: scale(1.1);
}

.shop>a {
    text-decoration: none;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-color: transparent!important; /* Ensure no white box */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.5rem;
    border-color: transparent !important;
    justify-content: center;
    align-items: center;
    width: 25rem;
    height: 28rem;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1); /* soft shadow */
}
.Photo-Container {
  background-image: url("Blog/image5.jpg"); /* Replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-family: "Quicksand";
  z-index: 0;
  width: 25rem;
  height: 25rem;
}
.Photo-Container::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
}

.One{
    background-image: url("Shop/Radish_China.jpg");
}
.Two{
    background-image: url("Shop/Radish_Purple.jpg");
}
.Three{
    background-image: url("Shop/Fenugreek.jpg");
}
.Four{
    background-image: url("Shop/Mustard_Green.jpg");
}
.Five{
    background-image: url("Shop/Amaranthus_Red.jpg");
}
.Six{
    background-image: url("Shop/Wheatgrass.jpg");
}
.Seven{
    background-image: url("Shop/Mustard_Yellow.jpg");
}
.Eight{
    background-image: url("Shop/KohlRabi_Purple.jpg");
}
.Nine{
    background-image: url("Shop/Broccoli.jpg");
}
.Ten{
    background-image: url("Shop/PakChoi.jpg");
}
.Eleven{
    background-image: url("Shop/Chia.jpg");
}
.Twelve{
    background-image: url("Shop/Cabbage_Green.jpg");
}
.Thirteen{
    background-image: url("Shop/Cabbage_Red.jpg");
}
.Fourteen{
    background-image: url("Shop/Kale_Green.jpg");
}
.Fifteen{
    background-image: url("Shop/Rocket_Arugulla.jpg");
}
.Sixteen{
    background-image: url("Shop/Rosella.jpg");
}
.Seventeen{
    background-image: url("Shop/Clover.jpg");
}
.Eighteen{
    background-image: url("Shop/Mixed.jpg");
}

.Products{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(6,1fr);
    gap: 5rem;
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;

}

.Photo-Info {
  text-align: center;
}

.Photo-Info h6 {
  font-family: 'Quicksand';
  font-size: 2rem;
  font-weight: 500;
  color: #F8F7EF;
}
.highlight {
    color: #6B8E23; /* olive green tone */
    font-weight: 700;
}

.card>p{
    font-family: 'Quicksand';
    font-size: 0.90rem;
    font-weight: 500;
    text-align: center;
    width: 100%;
    height: 3rem;
}

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) {
  /* Navbar layout stacking */
  .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;
  }

  /* Shop section text */
  .shop > h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .shop > p {
    font-size: 1rem;
    width: 90%;
    padding: 0 1rem;
  }

  /* Product grid becomes single column */
  .Products {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    padding: 2rem 1rem;
  }

  /* Card size & image scaling */
  .card {
    width: 90%;
    height: auto;
  }

  .Photo-Container {
    width: 100%;
    height: 60vw;
  }

  .Photo-Info h6 {
    font-size: 1.5rem;
  }

  .card > p {
    font-size: 0.95rem;
    width: 100%;
    height: auto;
  }

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

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

  .FooterImg {
    height: 6rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  /* Navbar adjustments */
  .NavBar {
    padding: 1rem 2rem;
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-left a,
  .nav-right i {
    font-size: 1.1rem;
  }

  .shop-btn {
    padding: 0.75rem 1.25rem;
    font-size: 1.05rem;
  }

  .logo img {
    height: 6.5rem;
  }

  /* Shop Section */
  .shop > h1 {
    font-size: 2.5rem;
  }

  .shop > p {
    font-size: 1.1rem;
    width: 80%;
  }

  /* Products grid: 2 columns */
  .Products {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 3rem;
    padding: 2rem;
  }

  .card {
    width: 100%;
    height: auto;
  }

  .Photo-Container {
    width: 100%;
    height: 50vw;
  }

  .Photo-Info h6 {
    font-size: 1.75rem;
  }

  .card > p {
    font-size: 1rem;
    height: auto;
  }

  /* Footer tweaks */
  .Footer {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
  }

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

  .FooterImg {
    height: 7rem;
  }
}


