:root {
    --deep-green: #3A7226;
    --fresh-green: #4f9635;
    --vibrant-green: #0A1F08;
    --glow-green: #67B04D;
    --lime-accent: #C2D500;
    
    --radius-xl: 40px;
    --radius-md: 20px;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    --text-pure: #FFFFFF;
    --text-dark: #0A1F08;
    --text-muted-light: rgba(255, 255, 255, 0.75);
    --text-muted-dark: #555555;
    --glass-border-light: rgba(255, 255, 255, 0.1);
    --glass-border-dark: rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }

body {
    width: 100%; overflow-x: hidden;
    font-family: var(--font-main);
    background: #FFFFFF;
}

/* Background Sections */
.bg-green {
    background: linear-gradient(135deg, #4A8535 0%, #2A5A1A 50%, #142F0D 100%);
    color: var(--text-pure);
    position: relative;
    z-index: 1;
}

.bg-white {
    background: #FAFAFA;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* Green Background Decorations */
.noise-overlay { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); opacity: 0.05; mix-blend-mode: overlay; pointer-events: none; z-index: -1; }
.vignette { position: absolute; width: 100%; height: 100%; top: 0; left: 0; background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.35) 150%); opacity: 0.8; pointer-events: none; z-index: 0; }
.blobs { position: absolute; width: 100%; height: 100%; top: 0; left: 0; overflow: hidden; pointer-events: none; z-index: -1; }
.blob { position: absolute; border-radius: 50%; filter: blur(140px); opacity: 0.25; }
.blob-1 { width: 400px; height: 400px; background: var(--deep-green); top: -20%; right: -10%; animation: float 20s infinite alternate; }
.blob-2 { width: 300px; height: 300px; background: var(--lime-accent); bottom: -10%; left: -10%; animation: float 25s infinite alternate reverse; opacity: 0.1; }
@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(20px, 40px); } }

/* Globals */
.text-center { text-align: center; } .w-100 { width: 100%; }

/* Navigation */
.premium-nav { position: fixed; top: 0; left: 0; width: 100%; padding: 1.5rem 4%; display: flex; justify-content: space-between; align-items: center; z-index: 100; transition: all 0.4s ease; }
.premium-nav.scrolled { background: rgba(28, 59, 20, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border-light); padding: 1rem 4%; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.nav-logo { display: flex; align-items: center; position: relative; text-decoration: none; }
.nav-logo-img { height: 75px; transition: transform 0.4s ease; filter: brightness(1); }
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }

.nav-links { display: flex; gap: 2.5rem; }
.nav-link { color: var(--text-pure); text-decoration: none; font-weight: 600; font-size: 1rem; position: relative; transition: color 0.3s ease; }
.nav-link:hover { color: var(--lime-accent); }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: var(--lime-accent); transition: width 0.3s ease; }
.nav-link:hover::after { width: 100%; }

.btn-small { padding: 0.8rem 1.8rem; font-size: 0.9rem; }
.btn-tiny { padding: 0.6rem 1.2rem; font-size: 0.8rem; }

.menu-toggle { display: none; background: transparent; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 101; }
.menu-toggle span { display: block; width: 30px; height: 2px; background: var(--text-pure); transition: 0.3s ease; }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--deep-green); z-index: 99; display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: all 0.4s ease; backdrop-filter: blur(10px); }
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-links { display: flex; flex-direction: column; gap: 2rem; text-align: center; }
.mobile-link { color: var(--text-pure); text-decoration: none; font-size: 2rem; font-weight: 700; text-transform: uppercase; }

/* Buttons */
.button-group { display: flex; gap: 1.5rem; align-items: center; }
.btn { padding: 1.2rem 2.5rem; border-radius: var(--radius-md); font-family: var(--font-main); font-size: 1rem; font-weight: 700; border: none; cursor: pointer; text-decoration: none; text-align: center; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; display: inline-block; position: relative; }
.btn-notify { background: var(--vibrant-green); color: #FFF; box-shadow: 0 8px 25px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05); }
.btn-notify:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.4); background: #000; color: #FFF; }

