:root {
    --primary-green: #2E7D32;
    --secondary-green: #4CAF50;
    --accent: #81C784;
    --light-green: #C8E6C9;
    --background: #F1F8E9;
    --text: #1B5E20;
    --dark-text: #333333;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 500;
}

html {
    scroll-behavior: auto;
}

/* Bold Text */
.bold-text {
    font-weight: 600;
}

/* Header Styles */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px var(--shadow);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    height: 50px;
    width: auto;
    margin-top: 20px;
}

#header h1 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    margin: 0;
}

#header h1 a {
    color: var(--primary-green) !important;
    text-decoration: none;
    font-weight: 700;
    transition: none !important;
}

/* Force heading to stay green without transitions */
#header h1 a,
#header h1 a:hover,
#header h1 a:active,
#header h1 a:focus {
    color: var(--primary-green) !important;
    transition: none !important;
    animation: none !important;
}

/* Navigation */
#nav {
    display: flex;
}

#nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

#nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

#nav a:hover {
    color: var(--accent);
}

#nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

#nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s;
    font-size: 0.9em;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: var(--light-green);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropbtn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
}

/* Split Hero Section */
.hero-split {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* Center content */
    position: relative;
    margin-top: 70px;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

#banner .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    flex: 0 1 auto; /* Allow content to size naturally */
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

#banner {
    position: relative;
    overflow: hidden;
}

#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eaf3ea; /* fallback color while image loads */
    background-image: url('../img/new-she-shed-pictures/GS[1].webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.main-heading {
    font-family: 'Georgia', serif;
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 0.3rem;
    color: var(--primary-green);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
    letter-spacing: 1px;
    position: relative;
    display: block;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--dark-text);
}

.hero-intro {
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    color: var(--primary-green) !important;
    margin: 0.5rem auto 2rem auto !important;
    max-width: 800px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    font-family: 'Georgia', serif !important;
    font-style: italic !important;
    opacity: 0.9 !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--accent));
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.2);
}

.cta-button.secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
}

/* Sections */
.section {
    padding: 6rem 0 4rem;
    margin-bottom: 2rem;
    scroll-margin-top: 80px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-text {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-green);
}

.section-heading {
    font-family: 'Georgia', serif;
    color: var(--primary-green);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    font-weight: 800;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Products Section */
.products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    text-align: center;
    scroll-margin-top: 80px;
}

/* Section Header with Image */
.section-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-start;
}

.section-image-container {
    flex-shrink: 0;
}

.section-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid var(--light-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.05);
}

.section-header .category-heading {
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

/* Section Products */
.section-products {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.section-products h4 {
    color: var(--primary-green);
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    background: var(--white);
    margin-bottom: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-list li strong {
    color: var(--primary-green);
    font-weight: 600;
}

/* Plant Items with Images */
.plant-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem !important;
}

.plant-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--light-green);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: optimize-quality;
}

.plant-info {
    flex-grow: 1;
}

.products-intro {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 1rem auto 3rem auto;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    font-family: 'Georgia', serif;
    font-style: italic;
    opacity: 0.9;
}

.product-category {
    margin-bottom: 5rem;
    scroll-margin-top: 100px;
}

.category-heading {
    font-family: 'Georgia', serif;
    color: var(--primary-green);
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    font-weight: 700;
    background-color: var(--light-green);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Handle single product cards to prevent them from being too wide */
.product-grid:has(.product-card:only-child) {
    justify-content: center;
}

.product-grid:has(.product-card:only-child) .product-card {
    max-width: 400px;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--light-green);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
    display: block;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    color: var(--primary-green);
    margin: 0.5rem 0;
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.product-card p {
    flex-grow: 1;
    margin-top: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-text);
}

.product-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green);
    border: 1px solid var(--accent);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Highlights Section */
.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--background);
}

.highlight-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 8px 25px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.highlight-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
}

/* Featured Plants Section */
.featured-plants {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
    text-align: center;
}

