:root {
  --mano-page-bg: #eef3f8;
  --mano-surface: #ffffff;
  --mano-surface-soft: #f8fbff;
  --mano-primary: #0c69c8;
  --mano-primary-dark: #084d92;
  --mano-accent: #ef4e4e;
  --mano-text: #14324a;
  --mano-muted: #637b90;
  --mano-border: #d7e4ef;
  --mano-shadow: 0 18px 50px rgba(19, 56, 93, 0.12);
  --mano-radius: 22px;
}

body {
  font-size: 16px;
  color: var(--mano-text);
  background:
    radial-gradient(circle at top left, rgba(30, 136, 229, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, var(--mano-page-bg) 100%);
}

.page-shell {
  max-width: 1440px;
  margin: 24px auto;
  padding: 0 18px 32px;
}

.page-frame {
  background: var(--mano-surface);
  border: 1px solid rgba(215, 228, 239, 0.9);
  border-radius: 28px;
  box-shadow: var(--mano-shadow);
  overflow: hidden;
}

.page-inner {
  padding: 0 22px 28px;
}

.topbar {
  padding: 18px 22px 8px;
}

.topbar .row {
  align-items: center;
}

.logo-header {
  height: auto;
  display: block;
}

.social-strip {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.social-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f5f9fd;
  border: 1px solid var(--mano-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.social-strip a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(12, 105, 200, 0.16);
  background: #fff;
}

.social-strip img {
  width: 30px;
  height: 30px;
}

.hero-banner {
  position: relative;
  display: block;
  min-height: 390px;
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  background-image: url('https://www.grieksegids.nl/fotos/grieksegids-griekenland.jpg');
  background-size: cover;
  background-position: center;
}

.hero-banner:hover {
  text-decoration: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 52px 36px;
  color: #fff;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.15;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.95),
               0 0 8px rgba(0, 0, 0, 0.8);
}

.hero-copy {
  margin: 0;
  max-width: 480px;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1.2;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.95),
               0 0 6px rgba(0, 0, 0, 0.75);
}

.section-card {
  height: 100%;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--mano-border);
  border-radius: var(--mano-radius);
  box-shadow: 0 10px 25px rgba(18, 53, 87, 0.06);
}

/* Unified hero combo card */
.hero-combo-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  border: 1px solid var(--mano-border);
  border-radius: var(--mano-radius);
  box-shadow: 0 12px 32px rgba(18, 53, 87, 0.08);
}

.hero-combo-text {
  flex: 1 1 0;
  min-width: 0;
}

.hero-combo-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--mano-text);
  margin-bottom: 14px;
}

.hero-combo-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--mano-text);
  margin: 18px 0 12px;
}

.hero-combo-map {
  flex: 0 0 460px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-combo-map-img {
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(17, 67, 120, 0.10);
  display: block;
  width: 100%;
  height: auto;
  border: 8px solid #ffffff;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .hero-combo-card {
    flex-direction: column;
  }
  .hero-combo-map {
    flex: none;
    width: 100%;
  }
}

.section-title {
  margin-bottom: 16px;
  font-size: 2rem;
}

.section-subtitle {
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.intro-text,
.section-card p,
.section-card li,
.weblog-card__meta,
.card-text {
  color: var(--mano-muted);
}

.cta-stack .btn,
.cta-grid .btn,
.chip-links .btn,
.content-card .btn {
  border-radius: 12px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.cta-grid .btn {
  width: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.55rem 0.6rem;
  white-space: normal;
  text-align: center;
}

.btn-reizen {
  background-color: #e93074 !important;
  border-color: #e93074 !important;
  color: #fff !important;
}

.btn-reizen:hover,
.btn-reizen:focus {
  background-color: #c9205e !important;
  border-color: #c9205e !important;
  color: #fff !important;
}

.cta-stack .btn {
  margin-bottom: 10px;
  padding: 0.8rem 1rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(12, 105, 200, 0.15);
}

.glossy-cta {
  display: block;
  margin-bottom: 10px;
  padding: 8px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef4e4e 0%, #d73333 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 14px rgba(215, 51, 51, 0.22);
}

.glossy-cta:hover {
  color: #fff;
  text-decoration: none;
}

.map-card {
  text-align: center;
}

.map-card img {
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(17, 67, 120, 0.12);
}

.section-heading {
  margin: 34px 0 18px;
  font-size: 1.8rem;
}

.destination-section {
  margin-top: 18px;
}

.destination-section .row {
  margin-left: 0;
  margin-right: 0;
}

.destination-grid .card,
.content-card,
.weblog-card {
  height: 100%;
  border: 1px solid var(--mano-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18, 53, 87, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.destination-grid .card:hover,
.content-card:hover,
.weblog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(18, 53, 87, 0.12);
  border-color: #bfd8eb;
}

.destination-grid .card-img-top {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.content-card .card-img-top {
  height: 140px;
  object-fit: cover;
}

.destination-grid .card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 1rem;
}

.destination-grid .card-body a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mano-primary);
  text-decoration: none;
}

.destination-grid .card-body a:hover {
  color: var(--mano-primary-dark);
  text-decoration: none;
}

.chip-links {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.chip-links .btn {
  padding: 0.65rem 1rem;
  margin: 0;
}

.sidebar-column {
  padding-top: 10px;
}

.sidebar-column .lazy {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sidebar-column img {
  border-radius: 16px;
  border: 1px solid var(--mano-border);
  box-shadow: 0 10px 22px rgba(18, 53, 87, 0.08);
}

.weblog-section {
  margin-top: 18px;
  padding: 32px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f2fc 100%);
  border: 1px solid var(--mano-border);
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(18, 53, 87, 0.06);
}

.weblog-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.weblog-section-header-content {
  flex: 1;
}

.weblog-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #ef4e4e 0%, #d73333 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(239, 78, 78, 0.3);
  white-space: nowrap;
}

.weblog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.weblog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  position: relative;
}

