@import url('fonts.css');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green:    #3cff82;
  --dark:     #0a283c;
  --white:    #ffffff;
  --text:     #222222;
  --max-w:    1290px;
  --header-h: 160px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Catamaran', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--white);
}

a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--green); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  background: var(--green);
  color: var(--dark);
  padding: 8px 16px;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 0; }


/* Header */

.site-header {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header--solid {
  background-color: var(--dark);
  background-image: url('../assets/images/winkel_background.svg');
  background-position: 5% 0;
  background-size: contain;
  background-repeat: repeat-y;
  position: sticky;
  top: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 40px;
}

.site-logo img {
  height: 112px;
  width: auto;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 80px;
}
.main-nav ul li a {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--white);
  transition: color 0.2s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--green);
}

.header-socials {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(218, 222, 228, 0.3);
  transition: background 0.2s;
}
.header-socials a:hover { background: var(--green); }
.header-socials svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }


/* Mobile nav */

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 40, 60, 0.98);
  background-image: url('../assets/images/winkel_background.svg');
  background-size: contain;
  background-repeat: repeat-y;
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-nav-overlay.open { display: flex; }

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-overlay ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-overlay ul li a {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.mobile-nav-overlay ul li a:hover { color: var(--green); }

.mobile-nav-socials {
  margin-top: 32px;
  display: flex;
  gap: 20px;
}
.mobile-nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
}
.mobile-nav-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--dark);
}


/* Hero — index */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark);
  background-image: url('../assets/images/Lauffoto_2-scaled-1.jpg');
  background-size: cover;
  background-position: center center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, #0a283c 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: var(--header-h);
  padding-bottom: 80px;
}
.hero-tagline-box {
  background-color: var(--white);
  display: inline-block;
  padding: 28px 40px;
  box-shadow: 6px 6px 4px rgba(120, 120, 120, 0.2);
}
.hero-tagline {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 66px);
  line-height: 1.25;
  color: var(--dark);
  margin: 0;
}


/* Quote banner */

.quote-banner {
  background-color: var(--dark);
  padding: 80px 0;
  width: 100%;
}
.quote-banner-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  align-items: center;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.quote-banner-winkel {
  width: 80px;
  opacity: 0.9;
}
.quote-banner blockquote {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.5;
  color: var(--white);
  border: none;
  padding: 0;
  margin: 0;
}


/* Photo gallery */

.photo-gallery {
  padding: 40px 0 60px;
  background: var(--white);
}
.photo-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.photo-gallery-grid img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
}


/* About */

.about {
  padding: 0 0 80px;
  background: var(--white);
}
.about-intro {
  font-size: 18px;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto 40px;
  color: var(--text);
  text-align: center;
}
.about-intro strong { color: var(--dark); }

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  background-color: rgba(10, 40, 60, 0.85);
  border-radius: 24px;
  padding: 36px 28px;
  color: var(--white);
}
.pillar-label {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.pillar h2 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 14px;
}
.pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}


/* Joint venture */

.jv-logo-bar {
  background-color: var(--dark);
  padding: 40px 0;
  margin-bottom: 60px;
}
.jv-logo-bar-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
}
.jv-logo-bar img {
  height: 56px;
  width: auto;
}

.joint-venture {
  padding: 20px 0;
  background: var(--white);
}
.joint-venture h2 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--dark);
}
.joint-venture p {
  font-size: 17px;
  line-height: 1.75;
  max-width: 820px;
  color: #444;
}


/* Team CTA */

.team-cta {
  padding: 80px 0;
  background: var(--white);
}
.team-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.team-cta-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.team-cta-content h2 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--dark);
}
.team-cta-content p {
  font-size: 17px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 500;
  font-size: 15px;
  background: var(--green);
  color: var(--dark);
  padding: 10px 28px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--dark);
  color: var(--white);
}


/* Hero — join us */

