/* ============================================
   EDERSHIP BOOTSVERLEIH - STYLE
   ============================================ */

:root {
  --primary: #1a3a7e;
  --primary-dark: #122a5e;
  --primary-light: #e8eef9;
  --primary-soft: #f4f7fc;
  --accent: #4ea3df;
  --accent-dark: #2f8bcc;
  --accent-light: #d6ebf8;
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --text: #1a1a2e;
  --text-muted: #5a6275;
  --text-light: #8a92a5;
  --border: #e5e7eb;
  --border-soft: #f0f2f5;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 58, 126, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 58, 126, 0.10);
  --shadow-lg: 0 20px 60px rgba(26, 58, 126, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-sm { padding: 35px 0; }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
  transition: var(--transition);
  padding-top: 26px;
  padding-bottom: 14px;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
  padding-top: 16px;
  padding-bottom: 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100px;
  gap: 24px;
  position: relative;
  transition: height var(--transition);
}

.header.scrolled .nav { height: 70px; }

.logo {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  transition: transform var(--transition);
  z-index: 2;
}
.logo:hover { transform: translateY(-50%) scale(1.04); }

.logo img {
  height: 200px;
  width: auto;
  display: block;
  transition: height var(--transition);
}

.header.scrolled .logo img { height: 130px; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-menu a svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--accent);
  color: var(--white);
}

.nav-menu a:hover svg,
.nav-menu a.active svg {
  stroke: var(--white);
  transform: translateY(-2px);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .header { padding-top: 18px; padding-bottom: 10px; }
  .header.scrolled { padding-top: 12px; padding-bottom: 8px; }
  .nav { height: 80px; justify-content: flex-end; }
  .header.scrolled .nav { height: 60px; }
  .logo img { height: 145px; }
  .header.scrolled .logo img { height: 95px; }
  .nav-menu {
    position: fixed;
    top: 116px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 8px;
    transform: translateY(-150%);
    transition: transform var(--transition);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { width: 100%; padding: 14px 18px; }
}

@media (max-width: 600px) {
  .nav { height: 64px; }
  .header.scrolled .nav { height: 50px; }
  .logo img { height: 115px; }
  .header.scrolled .logo img { height: 78px; }
  .nav-menu { top: 100px; }
}

/* ============================================
   HERO SLIDER
   ============================================ */

.hero {
  position: relative;
  width: 100%;
  height: clamp(480px, 80vh, 900px);
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
}

.hero-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 0 20px;
}

.hero-cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  width: 100%;
}

.hero-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 16px;
  background: var(--accent);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 22px rgba(78, 163, 223, 0.25);
}

.hero-cta-card:hover {
  transform: translateY(-6px);
  background: var(--accent-dark);
  box-shadow: 0 14px 36px rgba(78, 163, 223, 0.45);
  color: var(--white);
}

.hero-cta-card svg {
  width: 56px;
  height: 56px;
  stroke: var(--white);
  transition: var(--transition);
}

.hero-cta-card:hover svg { transform: scale(1.15) rotate(-5deg); }

@media (max-width: 700px) {
  .hero-cta-grid { gap: 10px; }
  .hero-cta-card { padding: 20px 8px; font-size: 0.85rem; gap: 8px; }
  .hero-cta-card svg { width: 36px; height: 36px; }
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--white);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
  background: var(--primary-soft);
  padding: 70px 0 50px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}

.page-header .breadcrumb {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-header h1 { margin-bottom: 16px; }

.page-header .lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================
   INTRO TEXT BLOCK
   ============================================ */

.intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.intro h2 { margin-bottom: 24px; }
.intro p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 16px; }

.intro-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ============================================
   BOAT GRID & CARD
   ============================================ */

.boat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.boat-list--single { grid-template-columns: 1fr; }

