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

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: #987e7e;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    border-radius: 12px;
    /* Rounded corners */
}

.logo:hover {
    transform: scale(1.05);
}

nav a {
    margin-left: 2rem;
    text-decoration: none;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background-color: #68b347;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -4px;
    left: 0;
}

nav a:hover {
    color: #68b347;
}

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

/* Layout */
main {
    flex: 1;
}

/* About Section */
.about-section {
    background-color: #f1f1f1;
    width: 100%;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
}

.about-wrapper {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2f855a;
}

.about-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #555;
    margin: 2rem 0 1rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
    border-left: 2px solid #2f855a;
    color: #333;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
}

/* Float animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.carousel {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    max-width: 90%;
    width: 90%;
    background: rgba(0, 0, 0, 0.4);
    /* adds contrast for readability */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.carousel-text h2 {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 1000;
    margin-bottom: 1rem;
    text-align: center;
}

.carousel-text p {
    font-size: clamp(1rem, 4vw, 1.8rem);
    font-weight: 500;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #dfd9e2;
}

/* Button style */
.carousel-text .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #7cc243;
    color: white;
    font-weight: 600;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    border-radius: 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.carousel-text .btn:hover {
    background-color: #6ab338;
}

background-color: #65a836;
}

.fruits-grid {
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
}

.fruits-grid h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.grid-item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem;
    width: 100%;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    transition: background 0.3s ease;
    text-align: left;
}

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

.grid-item:hover .caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.about-footer {
    background-color: #f7f7f7;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #ddd;
}

.footer-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.footer-content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.email-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.email-box {
    background-color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 400px;
}

.email-box h4 {
    font-size: 1.1rem;
    color: #006400;
    margin-bottom: 0.3rem;
}

.email-box a {
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.email-box a:hover {
    color: #003300;
}

.note {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #666;
}

.note a {
    color: #006400;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #f3f3f3;
    color: #333;
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.95rem;
    border-top: 1px solid #ddd;
    width: 100%;
}

/* Optional sections if used later */

.values-section {
    background-color: #ffffff;
    padding: 4rem 2rem;
    width: 100vw;
    display: flex;
    justify-content: center;
}

.values-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
}

.value-box {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.value-box img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.value-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.value-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Utility: full width sections */
section {
    width: 100%;
}

.product-grid-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 600;
    color: #2a2a2a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Two columns only */
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: brightness(70%);
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
}

.product-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.product-info p {
    margin: 4px 0 0;
    font-size: 0.95rem;
}

.contact-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-box {
    background-color: #f5f5f5;
    padding: 20px 30px;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-box a {
    color: #333;
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.social-media {
    margin-top: 30px;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #555;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #0073e6;
}


.contact-form-wrapper {
    margin-top: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.contact-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form button {
    background-color: #2a7f62;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #256d55;
}

.response-time-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
}

.map-placeholder {
    margin-top: 3rem;
    text-align: center;
}

.map-placeholder iframe {
    margin-top: 1rem;
    border-radius: 10px;
}



/* Responsive tweaks */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
    }

    nav a {
        margin-left: 1rem;
        font-size: 0.95rem;
    }

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

    .about-text p {
        padding-left: 1rem;
    }

    .about-image img {
        max-width: 300px;
    }
}