.bg-green .btn-later { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); color: var(--text-pure); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.bg-green .btn-later:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: #FFF; transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.25); }

.bg-white .btn-later { background: #FFF; border: 1px solid var(--glass-border-dark); color: var(--text-dark); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.bg-white .btn-later:hover { background: var(--vibrant-green); border-color: var(--vibrant-green); color: #FFF; transform: translateY(-4px); box-shadow: 0 12px 25px rgba(0,0,0,0.1); }

/* Typography Colors */
.bg-green .headline-gradient { color: var(--text-pure); }
.bg-white .headline-gradient { color: var(--text-dark); }
.bg-green .section-title { color: var(--text-pure); }
.bg-white .section-title { color: var(--text-dark); }
.bg-green .tagline { color: rgba(255,255,255,0.9); }
.bg-white .tagline { color: var(--text-muted-dark); }
.bg-green .body-text { color: var(--text-muted-light); }
.bg-white .body-text { color: var(--text-muted-dark); }

/* Layouts */
main { position: relative; z-index: 10; padding-top: 0; }
.viewport { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 10rem 0 6rem 0; position: relative; width: 100%; min-height: auto; }
.hero-split-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; align-items: center; width: 100%; max-width: 1200px; position: relative; z-index: 5; margin: 0 auto; padding: 0 4%; }
.hero-text-content { text-align: left; z-index: 2; position: relative; }
/* Lighting top-left highlight via pseudo on hero text content is too complex, we already have gradient and vignette, let's keep it clean */
.hero-text-content .headline-gradient { font-size: clamp(3.5rem, 6vw, 6.5rem); margin-bottom: 1.2rem; line-height: 1.05; font-weight: 800; letter-spacing: -2px; }
.hero-text-content .tagline { margin: 0 0 2.5rem 0; font-size: clamp(1.1rem, 1.8vw, 1.3rem); max-width: 85%; font-weight: 500; line-height: 1.6; }

.hero-image-content { position: relative; display: flex; justify-content: center; align-items: center; padding: 2rem; }
.hero-image-content::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70%; height: 70%; background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 60%); filter: blur(40px); z-index: 0; }
.hero-burger-img { width: 100%; max-width: 480px; height: auto; object-fit: contain; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35)) drop-shadow(0 0 30px rgba(255,255,255,0.05)); position: relative; z-index: 2; animation: floatBurgerSoft 8s ease-in-out infinite alternate; }
@keyframes floatBurgerSoft { 0% { transform: scale(1.05) translateY(0) rotate(-1deg); } 100% { transform: scale(1.05) translateY(-12px) rotate(1deg); } }

/* General Sections */
.content-section { padding: 8rem 4%; width: 100%; position: relative; }
.content-section-small { padding: 4rem 4%; width: 100%; position: relative; }
.section-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.section-title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.body-text { font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.5rem; }