.joinus-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--dark);
  background-image: url('../assets/images/amp-camp2023.jpg');
  background-size: cover;
  background-position: left center;
}
.joinus-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, #0a283c 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}
.joinus-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  padding-top: var(--header-h);
  padding-bottom: 80px;
}
.joinus-hero .btn-outline {
  display: inline-block;
  font-family: 'Comfortaa', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border: 2px solid var(--green);
  color: var(--green);
  padding: 10px 28px;
  border-radius: 24px;
  transition: background 0.2s, color 0.2s;
  align-self: flex-start;
}
.joinus-hero .btn-outline:hover {
  background: var(--green);
  color: var(--dark);
}


/* Join us — body */

.joinus-looking {
  padding: 40px 0;
  background: var(--white);
}
.joinus-looking h2 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 49px);
  color: var(--dark);
  margin-bottom: 24px;
}
.joinus-looking p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 32px;
}
.joinus-looking p a { color: var(--green); }

.dark-card {
  background-color: var(--dark);
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}
.dark-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.dark-card-body {
  padding: 40px 48px;
}
.dark-card h3 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--white);
  margin-bottom: 28px;
}

.work-values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.work-values li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.work-values li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.benefit-item h4 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--green);
  margin-bottom: 6px;
}
.benefit-item p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.joinus-cards {
  padding: 0 0 80px;
  background: var(--white);
}

.meet-team {
  padding: 80px 0;
  background: var(--dark);
  text-align: center;
}
.meet-team img.team-photo {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 40px;
}
.meet-team img.logo-white {
  height: 40px;
  width: auto;
  margin: 0 auto;
}


/* Footer */

.site-footer {
  background-color: var(--dark);
  background-image: url('../assets/images/winkel_background.svg');
  background-position: 5% 10%;
  background-size: contain;
  background-repeat: repeat-y;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.footer-col h4 {
  font-family: 'Catamaran', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--green); }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(218, 222, 228, 0.15);
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--green); }
.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-contact {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}
.footer-contact a { color: rgba(255, 255, 255, 0.6); }
.footer-contact a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-badges img {
  height: 60px;
  width: auto;
}
.footer-copy {
  font-size: 15px;
  color: var(--white);
}


/* Legal pages */

.legal-page {
  padding: 80px 0;
  max-width: 900px;
}
.legal-page h1 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--dark);
}
.legal-page h2 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--dark);
}
.legal-page h3 {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin: 24px 0 8px;
  color: var(--dark);
}
.legal-page p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
}
.legal-page a {
  color: var(--dark);
  text-decoration: underline;
}
.legal-page a:hover { color: var(--green); }
.legal-page ul {
  padding-left: 1.5em;
  color: #444;
  line-height: 1.9;
  font-size: 15px;
}


/* Responsive */

@media (max-width: 999px) {
  :root { --header-h: 70px; }

  .site-logo img { height: 48px; }
  .main-nav, .header-socials { display: none; }
  .nav-toggle { display: flex; }

  .hero-tagline { font-size: clamp(32px, 8vw, 50px); }
  .hero-tagline-box { padding: 20px 28px; }

  .joinus-hero { background-position: center center; }

  .quote-banner-inner { grid-template-columns: 80px 1fr; gap: 32px; }

  .photo-gallery-grid { grid-template-columns: 1fr 1fr; }
  .photo-gallery-grid img:last-child { display: none; }

  .pillars { grid-template-columns: 1fr 1fr; gap: 20px; }

  .team-cta-grid { grid-template-columns: 1fr; gap: 40px; }

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

@media (max-width: 689px) {
  .hero-tagline-box { padding: 16px 20px; }

  .quote-banner-inner { grid-template-columns: 1fr; gap: 24px; }
  .quote-banner-winkel { display: none; }

  .photo-gallery-grid { grid-template-columns: 1fr; }
  .photo-gallery-grid img:nth-child(2),
  .photo-gallery-grid img:last-child { display: none; }

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

  .jv-logo-bar-inner { gap: 40px; }
  .jv-logo-bar img { height: 40px; }

  .dark-card { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
