/* Benea.eu — shared stylesheet
   Brand: Benea = Business, Educational, Networking, Events, Adventures
   Colors (extracted from logo, approved by Jas 2026-08-20):
   #D6C9AC primary bg · #040304 wordmark · #3B3734/#5D5956 grays · #B9AE97 highlight
*/

:root {
  --color-bg: #D6C9AC;
  --color-wordmark: #040304;
  --color-accent-dark: #3B3734;
  --color-accent-light: #5D5956;
  --color-highlight: #B9AE97;
  --color-surface: #faf8f2;
  --color-surface-alt: #efe9dc;
  --color-text: #040304;
  --color-muted: #5D5956;
  --color-border: #B9AE97;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --radius: 14px;
  --max-width: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--color-accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header / nav */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-wordmark);
  letter-spacing: -0.02em;
}
.brand img { height: 32px; width: auto; }
.brand .aperture { color: var(--color-accent-dark); }

.nav { display: flex; gap: 22px; align-items: center; }
.nav a {
  color: var(--color-accent-dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--color-wordmark); }

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--color-wordmark);
}
.hero .subhead {
  font-size: 1.2rem;
  color: var(--color-accent-light);
  max-width: 640px;
  margin: 0 auto 28px;
}
.hero .cta {
  display: inline-block;
  background: var(--color-wordmark);
  color: var(--color-bg);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
}
.hero .cta:hover { background: var(--color-accent-dark); text-decoration: none; }

/* Sections */
section { padding: 40px 0; }
h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--color-wordmark);
}
h3 { font-size: 1.15rem; font-weight: 600; margin: 0 0 8px; }

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}
.card h3 { color: var(--color-wordmark); }
.card p { color: var(--color-accent-light); margin: 0; }

/* Trips */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.trip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.trip img { width: 100%; height: 180px; object-fit: cover; display: block; }
.trip .trip-body { padding: 18px; }
.trip .trip-cat {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent-light);
  margin-bottom: 6px;
}
.trip .trip-price { font-weight: 700; color: var(--color-accent-dark); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--color-wordmark);
  color: var(--color-bg);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
}
.btn:hover { background: var(--color-accent-dark); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--color-wordmark);
  border: 2px solid var(--color-wordmark);
}
.btn-outline:hover { background: var(--color-wordmark); color: var(--color-bg); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
  margin-top: 40px;
  color: var(--color-accent-light);
  font-size: 0.9rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.site-footer a { color: var(--color-accent-light); }

/* Utility */
.muted { color: var(--color-muted); }
.center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }

/* 404 */
.notfound { text-align: center; padding: 100px 0; }
.notfound h1 { font-size: 4rem; margin: 0; }

/* Responsive */
@media (max-width: 640px) {
  .nav { gap: 14px; }
  .nav a { font-size: 0.85rem; }
  .hero { padding: 48px 0 40px; }
}
