@import url('variables.css');
@import url('bands.css');
@import url('footer.css');


/* =========================
   GLOBAL STYLES
========================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background: url('./assets/bg3.png') no-repeat center fixed;
  background-size: cover;
}

h1, h2 {
  font-family: 'Cormorant', serif;
}

/* =========================
   HEADER
========================= */
header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 8vw;
  gap: 20px;
  position: relative;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header img {
  height: 50px;
  max-width: 100%;
}

.bedrijfsnaam {
  font-family: 'Cormorant', serif;
  font-size: 3em;
  color: var(--primary-color-dark);
  margin: 0;
  text-decoration: none;

   display: inline-flex;
    align-items: center; /* vertically aligns text and image */
    gap: 0.25rem;        /* small space between text and logo */
    font-weight: bold;
    text-decoration: none;

  .logo-color {
      height: 0.8em;        /* matches text height */
       vertical-align: middle;
      /*  margin-top: -0.05em; tiny tweak if image looks slightly off */
  }
}

.custom-h1 {
  font-family: 'Cormorant', serif;
  font-size: 2.5em;
  color: var(--primary-color-dark);
  margin: 0;
}

.logo-color {
  color: var(--primary-color);
}

/* =========================
   LAYOUT CONTAINERS
========================= */
#container {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5vw;
}

#contact-form,
#contact-form > div {
  max-width: 900px;
}


/* =========================
   NAVIGATION
========================= */
nav.desktop-nav {
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

nav.desktop-nav a {
  color: #000;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav.desktop-nav a:hover,
nav.desktop-nav a.active {
  color: var(--accent-color-primary);
}

nav.desktop-nav a.active {
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color-primary);
  padding-bottom: 2px;
}

/* Submenu */
.desktop-nav .nav-dropdown {
  position: relative;
}

.desktop-nav .submenu {
  list-style: none;
  margin: 0;
  padding: 0.5em 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(114,72,106,0.08);
  opacity: 0;
  transition: opacity 0.15s;
  display: none;
  z-index: 10;
}

.desktop-nav .nav-dropdown:hover .submenu,
.desktop-nav .nav-dropdown:focus-within .submenu {
  display: block;
  opacity: 1;
}

.desktop-nav .submenu li a {
  display: block;
  padding: 0.7em 1.2em;
  color: var(--primary-color);
  text-decoration: none;
}

.desktop-nav .submenu li a:hover {
  background: var(--text-color-light);
}

/* =========================
   MOBILE MENU
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 4px rgba(0,0,0,0.1);
  padding: 2rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1001;
}

.mobile-menu.show {
  right: 0;
}

.mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent-color-primary);
  font-weight: 600;
}

.mobile-menu .booking-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.mobile-menu .nav-dropdown .submenu {
  display: none;
  margin: 0.5em 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(114,72,106,0.08);
}

.mobile-menu .nav-dropdown.active .submenu {
  display: block;
}

/* Overlay */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.overlay.show {
  display: block;
}

/* =========================
   BUTTONS
========================= */
.booking-btn {
  background: var(--primary-color);
  color: var(--text-color-light) !important;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.booking-btn:hover {
  background: var(--primary-color-dark);
}

.text-link-button {
  all: unset;
  color: var(--accent-color-primary);
  text-decoration: underline;
  cursor: pointer;
}

.text-link-button:hover {
  text-decoration: none;
}

/* =========================
   PROMO RIBBON
========================= */
.promo-ribbon {
  width: 100vw;
  background: linear-gradient(90deg, var(--secondary-color-dark)  70%, var(--accent-color-secondary) 100%);
  color: var(--text-color-light);
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1em;
  font-weight: 600;
  text-align: center;
  padding: 0.75em 0;
  box-shadow: 0 2px 8px rgba(114, 72, 106, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
}

body.has-ribbon header {
  margin-top: 50px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  header .booking-btn,
  nav.desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex !important;
    margin-left: auto;
  }

  html, body, main, #container {
    background-color: var(--text-color-light);
  }

  .promo-ribbon {
    font-size: 1em;
    padding: 0.6em 0;
  }

  body.has-ribbon .mobile-menu {
    z-index: 2100;
  }

  body.has-ribbon header {
    margin-top: 40px;
  }
}

/* =========================
   ECHO SECTION
========================= */
.echo-section {
  padding: 4rem 5vw;

  margin: 0 auto;
}

.echo-section h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Cormorant', serif;
  font-size: 2.5rem;
  color: #333;
}

.echo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.echo-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
/* Hover effect
.echo-card:hover {
  transform: translateY(-5px);
}
*/

.echo-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
  object-fit: cover;
  max-height: 200px;
}

.echo-card h2 {
  margin: 0 0 0.5rem;
  font-family: 'Cormorant', serif;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.echo-card p {
  color: #555;
  line-height: 1.6;
  flex-grow: 1;
}

.echo-card .booking-btn {
  margin-top: 1.5rem;
  align-self: flex-start;
}



.disabled-link {
  pointer-events: none;  /* disables clicking */
  color: gray;           /* visually indicates it's disabled */
  text-decoration: none; /* optional, remove underline */
  cursor: default;       /* optional, shows normal cursor */
}

.cta-row {
 margin-top:2rem;
}