/* =========================================================
   Fruitwinkel Goes — One Page Website
   Tech: HTML + Bootstrap 5 + Custom CSS + JS
   ========================================================= */

:root{
  --fw-primary: #2ca25f;      /* fresh green */
  --fw-accent:  #ff5e57;      /* coral */
  --fw-sun:     #ffd166;      /* warm yellow */
  --fw-ink:     #0f172a;      /* slate-900 */
  --fw-muted:   #64748b;      /* slate-500 */
  --fw-bg:      #ffffff;
  --fw-soft:    #f6f8fb;      /* light section bg */
  --fw-card:    #ffffff;
  --fw-border:  rgba(15, 23, 42, .10);
  --fw-shadow:  0 18px 45px rgba(15, 23, 42, .10);
  --fw-radius:  18px;
}

html{ scroll-behavior: smooth; }

body{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fw-ink);
  background: var(--fw-bg);
}

a{ color: inherit; }
a:hover{ color: var(--fw-primary); }

.container{
  max-width: 1140px;
}

.section{
  padding: 80px 0;
}

.section-soft{
  background: var(--fw-soft);
}

.navbar{
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--fw-border);
}

.navbar .nav-link{
  font-weight: 600;
  color: rgba(15, 23, 42, .78);
}
.navbar .nav-link:hover,
.navbar .nav-link.active{
  color: var(--fw-primary);
}

.brand-logo{
  height: 36px;
  width: auto;
}
@media (min-width: 992px){
  .brand-logo{ height: 40px; }
}

.btn-fw{
  border: 0;
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fw-primary), #23c08b);
  box-shadow: 0 12px 28px rgba(44,162,95,.20);
}
.btn-fw:hover{
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(44,162,95,.26);
}

.btn-fw-outline{
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 18px;
  border: 1px solid var(--fw-border);
  background: rgba(255,255,255,.75);
}

.hero{
  padding: 110px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 209, 102, .55), rgba(255, 209, 102, 0) 60%);
  transform: rotate(12deg);
  pointer-events:none;
}
.hero::after{
  content:"";
  position:absolute;
  inset:auto auto -160px -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 40% 40%, rgba(44, 162, 95, .35), rgba(44, 162, 95, 0) 62%);
  pointer-events:none;
}

.hero-title{
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 12px;
}
.hero-sub{
  color: var(--fw-muted);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 26px;
}
.pill{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--fw-border);
  background: rgba(255,255,255,.75);
  font-weight: 600;
  color: rgba(15, 23, 42, .80);
  font-size: .92rem;
}

.card-soft{
  background: var(--fw-card);
  border: 1px solid var(--fw-border);
  border-radius: var(--fw-radius);
  box-shadow: var(--fw-shadow);
}

.hero-media{
  border-radius: calc(var(--fw-radius) + 6px);
  overflow: hidden;
  position: relative;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.hero-badge{
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--fw-border);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 78%;
}
.hero-badge img{
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.hero-badge small{
  display: block;
  color: var(--fw-muted);
  font-weight: 600;
}

.kpi{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 576px){
  .kpi{ grid-template-columns: 1fr 1fr; }
}
.kpi-item{
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--fw-border);
  background: rgba(246,248,251,.65);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.kpi-item i{
  font-size: 1.1rem;
  color: var(--fw-primary);
  margin-top: 2px;
}
.kpi-item h6{
  margin: 0 0 2px;
  font-weight: 800;
}
.kpi-item p{
  margin: 0;
  color: var(--fw-muted);
  font-size: .95rem;
}

.hours{
  margin-top: 14px;
  border-top: 1px dashed var(--fw-border);
  padding-top: 14px;
}
.hours-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, .08);
  font-weight: 600;
}
.hours-row:last-child{ border-bottom: 0; }
.hours-row .day{ color: rgba(15, 23, 42, .78); }
.hours-row .time{ color: rgba(15, 23, 42, .72); }
.hours-row.is-today{
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(44, 162, 95, .10);
  border: 1px solid rgba(44, 162, 95, .18);
}
.hours-row.is-today .day,
.hours-row.is-today .time{
  color: rgba(15, 23, 42, .88);
}
.status-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--fw-border);
  background: rgba(255,255,255,.75);
  font-weight: 800;
}
.status-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #94a3b8;
}
.status-pill.is-open .status-dot{ background: #22c55e; }
.status-pill.is-closed .status-dot{ background: #ef4444; }

.section-title{
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.section-sub{
  color: var(--fw-muted);
  max-width: 720px;
  margin-bottom: 26px;
}

.map-wrap{
  border-radius: calc(var(--fw-radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--fw-border);
  box-shadow: var(--fw-shadow);
  background: #fff;
}
.map-wrap iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 575px){
  .map-wrap iframe{ height: 340px; }
}

.gallery-card{
  border-radius: calc(var(--fw-radius) + 8px);
  overflow: hidden;
  border: 1px solid var(--fw-border);
  background: #fff;
  box-shadow: var(--fw-shadow);
  height: 100%;
}
.gallery-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer{
  border-top: 1px solid var(--fw-border);
  padding: 26px 0;
  color: rgba(15, 23, 42, .70);
}

.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--fw-border);
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1030;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.back-to-top.show{
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover{
  transform: translateY(-2px);
}

.small-note{
  font-size: .92rem;
  color: var(--fw-muted);
}