/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d6a4f;
}

a {
    text-decoration: none;
    color: #2d6a4f;
    transition: color 0.3s ease;
}

a:hover {
    color: #52b788;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: #2d6a4f;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Source Sans 3', sans-serif;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: #52b788;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1b4332;
    color: white;
    padding: 8px 16px;
    z-index: 9999;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

/* Visually hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    color: #2d6a4f;
    font-size: 1.6rem;
    font-family: 'Lora', serif;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
}

nav ul li a:hover {
    color: #2d6a4f;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2d6a4f;
    margin-left: 20px;
    background: none;
    border: none;
    padding: 4px 8px;
    line-height: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(45, 106, 79, 0.75), rgba(45, 106, 79, 0.75)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&h=1080&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-family: 'Lora', serif;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f5f0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #2d6a4f;
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #444;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.2);
    width: 100%;
    object-fit: cover;
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 120px;
    border-bottom: 3px solid #52b788;
}

.stat h3 {
    font-size: 2rem;
    color: #2d6a4f;
    margin-bottom: 5px;
}

.stat p {
    color: #666;
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: white;
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2d6a4f;
}

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

.product-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #d4edda;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(45, 106, 79, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 15px 10px;
    text-align: center;
    color: #2d6a4f;
    font-size: 1.2rem;
}

.product-card p {
    padding: 0 15px 20px;
    text-align: center;
    color: #666;
    min-height: 80px;
    font-size: 0.95rem;
}

.product-price {
    background-color: #2d6a4f;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Lora', serif;
}

/* Location Section */
.location {
    padding: 80px 0;
    background-color: #f8f5f0;
}

.location h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2d6a4f;
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: start;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.location-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #52b788;
}

.location-info h3 {
    color: #2d6a4f;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.location-info p {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-info p i {
    color: #52b788;
    width: 20px;
    flex-shrink: 0;
}

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

.social-media h4 {
    color: #2d6a4f;
    margin-bottom: 12px;
    font-size: 1rem;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2d6a4f;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-media a:hover {
    background-color: #52b788;
    transform: translateY(-3px);
    color: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2d6a4f;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info {
    background-color: #f8f5f0;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #2d6a4f;
}

.contact-info h3 {
    color: #2d6a4f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-details {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #444;
}

.contact-item i {
    color: #52b788;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-item p {
    margin: 0;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(45, 106, 79, 0.1);
    border: 1px solid #d4edda;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    font-family: 'Source Sans 3', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d4edda;
    border-radius: 5px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    color: #1a1a1a;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232d6a4f' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* Footer */
footer {
    background-color: #1b4332;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-family: 'Lora', serif;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-links h4 {
    color: #52b788;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Source Sans 3', sans-serif;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: #52b788;
}

.footer-contact h4 {
    color: #52b788;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Source Sans 3', sans-serif;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-contact p i {
    margin-right: 10px;
    width: 20px;
    color: #52b788;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p + p {
    margin-top: 6px;
}

.security-indicator {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #52b788;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

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

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

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

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.08);
        padding: 20px 0;
        z-index: 999;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

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

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

    .products h2,
    .location h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-text h2,
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.5rem;
    }

    .stat {
        min-width: 100px;
        padding: 15px;
    }

    .stat h3 {
        font-size: 1.5rem;
    }

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

@media screen and (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero {
        margin-top: 60px;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

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

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

    .about-stats {
        flex-direction: column;
        gap: 10px;
    }

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

/* Accessibility: Focus visible outlines for keyboard users */
:focus-visible {
    outline: 3px solid #52b788;
    outline-offset: 3px;
}

/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background-color: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }

    .btn {
        border: 2px solid #000;
    }
}
