@font-face {
    font-family: 'Fragmentcore';
    src: url('public/font/Fragmentcore.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --primary-color: #8DB580;
    --secondary-color: #E8A87C;
    --text-color: #333;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: 'Fragmentcore', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background-color: rgba(141, 181, 128, 0.1);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--primary-color);
    background-color: rgba(141, 181, 128, 0.15);
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-image: url('public/images/Charlie-M-1-1 (1).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    max-width: 800px;
    line-height: 1.6;
}

/* Features Section */
.features {
    background-color: var(--light-bg);
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Food Section */
.food-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.food-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.food-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.food-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.food-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.food-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.food-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.food-gallery img:hover {
    transform: scale(1.05);
}

/* Nursery Section */
.nursery-section {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.nursery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.nursery-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.nursery-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.nursery-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.nursery-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.nursery-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.nursery-gallery img:hover {
    transform: scale(1.05);
}

/* Microgreen Section */
.microgreen-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.microgreen-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.microgreen-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.microgreen-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.microgreen-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.microgreen-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.microgreen-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Program Section */
.program-section {
    background-color: var(--light-bg);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.program-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.program-content {
    max-width: 1000px;
    margin: 0 auto;
}

.program-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.program-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7FA572 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
    margin: 4rem 0 0 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 8px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
    color: var(--white);
}

.cta-description {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
    font-weight: 700;
}

.btn-primary {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 1.4rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.3);
    }
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4), 0 4px 15px rgba(0,0,0,0.3);
    background-color: var(--white);
    animation: none;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7FA572 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2,
.testimonials-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.contact-item {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.8;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Testimonials Section */
.testimonials-container {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    border-top: 2px solid var(--light-bg);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

.contact-image-wrapper {
    width: 100%;
    margin-top: 0;
}

.contact-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block;
}

.map-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 0;
}

footer p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta {
        padding: 3rem 1.5rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .cta-description {
        font-size: 1.2rem;
    }

    .btn-primary {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-content h2,
    .gallery h2,
    .food-section h2,
    .nursery-section h2,
    .microgreen-section h2,
    .program-section h2 {
        font-size: 2rem;
    }

    .food-content,
    .nursery-content,
    .microgreen-content {
        grid-template-columns: 1fr;
    }

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

    .microgreen-image {
        order: -1;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    nav {
        flex-direction: column;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}