.featured-plants h2 {
    font-family: 'Georgia', serif;
    color: var(--primary-green);
    font-size: 3rem;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.featured-plants h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 3px;
    background: var(--light-green);
    border-radius: 2px;
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.plant-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.plant-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    display: block;
}

.plant-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Georgia', serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}

.plant-card p {
    flex-grow: 1;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

/* Location Callout */
.location-callout {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(76, 175, 80, 0.9)),
                url('../img/She Shed/Gardenshed2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    padding: 4rem 2rem;
    margin: 6rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.location-callout .callout-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 100%;
}

.location-callout .visit-us-text {
    flex: 1 1 50%;
    text-align: left;
    margin-right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.location-callout h2 {
    color: var(--white);
    font-family: 'Georgia', serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.location-callout .visit-us-text p {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

/* Map Container */
.location-callout .map-container {
    flex-shrink: 0;
    text-align: center;
    margin-top: 0;
}

.location-callout .map-container h4 {
    color: var(--white);
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.location-callout .map-embed {
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #ffffff;
}

.location-callout .map-directions {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.location-callout .map-directions i {
    color: rgba(255, 255, 255, 0.9);
    margin-right: 0.5rem;
}

.location-callout .map-directions a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}

.location-callout .map-directions a:hover {
    color: #f0f8ff !important;
    border-bottom-color: #f0f8ff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Responsive Design for Location Callout */
@media (min-width: 1025px) {
    .location-callout .callout-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .location-callout .visit-us-text {
        text-align: left;
    }

    .location-callout .map-container {
        text-align: left;
    }
}

@media (min-width: 1025px) {
    .location-callout .callout-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .location-callout .visit-us-text {
        text-align: left;
    }

    .location-callout .map-container {
        text-align: left;
    }
}

@media (min-width: 1025px) {
    .location-callout .callout-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .location-callout .visit-us-text {
        text-align: left;
    }

    .location-callout .map-container {
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .location-callout .callout-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .location-callout .visit-us-text {
        margin-right: 0;
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .location-callout h2 {
        font-size: 2.5rem;
    }
    
    .location-callout .visit-us-text p {
        font-size: 1.2rem;
    }
    
    .location-callout .map-embed {
        width: 350px;
        height: 280px;
    }
}

@media (max-width: 768px) {
    .location-callout {
        padding: 3rem 1.5rem;
        margin: 4rem 1rem;
    }
    
    .location-callout h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .location-callout .visit-us-text p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .location-callout .map-container h4 {
        font-size: 1.3rem;
    }
    
    .location-callout .map-embed {
        width: 300px;
        height: 250px;
    }
    
    .location-callout .map-directions {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .location-callout {
        padding: 2.5rem 1rem;
        margin: 3rem 0.5rem;
        border-radius: 20px;
    }
    
    .location-callout h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .location-callout .visit-us-text p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .location-callout .map-container h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .location-callout .map-embed {
        width: 280px;
        height: 220px;
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .location-callout .map-directions {
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }
}

@media (max-width: 360px) {
    .location-callout {
        padding: 2rem 0.8rem;
        margin: 2rem 0.3rem;
    }
    
    .location-callout h2 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }
    
    .location-callout .visit-us-text p {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .location-callout .map-container h4 {
        font-size: 1.1rem;
    }
    
    .location-callout .map-embed {
        width: 250px;
        height: 200px;
    }
    
    .location-callout .map-directions {
        font-size: 0.8rem;
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--secondary-green);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Page Hero (for About and Visit pages) */
.page-hero {
    height: 60vh;
    width: 100vw;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.page-hero .hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.page-hero h2 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.page-hero p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Specific page banners */
.about-hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../img/She Shed/Gardenshed2.jpg');
}

.visit-hero-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../img/She Shed/Gardenshed2.jpg');
}

/* About Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content.full-width {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.about-text h3, .section-heading {
    color: var(--primary-green);
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    margin-top: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 0.5rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.8rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #333;
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(27, 94, 32, 0.15);
}

.about-image .photo-caption {
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
    color: var(--text);
    font-size: 0.9rem;
    max-width: 500px;
}

/* Visit Page Styles */
.visit-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.visit-section > h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-family: 'Georgia', serif;
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.visit-info,
.visit-details {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 30px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-info:hover,
.visit-details:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.visit-info h3,
.visit-details h3 {
    color: var(--primary-green);
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.visit-info address {
    font-style: normal;
    line-height: 1.6;
}

.visit-info h3 + address,
.visit-info h3 + p,
.visit-details h3 + p {
    border-top: 1px solid #eef3ea;
    padding-top: 0.75rem;
}

.visit-photo-placeholder {
    grid-column: 1 / -1;
    height: 320px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(200, 230, 201, 0.6), rgba(129, 199, 132, 0.6)),
                url('../img/She Shed/Gardenshed1.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 25px var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e4e2f;
    font-weight: 600;
    text-align: center;
    padding: 1.25rem;
    font-size: 1.1rem;
}

.friendly-note {
    margin-top: 1rem;
    background: #f7fbf5;
    border: 1px dashed #cfe6cf;
    color: #2e5e33;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-style: italic;
}

.friendly-note strong {
    color: var(--primary-green);
}

/* Footer */
footer {
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column-reverse;
        height: auto;
        padding-top: 100px;
    }
    
    .hero-image, .hero-content {
        width: 100%;
        max-width: 600px;
        margin: 1rem auto;
    }
    
    .main-heading {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Header and Navigation */
    #header {
        padding: 0.5rem 1rem;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .header-logo {
        height: 40px;
    }
    
    #header h1 {
        font-size: 1.2rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    #nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .mobile-nav a {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: var(--primary-green) !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 5px;
        font-weight: 600;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    .mobile-nav a:visited,
    .mobile-nav a:active,
    .mobile-nav a:focus {
        background-color: var(--primary-green) !important;
        color: white !important;
        text-decoration: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Hero Section */
    .hero-split {
        padding-top: 80px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* Section Headings */
    .section-heading {
        font-size: 2.2rem;
    }
    
    .category-heading {
        font-size: 1.8rem;
        padding: 0.4rem 1.5rem;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .product-card h3 {
        font-size: 1.3rem;
    }
    
    /* Section Header Mobile */
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .section-image {
        width: 120px;
        height: 120px;
    }
    
    .section-header .category-heading {
        text-align: center;
    }
    
    .section-products {
        text-align: center;
    }
    
    /* Plant Items Mobile */
    .plant-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .plant-image {
        width: 90px;
        height: 90px;
    }
    
    /* About Section - Mobile Layout: Text first, then images under */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding: 2rem;
        order: 1;
    }
    
    .about-image {
        order: 2;
        text-align: center;
    }
    
    .about-image img {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .photo-caption {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Header */
    .header-logo {
        height: 35px;
    }
    
    #header h1 {
        font-size: 1rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    /* Hero Section */
    .main-heading {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Section Headings */
    .section-heading {
        font-size: 1.8rem;
    }
    
    .category-heading {
        font-size: 1.5rem;
        padding: 0.3rem 1.2rem;
    }
    
    /* Product Cards */
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 1.2rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .product-card p {
        font-size: 0.95rem;
    }
}

/* Extra small screens (very small mobile devices) */
@media (max-width: 360px) {
    /* Hero Section - Make main heading much smaller to fit */
    .main-heading {
        font-size: 1.6rem;
        line-height: 1.2;
        padding-bottom: 0.3rem;
    }
    
    .main-heading::after {
        bottom: -5px;
        height: 2px;
    }
    
    /* Section Headings */
    .section-heading {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .category-heading {
        font-size: 1.3rem;
        padding: 0.25rem 1rem;
        line-height: 1.2;
    }
    
    /* Hero content adjustments */
    .hero-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-intro {
        font-size: 1.1rem !important;
        margin: 0.5rem auto 2rem auto !important;
    }
    
    /* Adjust header for very small screens */
    #header h1 {
        font-size: 0.9rem;
        line-height: 1.1;
        white-space: nowrap;
    }
    
    .header-logo {
        height: 30px;
    }
    
    #header {
        padding: 0.3rem 0.8rem;
    }
}

/* Global Link Override for Mobile */
@media (max-width: 768px) {
    a, a:visited, a:active, a:focus {
        color: inherit !important;
        text-decoration: none !important;
    }
    
    a:hover {
        color: var(--accent) !important;
    }
}

/* Mobile Menu Styles */
nav#menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25);
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 3px solid var(--primary-green);
}

/* Override the blue background from main.css */
nav#menu .inner {
    background: var(--light-green) !important;
}

nav#menu.active {
    right: 0;
}

nav#menu .inner {
    padding: 2.5rem 2rem;
}

nav#menu h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-family: 'Georgia', serif;
    font-weight: 700;
    border-bottom: 2px solid var(--light-green);
    padding-bottom: 0.5rem;
}

nav#menu .links {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav#menu .links li {
    padding: 0;
    border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}

nav#menu .links li a {
    display: block;
    padding: 0.85rem 0.5rem;
    text-decoration: none !important;
    color: var(--text) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none !important;
    outline: none !important;
}

nav#menu .links li a:hover {
    color: var(--accent) !important;
    background-color: rgba(200, 230, 201, 0.2) !important;
    padding-left: 1rem;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
}

nav#menu .close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: var(--text);
    background: var(--light-green);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

nav#menu .close:hover {
    color: white;
    background: var(--primary-green);
    transform: rotate(90deg);
}

/* Animation for product cards */
.product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section Text - White */
#contact .contact ul li p,
#contact .contact ul li h4 {
    color: #ffffff !important;
}

#contact .contact ul li h4 {
    color: #ffffff !important;
    font-weight: 600;
}

#contact .contact .map-container h4 {
    color: #ffffff !important;
}

#contact .contact .map-container p {
    color: #ffffff !important;
}

#contact .contact .map-container a {
    color: #ffffff !important;
}

#contact .contact .map-container a:hover {
    color: #f0f0f0 !important;
}

/* Ensure contact section headings are readable */
#contact .section-heading {
    color: #ffffff !important;
}