/* Features Row (Why Choose Us) */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center; }
.feature-card { padding: 2rem; border-radius: var(--radius-md); background: #FFF; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--glass-border-dark); transition: transform 0.3s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.feature-icon { width: 60px; height: 60px; background: var(--lime-accent); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--text-dark); font-size: 1.5rem; font-weight: 800; }
.feature-title { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
.feature-desc { color: var(--text-muted-dark); line-height: 1.6; }

/* Split Layout (About / Contact) */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.split-image img { width: 100%; height: auto; display: block; transform: scale(1.05); transition: transform 0.6s ease; }
.split-image:hover img { transform: scale(1); }

/* Menu Grid */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; }
.menu-card { background: #FFF; border: 1px solid var(--glass-border-dark); border-radius: var(--radius-md); overflow: hidden; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.menu-card:hover { transform: translateY(-10px); box-shadow: 0 25px 40px rgba(0,0,0,0.08); border-color: var(--text-dark); }
.menu-img-wrapper { width: 100%; height: 260px; position: relative; overflow: hidden; background: #fff; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.menu-img-wrapper img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s ease; } /* Use object-fit: contain so different aspect ratios don't break/crop incorrectly */
.menu-card:hover .menu-img-wrapper img { transform: scale(1.05); }
.menu-info { padding: 2rem; border-top: 1px solid var(--glass-border-dark); }
.menu-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.menu-desc { font-size: 1rem; color: var(--text-muted-dark); margin-bottom: 1.5rem; line-height: 1.5; }
.menu-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-price { font-size: 1.4rem; font-weight: 800; color: var(--deep-green); }

/* Contact Section Grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; background: #FFF; border-radius: var(--radius-xl); padding: 4rem; box-shadow: 0 20px 50px rgba(0,0,0,0.04); border: 1px solid var(--glass-border-dark); }
.contact-details { display: flex; flex-direction: column; gap: 2rem; text-align: left; }
.detail-item { border-left: 3px solid var(--text-dark); padding-left: 1.5rem; }
.detail-label { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted-dark); margin-bottom: 0.5rem; font-weight: 700; }
.detail-value { font-size: 1.15rem; font-weight: 600; line-height: 1.6; color: var(--text-dark); }
.detail-value a { color: var(--text-dark); text-decoration: none; transition: color 0.3s ease; }
.detail-value a:hover { color: var(--lime-accent); }

.glass-input { width: 100%; background: #F5F5F5; border: 1px solid rgba(0,0,0,0.05); color: var(--text-dark); padding: 1.2rem; border-radius: 12px; margin-bottom: 1.5rem; font-family: var(--font-main); font-size: 1rem; outline: none; transition: all 0.3s ease; }
.glass-input::placeholder { color: #888; }
.glass-input:focus { border-color: var(--text-dark); background: #FFF; box-shadow: 0 0 0 4px rgba(10,31,8,0.1); }

/* Footer */
.site-footer { padding: 4rem 4% 2rem; position: relative; z-index: 10; text-align: center; }
.site-footer .baseline .divider { height: 1px; width: 100%; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%); margin-bottom: 3.5rem; }
.partner-row { display: flex; justify-content: center; align-items: flex-start; gap: 0; width: 100%; }
.partner-box { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 1rem; max-width: 300px; }
.partner-v-divider { width: 1px; height: 60px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent); margin: 0 4rem; }
.partner-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted-light); font-weight: 700; margin-bottom: 0.5rem; }
.partner-logo { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1) opacity(0.6); transition: all 0.4s ease; }
.partner-box:hover .partner-logo { filter: brightness(0) invert(1) opacity(1); transform: translateY(-5px); }
.dd-logo { height: 26px; } 
.sippo-logo { height: 50px; } 
.footer-copyright { text-align: center; margin-top: 4rem; font-size: 0.9rem; color: var(--text-muted-light); font-weight: 500; }

@media (max-width: 990px) {
    .viewport { padding: 8rem 0 4rem; }
    .hero-split-layout { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-text-content { order: 2; text-align: center; }
    .hero-text-content .headline-gradient { text-align: center; font-size: clamp(3rem, 8vw, 4.5rem); letter-spacing: -1px; }
    .hero-text-content .tagline { text-align: center; margin: 0 auto 2rem; max-width: 95%; }
    .button-group { justify-content: center; width: 100%; }
    .hero-image-content { order: 1; padding: 1rem; }
    .hero-burger-img { width: 100%; max-width: 360px; margin: 0 auto; }
    
    .features-grid { grid-template-columns: 1fr; gap: 2rem; }
    .split-layout { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; padding: 2rem; }
    .nav-links, .nav-actions { display: none; }
    .menu-toggle { display: flex; }
    .partner-row { flex-direction: row; justify-content: space-around; }
    .partner-v-divider { height: 40px; margin: 0 1rem; }
}

@media (max-width: 768px) {
    .button-group { flex-direction: column; max-width: 320px; gap: 1rem; margin: 0 auto; }
    .button-group .btn { width: 100%; }
}