/* General Reset and Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff; 
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- Header/Navbar Styling --- */
.navbar {
    display: flex;
    /* PUSH ALL CONTENT TO THE RIGHT */
    justify-content: flex-end; 
    align-items: center;
    padding: 20px 40px;
    position: absolute; 
    width: 100%;
    z-index: 10;
}

/* Container for all right-side elements (Links, Cart, Toggle) */
.nav-group-right {
    display: flex;
    align-items: center;
    /* On desktop, keep elements close together */
    gap: 30px; 
}

/* Desktop Navigation Links */
.nav-links {
    display: flex; 
    gap: 30px; 
}

.nav-item {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 5px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: #90ee90; /* Light green on hover */
}

/* Active link (Home) styling */
.active {
    color: #90ee90; 
    border-bottom: 2px solid #90ee90;
}

.store-link .dropdown-arrow {
    font-size: 10px; 
    margin-left: 5px;
}

/* Cart Icon */
.cart-icon-container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 5px;
}

.cart-icon {
    font-size: 20px;
}

.cart-count {
    background-color: #90ee90; 
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Mobile Toggle and Link Visibility Defaults (Desktop View) */
.menu-toggle,
.mobile-only {
    display: none; 
}

.desktop-only {
    display: block; 
}

/* --- Hero Section Styling (Background and Layout - Unchanged) --- */
.hero-section {
    position: relative;
    height: 100vh; 
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    
  
    background-image: url('assesst/main-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; 
    max-width: 800px;
    padding: 20px;
}

.tagline {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff; 
}

.main-title {
    font-size: 60px;
    font-weight: 500; 
    line-height: 1.1;
    margin-bottom: 5px;
    color: #fff;
}

.subtitle {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 40px;
}

.shop-button {
    background-color: #70ad47; 
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.1s;
    font-family: 'Roboto', sans-serif;
}

.shop-button:hover {
    background-color: #90ee90; 
    transform: translateY(-2px);
}

/* --- Responsiveness (Mobile View) --- */

@media (max-width: 900px) {
    .navbar {
        padding: 15px 20px;
        /* Revert to space-between to allow the logo placeholder to sit left */
        justify-content: space-between; 
    }

    .nav-group-right {
        /* On mobile, use space-between to position elements (My Account, Cart, Toggle) across the right side */
        justify-content: space-between;
        gap: 15px; /* Reduce gap on mobile */
    }

    /* 1. Mobile Menu Toggle */
    .menu-toggle {
        display: block; 
        order: 3; /* Push toggle to the far right */
    }
    
    /* 2. Cart container position change */
    .cart-icon-container {
        margin: 0;
        order: 2;
    }

    /* 3. Mobile/Desktop Link Visibility */
    .desktop-only {
        display: none; 
    }
    
    .mobile-only {
        display: block; 
        order: 1; /* Place My Account link first */
        font-weight: 600;
    }

    /* 4. Navigation Links (Hidden by default) */
    .nav-links {
        display: none; 
    }

    /* Styles when mobile menu is active */
    .nav-links.active {
        display: flex;
        flex-direction: column; 
        position: absolute;
        top: 60px; 
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9); 
        text-align: center;
        padding: 15px 0;
        gap: 15px;
        z-index: 5;
    }

    /* Adjust Hero Text Size for Mobile */
    .main-title {
        font-size: 40px;
    }
    
    .subtitle {
        font-size: 30px;
    }

    .shop-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}
/*section2
/* --- Base Styling for the Cards Page --- */
.cards-page {
    /* Centering the cards horizontally and providing some space */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f0f0f0;
    padding-top: 15vh;
    padding-bottom: 15vh;
}

/* --- General Card Styling (UPDATED) --- */
.card {
    /* Base dimensions and styling */
    width: 100%;
    max-width: 320px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    
    margin-left: 2vh;
    margin-right: 2vh;
    
    /* --- CHANGES START HERE --- */
    background-size: 100vh; /* As requested: The image's width will be 100% of the viewport height */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-position: center;
    /* --- CHANGES END HERE --- */
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Specific background images for each card */
.card-1 {
    background-image: url('assesst/leaves--1.jpeg');
}

.card-2 {
    background-image: url('assesst/leaves--2.jpeg');
}

.card-3 {
    background-image: url('assesst/leaves--3.jpeg');
}

/* --- Card Content Overlay and Text Styling --- */
.card-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 30px 20px 20px;
    color: white;
}

.card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9em;
    line-height: 1.4;
    margin-bottom: 15px;
    opacity: 0.8;
}

/* --- Card Button Styling --- */
.card-button {
    display: block;
    width: 50%;
    padding: 12px 0;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 10px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.collection-button {
    background-color: #4CAF50;
    color: white;
}

.collection-button:hover {
    background-color: #45A049;
}

.store-button {
    background-color: #4CAF50;
    color: white;
}

.store-button:hover {
    background-color: #45A049;
}

/*section-menu
/* --- Media Query for Responsiveness (Desktop/Tablet View) --- */
@media (min-width: 768px) {
    .card {
        width: calc((100% - 40px) / 3);
    }
}
/* Styling for the top-level container, replacing body styling */
#main-content-wrapper {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-image: url(assesst/shadowbg.jpg);
    padding-top: 10vh;
    padding-bottom: 10vh;
}

