/* Reset and Base Styles */
:root {
    --spring-rain: #D8E5E9;
    --dark-peach: #DB6F4A;
    --dawn-pink: #F1EDE4;
    --olive: #A0AD7B;
    --cactus: #49705B;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: var(--dawn-pink);
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Business Name Styling */
.business-name-small {
    font-family: 'Inter', sans-serif;
    font-size: 0.6em;
    font-style: italic;
    font-weight: 300;
    opacity: 0.8;
    vertical-align: baseline;
}

.business-name-large {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(241, 237, 228, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.nav-logo .logo-img {
    display: block;
    height: 44px;
    width: auto;
    margin: 0;
}

.nav-logo h2 {
    display: block;
    font-size: 1.15rem;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--cactus);
    margin: 0;
    padding: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-logo .business-name-large {
    font-size: 1.2em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--cactus);
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--dark-peach);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--cactus);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.hero-content .business-name-small {
    font-size: 0.4em;
    margin-bottom: -0.5rem;
    color: var(--dawn-pink);
}

.hero-content .business-name-large {
    font-size: 1em;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    background: var(--cactus);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--olive);
}

.hero-image {
    display: none; /* Removed as we are using a background image */
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--spring-rain);
}

.about h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cactus);
    font-family: 'Merriweather', serif;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    color: var(--dark-peach);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-family: 'Merriweather', serif;
}

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

.about-text ul {
    list-style: none;
    margin-top: 1rem;
    display: inline-block;
    text-align: left;
}

.about-text li {
    padding: 0.5rem 0;
    color: #333;
    position: relative;
    padding-left: 1.8rem;
    font-size: 1.1rem;
}

.about-text li::before {
    content: "🥕";
    position: absolute;
    left: 0;
    color: var(--dark-peach);
    font-size: 1.2rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--dawn-pink);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cactus);
    font-family: 'Merriweather', serif;
}

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

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gallery-item .placeholder-image {
    width: 100%;
    height: 200px;
    background: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.gallery-item h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark-peach);
    font-size: 1.3rem;
    font-family: 'Merriweather', serif;
}

.gallery-item p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

/* Download Section */
.download {
    padding: 5rem 0;
    background: var(--dawn-pink, #F1EDE4);
    color: var(--cactus);
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Merriweather', serif;
}

.download-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.15rem;
}

.feature i {
    color: var(--cactus);
    font-size: 1.2rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--cactus);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--olive);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn div {
    display: flex;
    flex-direction: column;
}

.download-btn span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.download-btn strong {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--cactus);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-section {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 1.2rem auto;
    text-align: center;
}

.footer-section h3,
.footer-section h4 {
    justify-content: center;
    text-align: center;
}

.footer-section .business-name-small {
    font-size: 0.5em;
    color: var(--dawn-pink);
}

.footer-section .business-name-large {
    font-size: 1em;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
}

.footer-section ul li {
    text-align: center;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--dark-peach);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--dark-peach);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.2rem;
    font-size: 0.95rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 1rem;
}

