
:root {
  --blue: #22366b;
  --gold: #d7b46a;
  --red: #e63946;
  --text-dark: #111827;
  --text-muted: #4b5563;
  --bg-light: #f5f5f7;
  --border-light: #e5e7eb;
  --white: #ffffff;
  --lightblue: #3c66d8;
}

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

html {
  scroll-behavior: smooth;
}


body {
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ====== HEADER ====== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--blue);
  border-bottom: 1px solid var(--blue);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 0px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--blue);
  border-radius: 3px;
}

.logo-text-main span {
  color: var(--gold);
}

.logo-img {
    padding-top: 10px;
    height: 80px;
    width: auto;
    display: block;
    transform: scale(1.3);   /* Makes the logo appear bigger */
    transform-origin: left center; /* Keeps alignment */
}

.language-buttons {
  display: flex;
  flex-direction: row; /* stack vertically */
  gap: 6px;
  align-items: flex-end; /* align left */
  margin-left: 200px;
  margin-right: -200px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.lang-btn img {
  width: 25px;
  height: 15px;
  object-fit: cover;
  border-radius: 4px;
}

.lang-btn span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}



.nav-links {
    font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 40px;
  font-size: 0.95rem;
}

.nav-links a {
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  color: #ffffff; 
}

/* Hover color */
.nav-links a:hover {
  color: var(--gold); /
}

/* Underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: width 0.35s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
  background: #c92d39;
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

/* ====== MOBILE NAV ====== */

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ====== CONSTRUCTION BANNER ====== */

.construction-banner {
  position: relative;
  background: linear-gradient(120deg, #22366b, #3c66d8);
  color: #ffffff;
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.construction-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 40%, rgba(255, 255, 255, 0.14), transparent 36%),
    radial-gradient(circle at 88% 0%, rgba(215, 180, 106, 0.25), transparent 42%);
  opacity: 0.9;
  pointer-events: none;
}

.banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 0;
}

.banner-icon {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.banner-copy {
  display: grid;
  gap: 4px;
  color: #e8ecf8;
}

.banner-kicker {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 700;
}

.banner-copy p {
  margin: 0;
  font-size: 0.98rem;
}

.banner-cta {
  margin-left: auto;
  padding-inline: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .banner-cta {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
  .banner-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
    .logo-img {
        height: 42px;
    }

    .nav-links {
    display: none;
    position: absolute;
    inset: 56px 0 auto 0;
    flex-direction: column;
    background: #ffffff;
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    }
    .nav-links.open {
    display: flex;
    }
    .nav-toggle {
    display: block;
    }
}

/* ====== HERO ====== */

.hero {
  position: relative;
  color: #ffffff;
  background: var(--blue);
  min-height: 68vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/images/frost11.jpg") center/cover no-repeat;
  opacity: 0.60;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}

.hero-content {
  max-width: 540px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 26px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* offset for anchor scrolling so sticky header doesn't cover titles */
#about,
#lessons,
#location,
#booking,
#contact {
    scroll-margin-top: 70px
}
#gallery {
  scroll-margin-top: 90px; /* adjust to your header height */
}

/* ====== SECTIONS ====== */

section {
  padding: 72px 16px;
}

section:nth-of-type(even) {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* left-aligned title (for location section) */
.section-title-left {
  text-align: left;
  margin-bottom: 18px;
}


/* Why section */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.why-card {
  background: #ffffff;
  padding: 24px 22px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  text-align: center;
}

.why-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Icons inside cards */
.why-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}

/* Wrapper with badge + title aligned */
.section-title-with-badge {
  display: flex;
  align-items: center;
  gap: 110px;
  margin-bottom: 10px;
}

/* Badge circular formatting */
.title-badge {
  width: 150px;              /* adjust size if needed */
  height: auto;
  border-radius: 25%;        /* makes it ROUND */
  padding: 0px;             /* spacing inside the circle */
  background: #ffffff;       /* white circle */
  border: 3px solid #d9d9d9; /* light border for depth */
  object-fit: contain;       /* keeps proportions clean */
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border: 4px solid var(--gold);
}

.badge-rentshop {
  width: 200px;
}

/* Location */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  font-size: 1.10rem;
}

.two-column p {
  color: var(--text-muted);
}

.zellberg-photo {
  border-radius: 5%;
  border: 4px solid var(--blue);
}

/* Lessons */

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

.lesson-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lesson-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.lesson-card p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.lesson-price {
  font-weight: 600;
  margin-top: auto;
}

.lesson-icon {
  font-size: 42px;
  color: var(--gold); /* Frost gold */
  margin-bottom: 12px;
}

#lessons .container {
  position: relative;
}

/* Frost badge in top-left corner */
.lessons-badge {
  position: absolute;
  top: -35px;         /* move up above the section */
  left: 40px;         /* distance from the left edge */
  background: #ffffff;
  border-radius: 999px;
  padding: 0px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  z-index: 5;
  border: 4px solid var(--gold);
}

/* Logo inside the badge */
.lessons-badge img {
  display: block;
  width: 150px;        /* adjust size here */
  height: auto;
  border-radius: 999px; /* keeps it round if the image has transparent bg */
}


/* Booking teaser */

.booking-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.booking-placeholder {
  margin: 18px 0;
}

/* ======KONTAKT ====== */


#contact a {
  color: var(--blue);
  font-weight: 600;
}

#contact strong {
  font-weight: 700;
}

#contact p {
  margin-bottom: 12px;
}

.map-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}


/* ====== FOOTER ====== */

footer {
  background: var(--blue);
  color: #ffffff;
  padding: 28px 16px;
  font-size: 0.9rem;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

footer a {
  color: #ffffff;
  opacity: 0.85;
}

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

/* ==== FOOTER ==== */

.site-footer {
  background-color: #25346A; /* matches the logo background */
  color: #ffffff;
  padding: 50px 0;
  position: relative;
}


.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-info h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.footer-info p {
  margin: 4px 0;
  font-size: 0.95rem;
}

.footer-info a {
  color: #ffffff;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-info i {
  margin-right: 8px;
}

/* small note text */
.footer-note {
  font-size: 1rem;
  opacity: 0.8;
}

/* payment logos on the right */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-payments img {
  height: 32px;
  display: block;
}

.site-footer {
  position: relative;
}

.footer-brand {
  position: absolute;
  bottom: 110px;
  right: 80px;
}

.footer-brand img {
  width: 500px;     /* adjust size as needed */
  height: auto;
  opacity: 0.9;     /* optional */
}


/* responsive: stack on mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-payments {
    margin-top: 20px;
  }
}


/* ====== RESPONSIVE ====== */

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .two-column {
    grid-template-columns: 1fr;
  }
  .lessons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .footer-brand img {
    width: 180px;
  }
}


@media (max-width: 640px) {
  .lessons-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 80vh;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
@media (max-width: 768px) {
  .lessons-badge {
    top: -25px;
    left: 20px;
    padding: 6px;
  }

  .lessons-badge img {
    width: 70px;
  }
}
}