@media (max-width: 1024px) {
  .boat-list { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .boat-list--single { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .boat-list { grid-template-columns: 1fr; gap: 24px; }
}

.boat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
  display: flex;
  flex-direction: column;
}

.boat-card.tilt-active { transition: transform 0.1s linear, box-shadow var(--transition); }
.boat-card:hover { box-shadow: var(--shadow-md); }

.boat-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.boat-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.boat-card:hover .boat-cover img { transform: scale(1.04); }

.boat-title {
  padding: 22px 24px 0;
  font-size: 1.3rem;
  color: var(--primary-dark);
  line-height: 1.3;
}

.boat-subtitle {
  padding: 0 24px;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.boat-accordions {
  padding: 14px 24px 24px;
  margin-top: 12px;
}

.boat-list--single .boat-cover { aspect-ratio: 21 / 9; }
.boat-list--single .boat-title { padding: 28px 32px 0; font-size: 1.6rem; }
.boat-list--single .boat-subtitle { padding: 0 32px; font-size: 1rem; }
.boat-list--single .boat-accordions { padding: 18px 32px 28px; }

@media (max-width: 640px) {
  .boat-title { padding: 22px 22px 0; font-size: 1.3rem; }
  .boat-subtitle { padding: 0 22px; }
  .boat-accordions { padding: 14px 22px 22px; }
  .boat-list--single .boat-title { padding: 24px 22px 0; font-size: 1.4rem; }
  .boat-list--single .boat-subtitle { padding: 0 22px; }
  .boat-list--single .boat-accordions { padding: 16px 22px 24px; }
}

.accordion { border-top: 1px solid var(--border-soft); }
.accordion:last-child { border-bottom: 1px solid var(--border-soft); }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
}

.accordion-trigger:hover { color: var(--accent); }

.accordion-icon { width: 22px; height: 22px; flex-shrink: 0; position: relative; transition: var(--transition); }

.accordion-icon::before,
.accordion-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: var(--transition);
}

.accordion-icon::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.accordion-icon::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.accordion.open .accordion-icon::after { transform: rotate(90deg); opacity: 0; }

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-inner {
  padding: 0 4px 22px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.accordion-inner ul { list-style: none; padding: 0; margin: 10px 0; }

.accordion-inner ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.accordion-inner ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

.accordion-inner h5 { color: var(--primary-dark); font-size: 0.98rem; margin: 16px 0 8px; }
.accordion-inner h5:first-child { margin-top: 0; }
.accordion-inner p { margin-bottom: 10px; }

.accordion-inner a { color: var(--accent); text-decoration: underline; font-weight: 500; }
.accordion-inner a:hover { color: var(--accent-dark); }

.popup-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--primary-dark) !important;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: var(--transition);
  margin-top: 6px;
}
.popup-link:hover { background: var(--accent); color: var(--white) !important; }
.popup-link svg { width: 14px; height: 14px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: 8px;
  padding: 4px 0 8px;
}

.boat-list--single .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

@media (max-width: 640px) {
  .boat-list--single .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
    gap: 8px;
  }
}

.gallery-item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-alt);
  cursor: zoom-in;
  position: relative;
  transition: var(--transition);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(78, 163, 223, 0);
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover::after { background: rgba(78, 163, 223, 0.15); }

.price-table { margin-top: 8px; }

.price-block {
  background: var(--primary-soft);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
}

.price-block-title {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 0.88rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  gap: 12px;
}

.price-row + .price-row { border-top: 1px solid rgba(26, 58, 126, 0.08); }
.price-label { color: var(--text); font-size: 0.9rem; line-height: 1.4; }
.price-value { font-weight: 700; color: var(--primary-dark); font-size: 1rem; white-space: nowrap; }

