/* Brand Colors */
:root {
    --orange: #FF8C00;
    --green: #2E7D32;
    --white: #FFFFFF;
    --bg-light: #f9f9f9;
    --bg-dark: #333;
}

/* Reset & Global */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}
.dark {
    background: #222;
    color: #eee;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
}
nav ul { display: flex; list-style: none; padding:0; margin:0;}
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 500; }
/* Logo */
.logo { font-size: 24px; font-weight: bold; color: var(--orange); }
.logo span { color: var(--green); }

/* Promo Banner */
.promo-banner { text-align:center; background: var(--orange); color: var(--white); padding: 10px; font-weight:bold; }

/* Hero Section */
header {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}
.hero-content { z-index: 2; }
.highlight { color: var(--orange); }
.btn {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 10px;
    transition: 0.3s;
    border: none;
}
.btn:hover { background: #FF8C00; transform: scale(1.05); }

/* Floating Superhero */
.superhero {
    position: absolute;
    width: 150px;
    bottom: 10%;
    right: 10%;
    z-index: 1;
    animation: float 3s ease-in-out infinite alternate;
}
@keyframes float { 0% { transform: translateY(0);} 100% { transform: translateY(-80px);} }

/* Snow */
canvas#snow { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:0; }

/* Menu Section */
#menu { padding: 50px 10%; background: transparent; text-align: center; }
.menu-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap:20px; margin-top:30px; }
.card { background:white; padding: 20px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s; cursor:pointer;}
.card:hover { transform: scale(1.05); }
.fruit-icon { font-size:50px; margin-bottom:10px;}
.price { font-weight:bold; color: var(--green); margin-top:10px; font-size:1.2rem; }
.seasonal { background: var(--orange); color:white; padding:2px 5px; border-radius:5px; font-size:0.8rem; margin-left:5px; }

/* Team Section */
.team-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap:20px; padding:20px 0;}
.team-card { background:white; padding:20px; border-radius:10px; box-shadow:0 3px 10px rgba(0,0,0,0.05); text-align:center;}
.team-card img { width:150px; border-radius:50%; }

/* Contact Section */
.contact-options { display:flex; flex-wrap:wrap; gap:15px; justify-content:center; padding:20px 0; }

/* Footer */
footer { text-align:center; padding:20px; background: var(--bg-dark); color:white; }

/* Theme Toggle */
/*.theme-toggle { position:fixed; top:20px; right:20px; z-index:200; }*/