.weblog-card::before {
  content: 'Weblog';
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(239, 78, 78, 0.95);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.weblog-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.weblog-card__body {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.weblog-card__title {
  display: block;
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--mano-text);
}

.weblog-card__title:hover {
  color: var(--mano-primary);
  text-decoration: none;
}

.weblog-card__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mano-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.weblog-card__meta i {
  font-size: 0.85rem;
  color: var(--mano-primary);
}

.popular-pages-section {
  margin-top: 32px;
}

.popular-pages-section .row {
  margin-left: 0;
  margin-right: 0;
}

.content-card .card-body {
  display: flex;
  flex-direction: column;
}

.content-card .btn {
  margin-top: auto;
}

.footer-wrap {
  margin-top: 28px;
  padding: 0 0 8px;
  border-top: 1px solid var(--mano-border);
}

@media (max-width: 991.98px) {
  .page-shell {
    padding: 0 10px 24px;
  }

  .page-inner,
  .topbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-banner {
    min-height: 300px;
  }

  .social-strip {
    justify-content: center;
  }

  .hero-content {
    padding: 34px 22px;
  }

  .weblog-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .hero-banner {
    min-height: 260px;
  }

  .section-card,
  .weblog-section {
    padding: 20px;
  }

  .weblog-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .weblog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .weblog-card__image {
    height: 180px;
  }
}

/* ===================================
   SUBTIELE MODERNE NAVIGATIE
   =================================== */

.navbar-grieks {
  margin: 12px 0 18px;
  padding: 10px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(18, 53, 87, 0.06);
}

.navbar-grieks .navbar-brand {
  font-weight: 600;
  color: var(--mano-primary);
  padding: 8px 12px;
  margin-right: 12px;
}

.navbar-grieks .navbar-brand:hover {
  color: var(--mano-primary-dark);
}

.navbar-grieks .navbar-toggler {
  border: 2px solid var(--mano-primary);
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(12, 105, 200, 0.05);
}

.navbar-grieks .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(12, 105, 200, 0.15);
  outline: none;
}

.navbar-grieks .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230c69c8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

.navbar-grieks .navbar-nav {
  gap: 4px;
}

.nav-link-grieks {
  padding: 8px 14px !important;
  color: var(--mano-text) !important;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-link-grieks:hover {
  background: rgba(12, 105, 200, 0.08);
  color: var(--mano-primary) !important;
}

.nav-link-accent {
  padding: 8px 14px !important;
  color: var(--mano-accent) !important;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-link-accent:hover {
  background: rgba(239, 78, 78, 0.08);
  color: #d73333 !important;
}

.nav-search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-search-input {
  border: 1px solid var(--mano-border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.nav-search-input:focus {
  border-color: var(--mano-primary);
  box-shadow: 0 0 0 3px rgba(12, 105, 200, 0.1);
  outline: none;
}

.nav-search-btn {
  border-radius: 10px;
  padding: 8px 18px;
  font-weight: 600;
  background: var(--mano-primary);
  border-color: var(--mano-primary);
  color: #fff;
}

.nav-search-btn:hover {
  background: var(--mano-primary-dark);
  border-color: var(--mano-primary-dark);
  color: #fff;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-grieks {
    padding: 10px 14px;
  }

  .navbar-grieks .navbar-collapse {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--mano-border);
  }

  .nav-link-grieks,
  .nav-link-accent {
    margin: 2px 0;
    display: block;
    text-align: left;
  }

  .nav-search-form {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--mano-border);
    width: 100%;
  }

  .nav-search-input {
    flex: 1;
    width: 100%;
  }
  
  .nav-search-btn {
    white-space: nowrap;
  }
}

@media (max-width: 767.98px) {
  .logo-header {
    max-width: 300px !important;
  }
  
  .social-strip {
    margin-top: 12px;
  }
}
