/* =========================
   ROUTE & RELAX — GLOBAL CSS
   ========================= */

/* =========================
   1) VARIABLES
   ========================= */
:root{
  --bg: #F8F5EF;
  --text: #2A3A32;
  --muted: #5b6b63;
  --text-muted: var(--muted);

  --nav-bg: #D2C7A2;

  --primary: #D67B6E;
  --secondary: #69A8DC;

  --radius: 12px;
  --maxw: 1200px;

  --q-border: rgba(0, 0, 0, 0.10);
  --q-card: #ffffff;
  --q-soft: rgba(0, 0, 0, 0.06);
}

/* =========================
   2) RESET / BASE
   ========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--text);
  position: relative;
  padding-top: 34px;
}

main{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px;
}

/* Utilities */
.hidden{
  display: none !important;
}

.muted{
  color: var(--muted);
}

/* =========================
   3) LAYOUT HELPERS
   ========================= */
.container{
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.section{
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.section + .section{
  margin-top: 56px;
}

.section h2{
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.section p{
  max-width: 820px;
}

/* Lists */
.bullets{
  margin-top: 12px;
  padding-left: 18px;
}

.bullets li{
  margin: 8px 0;
}

.feature-list{
  margin: 12px 0 0 0;
  padding-left: 18px;
  text-align: left;
}

.feature-list li{
  margin: 6px 0;
}

/* =========================
   4) TOP LANGUAGE SWITCH
   ========================= */
.lang-switch{
  position: static !important;
  top: auto !important;
  right: auto !important;

  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  text-align: right;
  font-weight: 700;
  background: var(--nav-bg);
}

.lang-switch a{
  color: var(--text);
  text-decoration: none;
  margin-left: 8px;
}

.lang-switch a:hover{
  text-decoration: underline;
}

/* =========================
   5) NAVBAR
   ========================= */
nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: var(--nav-bg);
  max-width: var(--maxw);
  margin: 0 auto;
}

nav img.logo{
  height: 28px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  display: block;
}

nav h1{
  font-size: 1.25rem;
  margin-right: auto;
  color: var(--text);
}

nav ul,
nav .nav-links{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 16px;
}

nav a{
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 6px 4px;
}

nav a:hover{
  text-decoration: underline;
}

/* =========================
   6) HERO
   ========================= */
#hero{
  text-align: center;
  padding: 46px 20px 38px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-small{
  padding: 42px 20px 34px;
}

#hero h2{
  font-size: 2.2rem;
  margin-top: 18px;
}

#hero p{
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image{
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.hero-logo{
  width: min(560px, 85%);
  height: auto;
  object-fit: contain;
  border-radius: 0;
  margin: 10px auto 18px;
  display: block;
}

.hero-actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* =========================
   7) BUTTONS
   ========================= */
.btn,
.start-btn{
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.start-btn{
  margin-top: 18px;
  background: var(--primary);
  color: #fff;
}

.btn{
  margin-top: 10px;
  background: var(--primary);
  color: #fff;
}

.btn-secondary{
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn:hover,
.start-btn:hover{
  opacity: 0.92;
}

.btn-secondary:hover{
  background: var(--primary);
  color: #fff;
  opacity: 1;
}

.form .start-btn{
  margin-top: 18px;
}

/* =========================
   8) CARDS / GRID
   ========================= */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.card{
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.card h3{
  margin-bottom: 8px;
}

.card h3 a{
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover{
  text-decoration: underline;
}

.card h3 a:visited{
  color: inherit;
}

.card .btn{
  margin-top: 14px;
}

.cards .card p + .price-badge{
  margin-top: 14px;
}

.cards .card .feature-list{
  margin-top: 12px;
}

/* Trip / product cards */
.trip-cards .card{
  text-align: left;
}

.trip-card{
  padding: 20px;
}

.trip-card h3{
  margin-bottom: 6px;
  line-height: 1.3;
  min-height: 2.6em;
}

.trip-card p{
  line-height: 1.7;
}

.trip-meta{
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.trip-card .price-badge{
  margin-top: 14px;
  margin-bottom: 8px;
}

.trip-card .btn{
  margin-top: 14px;
}

.trip-card .btn{
  margin-top: 14px;
}

.trip-question-link{
  margin-top: 14px;
  text-align: center;
}

.trip-question-link a{
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.trip-question-link a:hover{
  text-decoration: underline;
}

.trip-card{
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.trip-card .trip-actions{
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   9) SMALL COMPONENTS
   ========================= */
.hint{
  margin-top: -6px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: var(--muted);
}

.price-badge{
  display: inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  font-weight: 800;
}

.note{
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.helper{
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* =========================
   10) CONTACT PAGE
   ========================= */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  margin-top: 16px;
}

.panel{
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.panel h3{
  margin-bottom: 8px;
}

.contact-line{
  margin: 10px 0;
}

.contact-line a{
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.contact-line a:hover{
  text-decoration: underline;
}

.form label{
  display: block;
  margin: 10px 0 6px;
  font-weight: 800;
}

.form input,
.form textarea{
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 14px;
  background: #fff;
  color: var(--text);
}

.form textarea{
  min-height: 140px;
  resize: vertical;
}

/* =========================
   11) ABOUT / STORIES
   ========================= */
.story-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

.story-card h3{
  margin-bottom: 8px;
}

/* =========================
   12) HOW IT WORKS
   ========================= */
.steps{
  margin-top: 16px;
}

.step-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

.step-card h3{
  margin-bottom: 8px;
}

/* =========================
   13) POLICIES
   ========================= */
.policy-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.policy-card{
  background: #fff;
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.policy-card h3{
  margin-bottom: 8px;
}

.policy-card p{
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-card a{
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.policy-card a:hover{
  text-decoration: underline;
}

/* =========================
   14) QUESTIONNAIRE
   ========================= */
#tier-selection{
  max-width: 860px;
  margin: 30px auto;
  text-align: center;
  background: var(--q-card);
  border: 1px solid var(--q-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

#tier-selection h2{
  margin-bottom: 8px;
}

#tier-selection p{
  color: var(--muted);
  margin-bottom: 14px;
}

#tier-selection .tier-buttons{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

#tier-selection button{
  background: #fff;
  border: 1px solid var(--q-border);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.15s ease;
  min-width: 160px;
}

#tier-selection button:hover{
  border-color: transparent;
  background: var(--primary);
  color: #fff;
}

#questionnaire{
  max-width: 860px;
  margin: 24px auto;
}

.step{
  background: var(--q-card);
  border: 1px solid var(--q-border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.step h2{
  font-size: 1.25rem;
  margin-bottom: 14px;
}

fieldset{
  border: none;
  padding: 0;
  margin-bottom: 18px;
}

legend{
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

label{
  display: block;
  margin-bottom: 10px;
  cursor: pointer;
}

input[type="text"],
input[type="number"],
input[type="date"],
select,
textarea{
  width: 100%;
  max-width: 520px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--q-border);
  font-size: 14px;
  background: #fff;
  color: var(--text);
}

input[type="checkbox"],
input[type="radio"]{
  margin-right: 8px;
}

.progress-wrap{
  margin: 0 0 12px 0;
}

progress{
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
}

progress::-webkit-progress-bar{
  background: #eee;
}

progress::-webkit-progress-value{
  background: var(--primary);
}

#progress-label{
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-buttons{
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.nav-buttons button{
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border-radius: 12px;
  border: 1px solid var(--q-border);
  cursor: pointer;
  font-weight: 800;
}

#back-btn{
  background: #fff;
}

#next-btn{
  background: var(--secondary);
  color: #fff;
  border-color: transparent;
}

#submit-btn{
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

#back-btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================
   15) FOOTER
   ========================= */
footer{
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: var(--nav-bg);
  margin-top: 40px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

footer a{
  color: var(--text);
}

/* =========================
   16) RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  nav{
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  nav h1{
    width: 100%;
    margin-right: 0;
    margin-top: 6px;
  }

  nav ul,
  nav .nav-links{
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  #hero{
    padding: 40px 16px 32px;
  }

  .hero-small{
    padding: 36px 16px 30px;
  }

  #hero h2{
    font-size: 1.8rem;
  }

  .hero-actions{
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn,
  .hero-actions .start-btn{
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .nav-buttons{
    flex-direction: column;
  }

  #tier-selection button{
    min-width: 220px;
  }
}

/* =========================
   17) VALIDATION STATES
   ========================= */
.field-error{
  outline: 2px solid #d93025;
  outline-offset: 2px;
  border-color: #d93025 !important;
  border-radius: 8px;
}

.fieldset-error{
  border: 2px solid #d93025 !important;
  border-radius: 12px;
  padding: 12px;
}

.step-error{
  max-width: 860px;
  margin: 0 auto 12px;
  padding: 10px 12px;
  border: 1px solid #d93025;
  border-radius: 12px;
  background: #fff5f5;
  color: #7a1c17;
  font-weight: 700;
}

.trip-country-heading {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

#netherlands-trips,
#germany-trips,
#belgium-trips,
#france-trips,
#may-holiday,
#autumn-trips,
#available-trips,
#all-trips {
  scroll-margin-top: 110px;
}

.signup-form {
  max-width: 720px;
  margin: 20px auto 0;
}

.signup-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.signup-row input[type="email"] {
  flex: 1 1 320px;
  max-width: 420px;
  padding: 14px 16px;
  border: 1px solid #d8d2c4;
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: inherit;
}

.signup-row input[type="email"]:focus {
  outline: none;
  border-color: #d67b6e;
  box-shadow: 0 0 0 3px rgba(214, 123, 110, 0.15);
}