.price-note {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   RENTAL CONDITIONS (collapsible)
   ============================================ */

.conditions {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  margin-top: 50px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.conditions-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: var(--transition);
}

.conditions-trigger:hover { background: rgba(78, 163, 223, 0.05); }

.conditions-trigger h2 {
  color: var(--primary-dark);
  margin: 0;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

.conditions-trigger .accordion-icon {
  width: 28px;
  height: 28px;
}

.conditions-trigger .accordion-icon::before {
  width: 18px;
  height: 2px;
  top: 13px;
  left: 5px;
}

.conditions-trigger .accordion-icon::after {
  width: 2px;
  height: 18px;
  top: 5px;
  left: 13px;
}

.conditions.open .conditions-trigger .accordion-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.conditions-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.conditions-inner {
  padding: 0 40px 36px;
  border-top: 1px solid var(--border-soft);
  padding-top: 28px;
}

.conditions-inner h3 { color: var(--primary-dark); margin: 22px 0 10px; font-size: 1.1rem; }
.conditions-inner p { color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.conditions-inner ol, .conditions-inner ul { color: var(--text-muted); margin: 0 0 14px 22px; line-height: 1.75; }
.conditions-inner ol li, .conditions-inner ul li { margin-bottom: 6px; }
.conditions-inner .fee-list { list-style: none; margin: 0 0 14px 0; padding: 0; }
.conditions-inner .fee-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  border-bottom: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.conditions-inner .fee-list li:last-child { border-bottom: none; }
.conditions-inner .fee-list li::before {
  content: '€';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.conditions-inner .fee-list .fee-amount { font-weight: 700; color: var(--primary-dark); white-space: nowrap; }

@media (max-width: 600px) {
  .conditions-trigger { padding: 22px 24px; }
  .conditions-inner { padding: 22px 24px 28px; }
}

/* ============================================
   FULLWIDTH IMAGE
   ============================================ */

.fullwidth-img {
  width: 100%;
  height: clamp(300px, 45vh, 540px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================
   MAPS HEADING
   ============================================ */

.maps-heading {
  text-align: center;
  background: var(--bg);
  padding: 50px 0;
}

.maps-heading h2 {
  color: var(--primary-dark);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ============================================
   FOOTER
   ============================================ */

.footer { background: var(--white); padding-top: 70px; }

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img {
  height: 180px;
  width: auto;
  filter: drop-shadow(0 6px 20px rgba(26, 58, 126, 0.12));
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.footer-contact-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-contact-item:hover .icon-circle {
  background: var(--accent);
  transform: translateY(-3px);
}

.icon-circle svg { width: 22px; height: 22px; stroke: var(--primary); transition: var(--transition); }
.footer-contact-item:hover .icon-circle svg { stroke: var(--white); }

.footer-contact-item h4 {
  color: var(--primary-dark);
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-contact-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.footer-contact-item a {
  color: var(--text-muted);
  word-break: break-word;
}

.footer-contact-item a:hover { color: var(--accent); }

.footer-hours {
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
  text-align: center;
}

.footer-hours h4 {
  color: var(--primary-dark);
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.footer-hours h4 svg { width: 18px; height: 18px; stroke: var(--primary); }

.footer-hours p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0 auto 4px;
  max-width: 620px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(26, 58, 126, 0.18);
}

.footer-social-link:hover {
  transform: translateY(-4px) scale(1.03);
  background: var(--accent);
  box-shadow: 0 14px 36px rgba(78, 163, 223, 0.45);
  color: var(--white);
}

.footer-social-link svg { width: 78px; height: 78px; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand img { height: 150px; }
  .footer-social-link { width: 130px; height: 130px; }
  .footer-social-link svg { width: 58px; height: 58px; }
}

@media (max-width: 600px) {
  .footer-contact-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-brand img { height: 120px; }
  .footer-social-link { width: 110px; height: 110px; }
  .footer-social-link svg { width: 48px; height: 48px; }
}

.footer-bottom { background: var(--primary); color: var(--white); padding: 18px 0; }

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

.footer-bottom-copyright { color: var(--white); opacity: 0.9; text-align: left; }

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  list-style: none;
  justify-content: center;
}

.footer-bottom-links a { color: var(--white); opacity: 0.9; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); opacity: 1; text-decoration: none; }

.footer-credit { color: var(--white); opacity: 0.85; text-align: right; }
.footer-credit a { color: var(--white); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.4); transition: var(--transition); }
.footer-credit a:hover { color: var(--accent); border-bottom-color: var(--accent); opacity: 1; }

@media (max-width: 900px) {
  .footer-bottom-inner { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .footer-bottom-copyright,
  .footer-credit { text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 40, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform var(--transition);
}

.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }

@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next, .lightbox-close { width: 42px; height: 42px; }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ============================================
   POPUP MODAL (Deltic rules)
   ============================================ */

.popup-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 40, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 20px;
}

.popup-modal.open { opacity: 1; visibility: visible; }

.popup-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
}

.popup-modal.open .popup-content { transform: translateY(0) scale(1); }

.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
  z-index: 2;
}

.popup-close:hover { background: var(--accent); color: var(--white); transform: rotate(90deg); }
.popup-close svg { width: 20px; height: 20px; }

.popup-content h2 { color: var(--primary-dark); margin: 0 36px 8px 0; font-size: 1.5rem; }
.popup-content .popup-sub { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.popup-content h3 { color: var(--primary-dark); margin: 24px 0 10px; font-size: 1.05rem; }
.popup-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; font-size: 0.94rem; }
.popup-content ol, .popup-content ul { color: var(--text-muted); margin: 0 0 14px 22px; line-height: 1.7; font-size: 0.94rem; }
.popup-content ol li, .popup-content ul li { margin-bottom: 6px; }
.popup-content .fee-list { list-style: none; margin: 0 0 14px 0; padding: 0; }
.popup-content .fee-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  border-bottom: 1px dashed var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.popup-content .fee-list li::before {
  content: '€';
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}
.popup-content .fee-list .fee-amount { font-weight: 700; color: var(--primary-dark); white-space: nowrap; }
.popup-content .emergency {
  background: var(--primary-soft);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-top: 18px;
}
.popup-content .emergency h3 { margin-top: 0; color: var(--primary-dark); }
.popup-content .emergency p { margin-bottom: 4px; font-size: 0.92rem; }
.popup-content .closing {
  background: var(--accent-light);
  padding: 16px 20px;
  border-radius: var(--radius);
  margin: 18px 0;
}
.popup-content .closing p { margin-bottom: 4px; }

@media (max-width: 600px) {
  .popup-content { padding: 28px 22px 32px; }
  .popup-content h2 { font-size: 1.25rem; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner h4 {
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-banner p a { color: var(--accent); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.btn {
  padding: 11px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  flex: 1;
}

.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: var(--bg-alt); color: var(--text); }
.btn-ghost:hover { background: var(--border-soft); }

@media (max-width: 540px) {
  .cookie-banner { padding: 20px; left: 12px; right: 12px; bottom: 12px; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { color: var(--primary-dark); margin: 36px 0 14px; font-size: 1.5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: var(--text); margin: 24px 0 10px; font-size: 1.15rem; }
.legal-content p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-content a { color: var(--accent); text-decoration: underline; word-break: break-word; }
.legal-content a:hover { color: var(--accent-dark); }
.legal-content ul { margin: 0 0 16px 22px; color: var(--text-muted); }
.legal-content ul li { margin-bottom: 6px; }


/* Boats section background + black text override */

.boats-section { background: var(--accent); padding: 70px 0 80px; }

.boats-section .boat-title,
.boats-section .boat-subtitle,
.boats-section .accordion-trigger,
.boats-section .accordion-inner,
.boats-section .accordion-inner h5,
.boats-section .accordion-inner ul li,
.boats-section .accordion-inner p,
.boats-section .price-block-title,
.boats-section .price-label,
.boats-section .price-value,
.boats-section .price-note { color: #000 !important; }

.boats-section .accordion-icon::before,
.boats-section .accordion-icon::after { background: #000; }

.boats-section .accordion-inner ul li::before { background: #000; }

.boats-section .price-block { border-left-color: var(--accent); }

/* Hover keeps blue */
.boats-section .accordion-trigger:hover { color: var(--accent) !important; }
.boats-section .accordion-trigger:hover .accordion-icon::before,
.boats-section .accordion-trigger:hover .accordion-icon::after { background: var(--accent); }

@media (max-width: 768px) { .boats-section { padding: 50px 0; } }


/* Instagram gradient on icon */
.footer-social-link svg { stroke: url(#ig-gradient); }
.footer-social-link:hover svg { stroke: url(#ig-gradient); }