/* KlarDenk Akademie — wide-sky-961.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #08406f;
  --secondary: #1477bd;
  --accent: #fbcc85;
  --accent2: #ffca79;
  --text: #323232;
  --gray: #7b7b7b;
  --light: #f3f3f3;
  --border: #ebebeb;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.6; color: var(--text); background: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ============ GRID ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.container-fluid { width: 100%; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
@media (min-width: 576px) { .col-sm-6 { width: 50%; } .col-sm-4 { width: 33.333%; } }
@media (min-width: 768px) { .col-md-6 { width: 50%; } .col-md-4 { width: 33.333%; } .col-md-3 { width: 25%; } }
@media (min-width: 992px) { .col-lg-6 { width: 50%; } .col-lg-4 { width: 33.333%; } .col-lg-3 { width: 25%; } }
@media (min-width: 1200px) { .col-xl-6 { width: 50%; } .col-xl-4 { width: 33.333%; } .col-xl-3 { width: 25%; } }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,.1); }

.header-top {
  background-color: var(--accent);
  color: #00293c;
  padding: 6px 0;
  font-size: 12px;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-top a { color: #00293c; }
.header-top a:hover { text-decoration: underline; }
.header-top-right { display: flex; gap: 20px; align-items: center; }

.header-bottom {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}

.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-logo svg { height: 48px; width: auto; }
.logo-text { font-size: 20px; font-weight: 700; color: var(--primary); line-height: 1.1; }
.logo-text span { display: block; font-size: 10px; font-weight: 400; color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

/* NAV */
.main-nav { background: var(--primary); }
.main-nav .container { display: flex; align-items: center; }
.nav-list { display: flex; }
.nav-list > li > a {
  display: block;
  padding: 14px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { background: var(--secondary); }

.nav-cta-btn {
  margin-left: auto;
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 600;
  padding: 14px 24px !important;
}
.nav-cta-btn:hover { background: var(--accent2) !important; }

/* Hamburger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  display: block; width: 24px; height: 2px; background: var(--primary); transition: .3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1199px) {
  .hamburger-btn { display: flex; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; }
  .nav-list > li > a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-cta-btn { margin-left: 0; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--secondary); border-color: var(--secondary); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent2); border-color: var(--accent2); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-secondary { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ============ SECTIONS ============ */
.section { padding: 70px 0; }
.section-sm { padding: 40px 0; }
.section-title { font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1.2; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--gray); margin-bottom: 40px; max-width: 600px; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }
.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); }
.bg-dark-blue { background: #05304f; }
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }

/* ============ HERO ============ */
.hero-section {
  position: relative;
  min-height: 560px;
  background: var(--primary) url('../graphics/hero-bg.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,64,111,.88) 0%, rgba(8,64,111,.45) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 620px; padding: 60px 0; }
.hero-content .tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 17px;
  color: rgba(255,255,255,.88);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 767px) {
  .hero-content h1 { font-size: 34px; }
  .hero-content { padding: 40px 0; }
  .hero-section { min-height: 420px; }
}

/* ============ STATS BAR ============ */
.stats-bar { background: var(--secondary); padding: 28px 0; }
.stats-bar .row { align-items: center; }
.stat-item { text-align: center; padding: 10px 15px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 34px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 4px; }
@media (max-width: 767px) { .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); } }

/* ============ FEATURES ============ */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 30px;
  transition: box-shadow .25s, transform .25s;
}
.feature-card:hover { box-shadow: 0 8px 28px rgba(8,64,111,.12); transform: translateY(-3px); }
.feature-icon {
  width: 64px; height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--primary);
}
.feature-card h3 { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ============ ABOUT STRIP ============ */
.about-strip { gap: 0; }
.about-strip .about-img {
  background: url('../graphics/about-team.webp') center center / cover no-repeat;
  min-height: 400px;
}
.about-strip .about-content { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center; }
.about-strip .about-content h2 { font-size: 34px; font-weight: 700; color: var(--primary); margin-bottom: 16px; line-height: 1.2; }
.about-strip .about-content p { color: var(--gray); margin-bottom: 14px; line-height: 1.75; }
.about-strip .about-content .btn { margin-top: 10px; align-self: flex-start; }
@media (max-width: 991px) {
  .about-strip .about-img { min-height: 260px; }
  .about-strip .about-content { padding: 40px 24px; }
  .about-strip .about-content h2 { font-size: 26px; }
}

/* ============ COURSES ============ */
.course-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}
.course-card:hover { box-shadow: 0 8px 28px rgba(8,64,111,.14); }
.course-card .course-img {
  height: 200px;
  background: var(--light) center center / cover no-repeat;
}
.course-card .course-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.course-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.course-card h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.course-card p { font-size: 13px; color: var(--gray); line-height: 1.6; flex: 1; }
.course-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--light);
}
.course-price { font-size: 20px; font-weight: 700; color: var(--primary); }
.course-price small { font-size: 12px; font-weight: 400; color: var(--gray); display: block; }