/* Custom CSS Variables */
.menu-section {
    --primary-text: #333;
    --secondary-text: #888;
    --accent-color: #5cb85c; /* Used for the Sale badge */
    --light-bg: #f5f5f5;
    --star-color: #ffc107;

    padding: 20px 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

/* --- Featured Plants Section --- */

/* Header Styling */
.menu-section .header {
    text-align: center;
    margin-bottom: 50px;
}

.menu-section .header h1 {
    font-size: 2.5em;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.menu-section .header p {
    color: var(--secondary-text);
    font-size: 1.1em;
}

/* --- Plants Grid Layout --- */

.menu-section .plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 20px;
}

/* Card Styling: Background and Shadow */
.menu-section .plant-card {
    text-align: left;
    
    /* Background Pattern */
    background-image: url('assesst/plant-bg.jpeg');
    background-repeat: repeat;
    background-size: cover;
    background-color: #fff; 
    
    /* Box Shadow */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease-in-out;
}

.menu-section .plant-card:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.menu-section .image-container {
    background-color: var(--light-bg); 
    padding: 20px;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-section .plant-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; 
}

/* Sale Badge */
.menu-section .sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 0.8em;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Details */
.menu-section .details {
    padding: 15px; 
}

.menu-section .category {
    color: var(--secondary-text);
    font-size: 0.9em;
    margin-bottom: 2px;
}

.menu-section .name {
    font-weight: bold;
    color: var(--primary-text);
    margin: 0 0 5px 0;
}

/* Rating Stars */
.menu-section .rating span {
    color: var(--star-color);
    font-size: 1.1em;
    letter-spacing: -1px;
    margin-bottom: 5px;
    display: block;
}

/* Price Styling */
.menu-section .price {
    font-size: 1.1em;
    color: var(--primary-text);
    margin-top: 5px;
}

.menu-section .original-price {
    text-decoration: line-through;
    color: var(--secondary-text);
    margin-right: 8px;
    font-size: 0.9em;
}

.menu-section .sale-price {
    color: var(--primary-text);
    font-weight: bold;
}

/* --- Responsive Adjustments (Media Queries) --- */

/* Adjusts to 4 columns on large screens */
@media (min-width: 1024px) {
    .menu-section .plants-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Adjusts to 1 column on small screens (mobile) */
@media (max-width: 599px) {
    .menu-section .plants-grid {
        grid-template-columns: 1fr;
    }
    .menu-section .header h1 {
        font-size: 2em;
    }
}
/* Base styles for the overall page container */
.testimonial-page {
    font-family: Arial, sans-serif;
    padding: 20px;
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: #f8f8f8; /* Light gray background */
    text-align: center;
}

/* Header Styling */
.testimonial-header {
    margin-bottom: 40px;
}

.testimonial-header h1 {
    font-size: 2em;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.testimonial-header p {
    color: #777;
    margin-top: 5px;
}

/* --- Masonry Grid Layout --- */

.testimonial-grid {
    /* Set up the masonry effect using columns */
    column-count: 3; /* Default for large screens (3 columns) */
    column-gap: 20px; /* Space between columns */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Ensure cards don't break across columns */
.testimonial-card {
    /* Card Styles */
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 20px; /* Space below each card */
    display: inline-block; /* Essential for Masonry effect */
    width: 100%; /* Important for display: inline-block */
    box-sizing: border-box;
    break-inside: avoid; /* Prevents card content from splitting between columns */
    text-align: left;
    position: relative;
    color: #333;
}

/* Quote Text Styling */
.testimonial-quote {
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-style: italic;
}

/* Author and Company Styling */
.testimonial-author {
    font-size: 0.9em;
    text-transform: uppercase;
    color: #777;
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 10px;
}

.author-name {
    display: block;
    font-weight: 600;
    color: #444;
}

.company-name {
    display: block;
    font-size: 0.8em;
    color: #aaa;
    margin-top: 2px;
}

/* Large Quote Icon */
.testimonial-card::before {
    content: "\201C"; /* Left double quotation mark */
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 80px;
    line-height: 1;
    color: #e5e5e5;
    font-family: serif;
    z-index: 0;
}

.testimonial-quote {
    position: relative; /* To ensure quote text is above the large icon */
    z-index: 1;
}


/* --- Responsiveness (using Media Queries) --- */

/* Tablet and Smaller Desktops (2 columns) */
@media (max-width: 992px) {
    .testimonial-grid {
        column-count: 2;
    }
}

/* Mobile Devices (1 column) */
@media (max-width: 600px) {
    .testimonial-grid {
        column-count: 1;
        column-gap: 0;
    }

    .testimonial-page {
        padding: 10px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

.footer-page {
    background: #0d0d0d;
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 50px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #f2f2f2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #00bfff;
}

/* Social Icons */
.social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00bfff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .social-icons a {
        margin: 0 8px;
    }
}
.pic-cc{

    background-image: url('assesst/plant-bg.jpeg');
    height: auto;
    width: 100%;
}
/* Lemon Green Responsive Top Banner */
.top-banner {
    background: #ccff66; /* Lemon Green */
    padding: 10px 0;
    width: 100%;
    border-bottom: 2px solid #b2e65d;
}

.banner-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 400;
    color: #333;
}

.contact-item {
    display: flex;
    align-items: center;
}
