/* Diep Sloep Groningen — refreshed static layout */

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

:root {
  --bg: #0a1628;
  --bg-alt: #0f1f35;
  --bg-card: #132640;
  --gold: #f8b449;
  --gold-hover: #e09a2a;
  --water: #2a9fd6;
  --text: #e8eef4;
  --muted: #8899aa;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --max: 1140px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

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

a:hover {
  color: var(--gold-hover);
}

h1, h2, h3, h4 {
  font-family: Oswald, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); color: var(--gold); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1rem; color: #b8c5d4; }
ul { margin: 0 0 1rem; padding-left: 1.25rem; color: #b8c5d4; }
li { margin-bottom: 0.35rem; }

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.5rem 1rem;
  background: var(--gold);
  color: var(--bg);
}

.skip-link:focus {
  left: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-family: Oswald, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.lang-switch {
  display: flex;
  gap: 0.35rem;
  margin-left: 0.5rem;
}

.lang-switch a {
  font-family: Oswald, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  color: var(--muted);
  border: 1px solid transparent;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: var(--gold);
  border-color: rgba(248, 180, 73, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  background: #25d366;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid #25d366;
  transition: background 0.2s, border-color 0.2s;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  color: #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.35rem;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.92) 70%, var(--bg) 100%),
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(42, 159, 214, 0.18), transparent),
    url("../wp-content/uploads/2020/02/sloep-varen-groningen-zomer.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-logo {
  max-width: min(520px, 88vw);
  margin: 0 auto 1.25rem;
}

.hero-badge {
  width: 72px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

.hero-tagline {
  font-family: Oswald, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: left;
}

.hero-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(15, 31, 53, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.hero-card h3 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.hero-card .highlight {
  color: var(--gold);
  font-weight: 600;
}

.hero-card .icon {
  font-size: 1.5rem;
  margin-top: 0.75rem;
  opacity: 0.7;
}

.hero-cta {
  margin-top: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: Oswald, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--bg);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(248, 180, 73, 0.12);
  color: var(--gold);
}

/* Sections */
section {
  padding: 4.5rem 0;
}

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

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head p {
  color: var(--muted);
  max-width: 52ch;
  margin: 0.5rem auto 0;
}

.wave-divider {
  display: block;
  width: 100%;
  height: 48px;
  fill: var(--bg-alt);
  margin-top: -1px;
}

section.alt + .wave-divider,
.wave-divider.to-alt {
  fill: var(--bg-alt);
}

.wave-divider.to-bg {
  fill: var(--bg);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-box {
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: rgba(248, 180, 73, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: #c8d4e0;
  margin-top: 1.25rem;
}

/* Captain */
.captain-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.captain-grid img {
  border-radius: var(--radius);
  max-width: 340px;
  margin: 0 auto;
}

.captain-name {
  font-family: Oswald, sans-serif;
  color: var(--water);
  letter-spacing: 0.06em;
  margin-top: 1rem;
}

/* Cards / arrangements */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.price-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: rgba(248, 180, 73, 0.35);
  transform: translateY(-2px);
}

.price-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.price-card ul {
  font-size: 0.95rem;
}

.price-tag {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(248, 180, 73, 0.15);
  color: var(--gold);
  font-family: Oswald, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.testimonial {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 0.75rem;
}

.testimonial cite {
  font-family: Oswald, sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(10, 22, 40, 0.92));
  font-family: Oswald, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 6; }
.gallery-item:nth-child(7) { grid-column: span 6; }
.gallery-item:nth-child(8) { grid-column: span 12; aspect-ratio: 21/9; }

/* Partners */
.partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partners img {
  height: 52px;
  width: auto;
  opacity: 0.88;
  filter: brightness(1.1);
  transition: opacity 0.2s;
}

.partners img:hover {
  opacity: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-block {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact-block h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--water);
}

.contact-form label {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.copyright {
  color: var(--muted);
  font-size: 0.85rem;
}

.copyright b {
  color: #9aabb8;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-cards,
  .about-grid,
  .captain-grid,
  .cards-grid,
  .testimonials-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(n) {
    grid-column: span 12;
    aspect-ratio: 4/3;
  }

  .captain-grid img {
    max-width: 260px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 22, 40, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .header-actions {
    margin-left: auto;
  }

  .btn-whatsapp span.label {
    display: none;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0 3rem;
  }
}
