/* =========================================================
   00 - DESIGN TOKENS
========================================================= */

:root {
  --blue: #0c2d57;
  --orange: #ef7d22;
  --gray: #626a73;
  --light-gray: #e7eaf0;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(12, 45, 87, 0.16);
}

/* =========================================================
   01 - BASE / RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
  color: var(--gray);
  font-family: "Cormorant Garamond", "EB Garamond", "Times New Roman", sans serif;
  line-height: 1.6;
}

button,
input,
a {
  font: inherit;
}

a {
  color: inherit;
}

/* =========================================================
   02 - HEADER + HERO
========================================================= */

.site-header {
  position: relative;
  padding: 34px 24px 0;
  text-align: center;
}

.language-switcher {
  position: absolute;
  top: 18px;
  right: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.lang-button {
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 9px 13px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lang-button:hover,
.lang-button.is-active {
  background: var(--blue);
  color: var(--white);
}

.title-wrap {
  padding-top: 24px;
}

h1 {
  margin: 0;
  color: var(--blue);
  font-family: "EB Garamond", "Cormorant Garamond", "Cambria", sans serif;
  font-size: clamp(60px, 13vw, 75px);
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.85;
  text-shadow:
    0 0 12px rgba(239, 125, 34, 0.3),
    0 0 42px rgba(12, 45, 87, 0.16);
}

.title-wrap p {
  margin: 18px 0 0;
  color: var(--orange);
  font-size: clamp(22px, 4vw, 27px);
  line-height: 1.1;
}

/* =========================================================
   03 - VIDEO
========================================================= */

.video-section {
  margin-top: 50px;
  width: 100%;
}

.hero-video {
  display: block;
  width: 100%;
  height: 720px;
  object-fit: cover;
  background: #f4f6f8;
}

/* =========================================================
   04 - NAVIGATION
========================================================= */

.menu-section {
  padding: 44px 24px 18px;
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 150px;
  min-height: 50px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.nav-button:hover,
.nav-button:focus-visible {
  color: var(--blue);
  box-shadow: 0 12px 32px rgba(12, 45, 87, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.button-icon {
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

/* =========================================================
   05 - ACCESS / CODE BOX
========================================================= */

.access-code {
  padding: 28px 24px 18px;
  text-align: center;
}

.box-layout {
  display: inline-block;
  max-width: 620px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background: var(--white);
  padding: 20px;
}

.box-layout h2 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 25px;
  font-weight: 500;
}

.box-layout p {
  margin: 0 0 16px;
}

.code-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.code-row input {
  min-height: 42px;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 8px 12px;
}

.code-row input[type="submit"] {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
}

/* =========================================================
   06 - DIRECTORY + SOCIAL
========================================================= */

.directory-link {
  margin: 18px 24px 26px;
  text-align: center;
}

.directory-link a {
  color: var(--blue);
  text-decoration: none;
}

.directory-link a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 30px 50px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  text-decoration: none;
  font-size: 24px;
  transition: background 180ms ease, color 180ms ease;
}

.social-links a:hover {
  background: var(--blue);
  color: var(--white);
}

.site-footer {
  padding: 20px 24px 28px;
  background: var(--white);
  color: var(--gray);
  text-align: center;
}

/* =========================================================
   07 - MODALS
========================================================= */

.modal-backdrop,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.99);
  backdrop-filter: blur(4px);
  padding: 28px;
}

.modal-backdrop[hidden],
.lightbox[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(75vw, 1520px);
  max-height: 88vh;
  overflow: auto;
  border: 1px solid rgba(12, 45, 87, 0.18);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 34px;
}

.close-modal,
.close-lightbox {
  position: fixed;
  top: 40px;
  right: 28px;
  z-index: 25;
  width: 44px;
  height: 44px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.modal-layout {
  display: grid;
  gap: 28px;
}

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-columns {
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
}

.modal figure {
  margin: 0;
}

.modal img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.modal h2,
.modal h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.18;
}

.modal h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.modal h3 {
  font-size: 25px;
}

.modal p {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 18px;
}

.gallery-modal > h2,
.service-modal > h2 {
  text-align: center;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 26px;
}

.gallery-tabs button,
.contact-cta {
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  cursor: pointer;
  padding: 10px 18px;
}

.gallery-tabs button.is-active,
.gallery-tabs button:hover,
.contact-cta:hover {
  background: var(--blue);
  color: var(--white);
}

/* =========================================================
   08 - GALLERY
========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid button {
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--light-gray);
}

.lightbox img {
  width: min(1370px, 92vw);
  max-height: min(913px, 86vh);
  object-fit: contain;
  background: var(--white);
  box-shadow: var(--shadow);
}

.services-grid {
  align-items: start;
}

.service-card {
  margin-bottom: 26px;
}

.service-card strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
  margin-bottom: 8px;
}

.contact-cta {
  display: block;
  margin: 24px auto 0;
  min-width: 150px;
  background: var(--white);
}

.fh5co-map {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}

.contact-layout a {
  color: var(--blue);
}

body.modal-open {
  overflow: hidden;
}



/* ========================= */
/* POPUP BUTTONS (SHOOTINGS + KURSE) */
/* ========================= */

.button-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;
    min-width: 180px;

    background: #ffffff;
    color: #333333;

    border: 1px solid #0b2a4a;
    border-radius: 30px;

    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;

    cursor: pointer;
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: #ff7a00;
    color: #ffffff;
    border-color: #ff7a00;
}
/* ========================= */
/* FOOTER LINKS */
/* ========================= */

.footer-links {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}

.footer-links a {
    display: block;
    margin: 6px 0;
    color: #000;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.2s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-links strong {
    display: block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* =========================================================
   12 - RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .modal {
	  width: min(92vw, 980px);
  }

  .three-columns,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px 16px 0;
  }

  .language-switcher {
    position: static;
    justify-content: center;
    margin-bottom: 28px;
  }

  .title-wrap {
    padding-top: 0;
  }

  .hero-video {
    height: 420px;
  }

  .menu-section,
  .access-code {
    padding-left: 16px;
    padding-right: 16px;
  }

  .button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .nav-button {
    min-width: 0;
    width: 100%;
  }

  .shop-button {
    grid-column: 1 / -1;
  }

  .modal-backdrop,
  .lightbox {
    padding: 12px;
  }

  .modal {
    width: 96vw;
    max-height: 90vh;
    border-radius: 12px;
    padding: 24px 18px;
  }

  .close-modal,
  .close-lightbox {
    top: 12px;
    right: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .code-row {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .button-grid {
    grid-template-columns: 1fr;
  }

  .hero-video {
    height: 340px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
