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

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, Arial, sans-serif;
    line-height: 1.6;
    color: #555555;
    background-color: #f8f8f8;
}

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

/* Floating Buttons */
.whatsapp, .email {
    position: fixed;
    right: 20px;
    z-index: 1000;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-family: system-ui, Arial, sans-serif;
}

.whatsapp {
    bottom: 100px;
    background: #25d366;
}

.email {
    bottom: 40px;
    background: #FFA500;
}

.whatsapp:hover, .email:hover {
    transform: translateY(-3px);
   /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); */
}

.whatsapp::before, .email::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.whatsapp::before {
    content: "\f10b";
}

.email::before {
    content: "\f0e0";
}

/* Navigation Bar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 70px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4CAF50;
    margin-left: 10px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #555555;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-family: system-ui, Arial, sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #4CAF50;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: #4CAF50;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #4CAF50;
}

.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('./images/background-image.jpg') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-text {
    max-width: 800px;
    animation: fadeInUp 1s ease;
    margin-top: -50px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    font-family: system-ui, Arial, sans-serif;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 300;
    font-family: system-ui, Arial, sans-serif;
    color: #FFFFFF;
}

/* Main Sections */
main {
    padding: 80px 0;
    background: #f8f8f8;
}
     

section {
    margin-top: 60px;
    margin-bottom: 80px;
    padding: 40px;
    background: white;
    border-radius: 5px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    color: #4CAF50;
    font-size: 2.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
    font-family: system-ui, Arial, sans-serif;
    font-weight: bold;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #4CAF50;
    border-radius: 2px;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-family: system-ui, Arial, sans-serif;
}
/* Modern Produce Section */
.produce-icons {
    display: grid;
    /* Increased min-width to 120px so text doesn't cramp */
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

/* CSS Unicode */
.raspberry-icon::before {
    content: "\f7bb";
    font-family: "Font Awesome 6 Brands"; /* Note: Brands family required */
}

.produce-item {
    background: #ffffff;
    padding: 30px 10px;
    border-radius: 12px; /* Modern rounded corners */
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid #eeeeee; /* Thin, clean border */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.produce-item:hover {
    background: #FFA500;
    border-color: #FFA500;
    transform: translateY(-5px);
}

.produce-item i {
    font-size: 2.2rem;
    color: #FFA500;
    margin-bottom: 12px;
    /* Soft background circle for the icon */
    background: #fff8eb;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.produce-item:hover i {
    color: #FFA500;
    background: #ffffff; /* White circle on orange background */
}

.produce-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    transition: color 0.3s ease;
    font-family: 'Inter', system-ui, sans-serif;
}

.produce-item:hover span {
    color: #ffffff;
}


/* Clean & Minimal Contact Section 2026 */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.contact-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px; /* Clean, slightly rounded corners */
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    
    /* Removed all shadows */
    box-shadow: none; 
    
    /* Reduced, subtle border */
    border: 1px solid #eeeeee; 
}

.contact-item:hover {
    /* Subtle background change instead of shadow */
    background: #f9f9f9; 
    border-color: #4CAF50; /* Border highlights the active item */
    transform: translateY(-2px); /* Very slight lift for feedback */
}

/* Icon Styling */
.contact-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4; /* Very light green wash */
    border-radius: 6px;
}

/* Text Styling */
.contact-item p {
    font-size: 1rem;
    color: #444444;
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

.contact-item a {
    color: #4CAF50; /* Changed to match theme for cleaner look */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    text-decoration: underline;
    color: #388E3C;
}


.map {
    grid-column: 1 / -1;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
    background: #ffffff;
    color: #555555;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

footer p {
    font-size: 1rem;
    color: #555555;
    text-align: center;
    font-family: system-ui, Arial, sans-serif;
}

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

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #555555;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        transition: 0.3s;
        padding-top: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 20px;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 30px 20px;
        margin-bottom: 50px;
    }
    
    .produce-icons {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .whatsapp, .email {
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .whatsapp {
        bottom: 90px;
    }
    
    .email {
        bottom: 35px;
    }
    
    /* Hamburger animation */
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 55px;
    }
    
    .logo {
        height: 100px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-links {
        top: 55px;
        height: calc(100vh - 55px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .produce-icons {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-item.small-box {
        grid-column: auto;
    }
}