:root {
  --oranje: #F98C02;
  --grijs: #D3D3D3;
  --donkergrijs: #555;
  --wit: #ffffff;
  --tekst: #222222;
  --radius: 8px;
  --max-width: 1100px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--tekst);
  background: #f9f9f9;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--oranje);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* HEADER */
header {
  background: var(--oranje);
  color: var(--wit);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: clamp(1.1rem, 4vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 0.5px;
  color: var(--wit);
}

.logo-sub {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

nav {
  flex: 1;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}

nav ul li a {
  color: var(--wit);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  display: inline-block;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.2s;
}

nav ul li a:hover {
  background: rgba(255,255,255,0.2);
  text-decoration: none;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--oranje) 0%, #e07900 100%);
  color: var(--wit);
  padding: clamp(2.5rem, 8vw, 5rem) 1rem;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

/* CONTAINERS & SECTIONS */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: clamp(2rem, 6vw, 4rem) 1rem;
}

.section-alt {
  background: var(--grijs);
}

.section h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--oranje);
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--oranje);
  padding-bottom: 0.4rem;
}

.section p {
  margin-bottom: 1rem;
  font-size: clamp(1rem, 2vw, 1.05rem);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--oranje);
  color: var(--wit);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  min-height: 44px;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
  margin-top: 0.5rem;
}

.btn:hover {
  background: #d97800;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--donkergrijs);
}

.btn-secondary:hover {
  background: #333;
}

.contact-actie {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* OPENINGSTIJDEN */
.openingstijden-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.ot-block {
  background: var(--wit);
  border-left: 4px solid var(--oranje);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.ot-block h3 {
  font-size: 1rem;
  color: var(--oranje);
  margin-bottom: 0.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.ot-block p {
  margin-bottom: 0.4rem;
  font-size: 0.97rem;
}

.gesloten {
  color: var(--donkergrijs);
  font-style: italic;
  font-size: 0.9rem !important;
}

.bijgewerkt {
  font-size: 0.85rem !important;
  color: var(--donkergrijs);
  font-style: italic;
  margin-top: 0.5rem;
}

/* CONTACT BLOK */
.contact-blok {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-left: 4px solid var(--oranje);
}

.contact-blok p {
  margin-bottom: 0.5rem;
}

/* BBQ PAKKET CARDS */
.pakket-card {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 1px 5px rgba(0,0,0,0.09);
  border-top: 4px solid var(--oranje);
}

.pakket-card h3 {
  color: var(--oranje);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-family: Arial, Helvetica, sans-serif;
}

.pakket-card ul {
  padding-left: 1.25rem;
  margin: 0;
}

.pakket-card ul li {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.pakket-card p {
  margin-bottom: 0;
}

/* HIGHLIGHT BOX */
.highlight-box {
  background: #fff8ee;
  border: 2px solid var(--oranje);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.highlight-box p:last-child {
  margin-bottom: 0;
}

/* BROOD GRID */
.brood-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.brood-card {
  background: var(--wit);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: 0 1px 5px rgba(0,0,0,0.09);
  border-bottom: 4px solid var(--oranje);
}

.brood-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.brood-card h3 {
  color: var(--oranje);
  font-size: 1.05rem;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 0.5rem;
}

.brood-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--donkergrijs);
}

/* FOOTER */
footer {
  background: #333;
  color: var(--grijs);
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-family: Arial, Helvetica, sans-serif;
}

footer p {
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.8;
}

footer a {
  color: var(--oranje);
}

footer a:hover {
  color: #ffa733;
}

/* MEDIA QUERIES */
@media (min-width: 600px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  nav ul {
    justify-content: flex-end;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 3.5rem 2rem;
  }

  .container {
    padding: 0 2rem;
  }
}