.footer-links a {
    color: var(--spring-rain);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--dark-peach);
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dawn-pink);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .nav-logo .logo-img {
        height: 36px;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
        align-items: center;
    }

    .footer-section:nth-child(3) {
        display: none;
    }

    .footer-section h3 {
        flex-direction: column;
        align-items: center;
        gap: 0.1rem;
    }

    .footer-section .business-name-small {
        font-size: 0.6em;
    }

    .footer-section .business-name-large {
        font-size: 0.9em;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .app-features {
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 0.5rem;
        gap: 1.2rem;
    }
    .footer-section {
        margin-bottom: 1.2rem;
    }
    .footer-section h3, .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    .footer-section p, .footer-section ul li {
        font-size: 0.98rem;
        margin-bottom: 0.3rem;
    }
    .footer-bottom {
        padding-top: 1.2rem;
        font-size: 0.95rem;
    }
    
    .footer-links {
        margin-top: 0.8rem;
        gap: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-links .separator {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .business-name-small {
        font-size: 0.5em;
    }

    .hero-content .business-name-large {
        font-size: 0.9em;
    }

    .nav-logo h2 {
        font-size: 1rem;
    }

    .nav-logo .business-name-small {
        font-size: 0.7em;
    }

    .nav-logo .business-name-large {
        font-size: 0.9em;
    }

    .about h2,
    .gallery h2,
    .download-text h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
    .footer-content {
        padding: 0 0.2rem;
    }
    .footer-section h3, .footer-section h4 {
        font-size: 1rem;
    }
    .footer-section p, .footer-section ul li {
        font-size: 0.93rem;
    }
    .footer-bottom {
        font-size: 0.9rem;
    }
    
    .footer-links {
        margin-top: 0.6rem;
        gap: 0.3rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-links .separator {
        font-size: 0.7rem;
    }
}

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

.hero-content,
.about-content,
.gallery-grid,
.download-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.about-content,
.about-text,
.mission-statement {
    text-align: center;
    padding-left: 0;
}

.about h2,
.mission-statement h3 {
    text-align: center;
    padding-left: 0;
}

.mission-statement {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-statement h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--cactus);
    font-family: 'Merriweather', serif;
}

.mission-statement p {
    color: #333;
    line-height: 1.8;
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* Featured Sellers Section */
.featured-sellers {
    padding: 5rem 0 3rem 0;
    background: var(--dawn-pink);
}

.featured-sellers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--cactus);
    font-family: 'Merriweather', serif;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.featured-sellers h2 {
    margin-bottom: 0;
}

.scrolling-wrapper {
    position: relative;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--cactus);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scroll-btn svg {
    width: 22px;
    height: 22px;
}

.scroll-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.scroll-left {
    left: 20px;
}

.scroll-right {
    right: 20px;
}

.seller-location {
    margin-top: 1.2rem;
    font-size: 0.98rem;
    color: var(--olive);
    font-style: italic;
    text-align: center;
    letter-spacing: 0.02em;
    opacity: 0.85;
}

.sellers-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 0.5rem 20px 1.5rem 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sellers-grid::-webkit-scrollbar {
    display: none;
}

.seller-card {
    background: white;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
    flex-shrink: 0;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid #eee;
    overflow: hidden;
    scroll-snap-align: start;
}

.seller-card:hover {
    box-shadow: 0 8px 32px rgba(73,112,91,0.13);
    transform: translateY(-4px) scale(1.03);
}

.seller-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 0;
    background: var(--spring-rain);
    display: block;
    border: none;
    image-rendering: auto;
}

.seller-info {
    text-align: center;
    padding: 1.2rem 1.5rem 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.farm-name {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: var(--cactus);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.seller-name {
    font-size: 1rem;
    color: var(--olive);
    margin-bottom: 0.7rem;
    font-style: italic;
}

.seller-message {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .sellers-grid {
        gap: 1.2rem;
        padding: 0.5rem 15px 1.5rem 15px;
    }
    .seller-card {
        width: 280px;
    }
}

/* About the Owners Section */
.about-owners {
    padding: 5rem 0 3rem 0;
    background: var(--spring-rain, #D8E5E9);
}
.owners-container.owners-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}
.owners-container.owners-side-by-side {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}
.owners-photo-left {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(73,112,91,0.08);
    background: var(--spring-rain, #D8E5E9);
}
.owners-content h2 {
    font-family: 'Merriweather', serif;
    color: var(--cactus, #49705B);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: left;
}
.owners-message-left {
    font-size: 1.08rem;
    color: #333;
    font-weight: 300;
    text-align: left;
}
.owners-message-left p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.owners-signature {
    font-family: 'Merriweather', serif;
    font-style: italic;
    color: var(--cactus, #49705B);
    margin-top: 1.5rem;
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 400;
}
@media (max-width: 700px) {
    .about-owners {
        padding: 2.5rem 0 2rem 0;
    }
    .owners-container.owners-side-by-side {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .owners-photo-left {
        width: 90vw;
        height: 90vw;
        max-width: 400px;
        max-height: 400px;
        margin: 0 auto 1.5rem auto;
        display: block;
        border-radius: 18px;
        object-fit: cover;
        object-position: center 30%;
    }
    .owners-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    .owners-message-left {
        font-size: 0.98rem;
        text-align: center;
    }
    .owners-message-left p {
        margin-bottom: 1.2rem;
    }
}

@media (min-width: 769px) {
    .footer-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: flex-start;
        justify-content: center;
        gap: 2.5rem;
        text-align: left;
        margin-bottom: 2rem;
        padding: 0;
    }
    .footer-section {
        max-width: 350px;
        margin-bottom: 0;
        text-align: left;
    }
    .footer-section h3,
    .footer-section h4 {
        justify-content: flex-start;
        text-align: left;
    }
    .footer-section ul {
        display: block;
        text-align: left;
    }
    .footer-section ul li {
        text-align: left;
    }
    .social-links {
        justify-content: flex-start;
        margin-left: 0;
        margin-right: 0;
    }
} 