/* ============ HOW IT WORKS ============ */
.steps-list { display: flex; flex-wrap: wrap; gap: 0; counter-reset: step; }
.step-item {
  flex: 1;
  min-width: 220px;
  padding: 0 24px 40px;
  position: relative;
  counter-increment: step;
}
.step-item::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.step-item h3 { font-size: 16px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.step-item p { font-size: 13px; color: var(--gray); line-height: 1.65; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  margin-bottom: 30px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 80px;
  color: var(--accent);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 20px; padding-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px;
}
.author-name { font-weight: 600; font-size: 14px; color: var(--primary); }
.author-role { font-size: 12px; color: var(--gray); }
.stars { color: var(--accent); font-size: 14px; margin-bottom: 6px; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--primary) url('../graphics/workshop-bg.webp') center center / cover no-repeat;
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,64,111,.82);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: 38px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ CONTACT FORM ============ */
.contact-section { background: var(--light); }
.contact-form-wrap { background: var(--white); border-radius: 6px; padding: 40px; box-shadow: 0 2px 14px rgba(0,0,0,.07); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  font-family: 'Poppins', sans-serif;
}
.form-control:focus { outline: none; border-color: var(--secondary); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: flex; gap: 20px; }
.form-row .form-group { flex: 1; }
@media (max-width: 600px) { .form-row { flex-direction: column; gap: 0; } }

.contact-info-block { padding-left: 30px; }
.contact-info-block h3 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 15px;
}
.contact-info-text strong { display: block; font-size: 13px; color: var(--primary); font-weight: 600; }
.contact-info-text span,
.contact-info-text a { font-size: 14px; color: var(--gray); }
.contact-info-text a:hover { color: var(--secondary); }

@media (max-width: 991px) {
  .contact-info-block { padding-left: 0; margin-top: 40px; }
}

/* ============ FOOTER ============ */
.site-footer { background: #0b3660; padding: 60px 0 0; color: rgba(255,255,255,.82); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-logo svg { height: 44px; }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text span { color: rgba(255,255,255,.6); }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,.7); }
.foot-title { font-size: 14px; font-weight: 700; color: var(--accent2); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 18px; }
.foot-links li { margin-bottom: 8px; }
.foot-links a { font-size: 13px; color: rgba(255,255,255,.72); transition: color .2s; }
.foot-links a:hover { color: var(--white); }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  transition: all .2s;
}
.footer-social a:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }

.footer-address li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,.72); }
.footer-address li i { color: var(--accent2); margin-top: 2px; width: 16px; flex-shrink: 0; }
.footer-address a { color: rgba(255,255,255,.72); }
.footer-address a:hover { color: var(--white); }

.footer-bottom {
  background: rgba(0,0,0,.22);
  margin-top: 40px;
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.footer-policy-links { display: flex; gap: 16px; }
.footer-policy-links a { border-right: 1px solid rgba(255,255,255,.2); padding-right: 16px; }
.footer-policy-links a:last-child { border-right: none; padding-right: 0; }

@media (max-width: 767px) {
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-policy-links { flex-wrap: wrap; justify-content: center; }
}

/* col classes for footer */
.col-footer { margin-bottom: 30px; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: var(--primary);
  padding: 50px 0;
  text-align: center;
}
.page-hero h1 { font-size: 38px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.78); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 12px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span::before { content: ' / '; }

/* ============ CONTENT SECTIONS ============ */
.content-block { padding: 60px 0; }
.content-block h2 { font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.content-block h3 { font-size: 18px; font-weight: 600; color: var(--primary); margin-bottom: 10px; margin-top: 28px; }
.content-block p { margin-bottom: 16px; color: var(--gray); line-height: 1.75; }
.content-block ul, .content-block ol { padding-left: 20px; margin-bottom: 16px; }
.content-block ul { list-style: disc; }
.content-block ol { list-style: decimal; }
.content-block li { color: var(--gray); line-height: 1.75; margin-bottom: 6px; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a2e;
  color: rgba(255,255,255,.9);
  padding: 18px 0;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--accent);
}
.cookie-banner.visible { display: block; }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 13px; line-height: 1.6; flex: 1; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3);
  padding: 9px 18px;
  font-size: 13px;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-cookie-decline:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

/* ============ MISC ============ */
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.alert { padding: 14px 20px; border-radius: 4px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* map embed */
.map-frame { width: 100%; height: 380px; border: none; border-radius: 6px; display: block; filter: grayscale(.15); }

/* info page card */
.info-card { background: var(--white); border-radius: 6px; padding: 30px; border: 1px solid var(--border); margin-bottom: 24px; }
.info-card h3 { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.info-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ============ RESPONSIVE FIXES ============ */
@media (max-width: 767px) {
  .section { padding: 44px 0; }
  .section-title { font-size: 26px; }
  .steps-list { flex-direction: column; }
  .step-item { padding-bottom: 30px; }
}

@media (max-width: 991px) {
  .col-md-3, .col-md-4, .col-lg-3, .col-lg-4 { width: 50%; }
}

@media (max-width: 575px) {
  .col-sm-6, .col-md-3, .col-md-4, .col-md-6,
  .col-lg-3, .col-lg-4, .col-lg-6 { width: 100%; }
  .col-6 { width: 100%; }
}