#contact header p {
    color: #ffffff !important;
}

/* Form labels and text in contact section */
#contact label {
    color: #ffffff !important;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

#contact input[type="text"]::placeholder,
#contact input[type="email"]::placeholder,
#contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

#contact input[type="submit"] {
    background-color: #ffffff !important;
    color: #2E7D32 !important;
}

.sold-out-item {
    position: relative;
    opacity: 0.7;
}

.sold-out-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 10;
    text-align: center;
}

.category-buttons {
    text-align: center;
    margin-bottom: 2rem;
}

.category-buttons .cta-button {
    margin: 0.5rem;
}

.hero-content {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9); /* Modified background */
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* Added for z-index to work */
}

.hero-image-container {
    background: white;
    border-radius: 50%;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-round-logo {
    width: 300px; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    border-radius: 50%;
}

#banner {
    position: relative;
    overflow: hidden;
}

#banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/new-she-shed-pictures/GS[1].webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.emporium-sign {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    margin-top: 2rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Form Status Messages */
.form-status {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    color: #2E7D32;
    display: block;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #d32f2f;
    display: block;
}

.form-status.loading {
    background-color: rgba(33, 150, 243, 0.1);
    border: 1px solid #2196F3;
    color: #1976D2;
    display: block;
}

/* Form Loading State */
.form-loading input[type="submit"] {
    background-color: #ccc !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.form-loading input[type="submit"]:hover {
    background-color: #ccc !important;
    transform: none;
}

/* Enhanced Form Validation */
input:invalid {
    border-color: #f44336 !important;
}

input:valid {
    border-color: #4CAF50 !important;
}

textarea:invalid {
    border-color: #f44336 !important;
}

textarea:valid {
    border-color: #4CAF50 !important;
}

/* Focus States */
input:focus,
textarea:focus {
    outline: 2px solid var(--accent) !important;
    outline-offset: 2px;
}

/* Required Field Indicators */
.required-indicator {
    color: #f44336;
    font-weight: bold;
    margin-left: 0.25rem;
}
