/* --- Değişkenler --- */
:root {
    --color-orange: #FF8C00;    /* Vitamin Turuncusu */
    --color-orange-light: #FFF0D6;
    --color-green: #66CC00;     /* Lime Green */
    --color-green-light: #E8F5E9;
    --color-yellow: #FFD700;    /* Güneş Sarısı */
    --color-white: #FFFFFF;
    --color-text: #4A4A4A;
    --color-bg: #FFFDF0;        /* Krem/Limon Sarısı */
    --font-head: 'Fredoka', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* --- Vitamin Bar --- */
.vitamin-bar { background-color: var(--color-orange); color: var(--color-white); padding: 8px 0; text-align: center; font-size: 0.9rem; font-weight: bold; }
.bar-content a { text-decoration: underline; margin-left: 10px; color: var(--color-white); }

/* --- Header --- */
.fresh-header { background-color: var(--color-white); padding: 15px 0; box-shadow: 0 4px 15px rgba(255, 140, 0, 0.1); position: sticky; top: 0; z-index: 1000; border-radius: 0 0 20px 20px; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; color: var(--color-green); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.icon-sun { font-size: 1.5rem; }
.orange-text { color: var(--color-orange); }

.desktop-nav ul { display: flex; gap: 25px; align-items: center; }
.desktop-nav a { font-weight: 700; color: #666; font-size: 1rem; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--color-orange); }

.btn-fresh { background-color: var(--color-green); color: var(--color-white) !important; padding: 10px 25px; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 0 #4da600; transition: 0.2s; }
.btn-fresh:hover { transform: translateY(2px); box-shadow: 0 2px 0 #4da600; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100%;
    background-color: var(--color-orange); z-index: 2000;
    display: flex; flex-direction: column; padding: 30px; gap: 20px;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy effect */
    border-top-left-radius: 30px; border-bottom-left-radius: 30px;
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 2rem; background: none; border: none; cursor: pointer; color: var(--color-white); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.3rem; color: var(--color-white); font-weight: 600; }

/* --- Hero --- */
.hero { position: relative; height: 650px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; margin-bottom: 50px; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.2)); z-index: -1; }

.hero-content { z-index: 1; max-width: 800px; padding: 0 20px; }
.badge-sun { background: var(--color-yellow); color: #555; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-family: var(--font-head); margin-bottom: 15px; display: inline-block; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.hero h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; color: var(--color-white); text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.yellow-text { color: var(--color-yellow); }
.hero p { font-size: 1.3rem; color: var(--color-white); margin-bottom: 30px; font-weight: 700; text-shadow: 1px 1px 5px rgba(0,0,0,0.3); }

.hero-search { background: var(--color-white); padding: 10px; border-radius: 50px; display: flex; max-width: 500px; margin: 0 auto; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.hero-search input { flex: 1; border: none; padding: 10px 20px; font-family: var(--font-body); font-size: 1rem; border-radius: 50px; outline: none; }
.btn-search { background: var(--color-orange); color: var(--color-white); border: none; padding: 10px 30px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-search:hover { background: #e67e00; }

.curve-bottom { position: absolute; bottom: -1px; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.curve-bottom svg { display: block; width: calc(100% + 1.3px); height: 100px; fill: var(--color-bg); }

/* --- Grid --- */
.section-padding { padding: 60px 0; }
.section-head, .page-header { text-align: center; margin-bottom: 50px; }
.section-head h2, .page-header h1 { font-family: var(--font-head); font-size: 2.5rem; color: var(--color-orange); margin-bottom: 10px; }
.fruit-icon { font-size: 2rem; margin-top: 5px; }

.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.city-card { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; border-bottom: 5px solid var(--color-green); }
.city-card:hover { transform: translateY(-10px) rotate(1deg); }
.card-img { position: relative; height: 250px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-tag { position: absolute; top: 15px; left: 15px; background: var(--color-white); color: var(--color-green); padding: 5px 12px; border-radius: 15px; font-weight: bold; font-size: 0.8rem; }

.card-body { padding: 25px; text-align: center; }
.card-body h3 { font-family: var(--font-head); color: var(--color-text); font-size: 1.5rem; margin-bottom: 10px; }
.card-body p { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.btn-text { color: var(--color-orange); font-weight: bold; font-size: 1rem; }

/* --- Fresh Banner --- */
.fresh-banner { background: linear-gradient(135deg, var(--color-orange), var(--color-yellow)); padding: 60px 0; margin-top: 60px; border-radius: var(--radius); color: var(--color-white); box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3); width: 95%; margin: 60px auto; }
.banner-flex { display: flex; justify-content: space-around; align-items: center; text-align: center; flex-wrap: wrap; gap: 20px; }
.banner-icon { font-size: 4rem; }
.banner-text h2 { font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 10px; }
.btn-white { background: var(--color-white); color: var(--color-orange); padding: 12px 30px; border-radius: 30px; font-weight: bold; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-white:hover { transform: scale(1.05); }

/* --- About & Split --- */
.organic-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h2 { font-family: var(--font-head); font-size: 2rem; color: var(--color-green); margin-bottom: 20px; }
.fruit-list { list-style: none; margin-top: 20px; }
.fruit-list li { margin-bottom: 10px; font-size: 1.1rem; }
.image-content .blob-mask { overflow: hidden; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; box-shadow: 10px 10px 0 var(--color-orange-light); }

/* --- Notes (Testimonials) --- */
.notes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.note-card { padding: 30px; border-radius: var(--radius); position: relative; color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.bg-orange { background-color: var(--color-orange); }
.bg-green { background-color: var(--color-green); }
.bg-yellow { background-color: #FFC107; color: #444; }
.note-icon { font-size: 2rem; margin-bottom: 15px; }
.note-card h3 { font-family: var(--font-head); margin-bottom: 10px; font-size: 1.2rem; }
.note-card p { font-style: italic; margin-bottom: 15px; font-size: 0.95rem; }
.author { font-weight: bold; display: block; text-align: right; font-family: var(--font-head); }

/* --- Contact --- */
.contact-bubble { background: var(--color-white); padding: 50px; border-radius: 30px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; box-shadow: var(--shadow); }
.bubble-info h3 { font-family: var(--font-head); color: var(--color-orange); font-size: 1.8rem; margin-bottom: 20px; }
.contact-row { display: flex; align-items: center; gap: 15px; margin-top: 20px; font-size: 1.1rem; color: #666; }
.icon { font-size: 1.5rem; }

.citrus-form .form-group { margin-bottom: 20px; }
.citrus-form label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--color-green); }
.citrus-form input, .citrus-form select, .citrus-form textarea { width: 100%; padding: 12px; border: 2px solid var(--color-green-light); border-radius: 10px; font-family: var(--font-body); background: #fff; }
.citrus-form input:focus { border-color: var(--color-orange); outline: none; }
.btn-orange { background: var(--color-orange); color: var(--color-white); width: 100%; padding: 15px; border: none; font-weight: bold; font-family: var(--font-head); font-size: 1.1rem; border-radius: 10px; cursor: pointer; transition: 0.3s; }
.btn-orange:hover { background: #e67e00; }
.full-width { width: 100%; }

/* --- Legal --- */
.guide-box { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border-radius: var(--radius); box-shadow: var(--shadow); border: 2px dashed var(--color-orange); }
.guide-box h1 { font-family: var(--font-head); color: var(--color-green); }
.sun-line { height: 4px; background: var(--color-yellow); width: 80px; margin: 20px 0; border-radius: 2px; }
.guide-box h3 { color: var(--color-orange); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-head); }

/* --- Footer --- */
.main-footer { background: var(--color-white); padding: 50px 0; margin-top: auto; border-top: 5px solid var(--color-green); text-align: center; }
.footer-logo { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; font-weight: bold; color: var(--color-text); }
.footer-links a { margin: 0 15px; color: #666; font-weight: bold; }
.footer-links a:hover { color: var(--color-orange); }
.copyright { margin-top: 20px; font-size: 0.85rem; color: #999; }

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 3rem; }
    .organic-layout, .contact-bubble { grid-template-columns: 1fr; }
    .banner-flex { flex-direction: column; }
    .hero-content { padding: 0 20px; }
}