/* RedeFeder Hamburg — bold-sky-429.css */

/* ──────────────────── GOOGLE FONTS ──────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;600;700&display=swap');

/* ──────────────────── VARIABLES ──────────────────── */
:root {
  --color-primary:   #2C3031;
  --color-secondary: #54595F;
  --color-text:      #7A7A7A;
  --color-accent:    #ED1C24;
  --color-bg:        #ffffff;
  --color-gray-bg:   #f5f5f5;
  --color-white:     #ffffff;
  --font-main:       'Raleway', sans-serif;
  --container-max:   1140px;
  --radius:          3px;
  --transition:      0.3s ease;
}

/* ──────────────────── RESET ──────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

/* ──────────────────── UTILITY ──────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.bg-gray { background: var(--color-gray-bg); }
.bg-dark { background: var(--color-primary); color: var(--color-white); }
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  line-height: 1;
  text-align: center;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--color-secondary);
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.7;
}
.section-subtitle.left { margin-left: 0; }

/* ──────────────────── HEADER ──────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid #e8e8e8;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo img,
.site-logo svg { width: 160px; height: auto; }
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--color-accent); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  position: relative;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a:hover { color: var(--color-accent); }

.nav-cta { margin-left: 8px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--color-white);
    border-top: 1px solid #e8e8e8;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid #f0f0f0; }
  .main-nav a::after { display: none; }
  .nav-cta { margin: 16px 0 0; }
}

/* ──────────────────── HERO ──────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--color-primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../svg/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.hero-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--color-accent); }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ──────────────────── STATS STRIP ──────────────────── */
.stats-strip {
  background: var(--color-accent);
  padding: 30px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: var(--color-white); }
.stat-number {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; opacity: 0.9; font-weight: 500; }
@media (max-width: 680px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ──────────────────── ABOUT STRIP ──────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }

.about-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.about-text p:last-of-type { margin-bottom: 28px; }
@media (max-width: 800px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-split.reverse { direction: ltr; }
}

/* ──────────────────── COURSES ──────────────────── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.course-card {
  background: var(--color-white);
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.course-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.course-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.course-card-body { padding: 24px; }
.course-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.course-card-body p { font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.course-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.course-price span { font-size: 14px; color: var(--color-text); font-weight: 400; }
@media (max-width: 900px) {
  .courses-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .courses-grid { grid-template-columns: 1fr; }
}

/* ──────────────────── HOW IT WORKS ──────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
.step-item {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-item h3 { font-size: 17px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.step-item p { font-size: 14px; line-height: 1.6; }
@media (max-width: 800px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ──────────────────── WHY US ──────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 32px 26px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-white);
}
.why-card i {
  font-size: 28px;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.why-card p { font-size: 14px; line-height: 1.65; }
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .why-grid { grid-template-columns: 1fr; } }

/* ──────────────────── TESTIMONIALS ──────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--color-white);
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 30px;
}
.review-stars { color: #f5a623; font-size: 14px; margin-bottom: 14px; }
.review-text { font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { font-size: 14px; font-weight: 600; color: var(--color-primary); }
.review-role { font-size: 13px; color: var(--color-text); }
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ──────────────────── FAQ ──────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e4e4e4; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 40px 22px 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question i {
  color: var(--color-accent);
  font-size: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-secondary);
}
.faq-item.open .faq-answer { display: block; }

/* ──────────────────── CTA BAND ──────────────────── */
.cta-band {
  background: var(--color-primary);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; color: var(--color-white); margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 34px; }

/* ──────────────────── CONTACT ──────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 14px; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-detail i {
  color: var(--color-accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 14px; color: var(--color-secondary); margin-bottom: 2px; }
.contact-detail span { font-size: 15px; color: var(--color-primary); font-weight: 500; }

.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-size: 14px; font-weight: 600; color: var(--color-primary); margin-bottom: 6px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 16px;
  color: rgba(0,0,0,0.7);
  background: var(--color-white);
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-accent);
}
.contact-form textarea { height: 140px; resize: vertical; }

@media (max-width: 800px) { .contact-split { grid-template-columns: 1fr; gap: 40px; } }

/* ──────────────────── INNER PAGE HERO ──────────────────── */
.page-hero {
  background: var(--color-primary);
  padding: 60px 0 50px;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 6px; }

/* ──────────────────── COMPANY PAGE ──────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}
.team-card h3 { font-size: 17px; font-weight: 700; color: var(--color-primary); margin-bottom: 4px; }
.team-card span { font-size: 14px; color: var(--color-accent); font-weight: 600; }
.team-card p { font-size: 14px; margin-top: 8px; line-height: 1.6; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ──────────────────── LEGAL PAGES ──────────────────── */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 20px; font-weight: 700; color: var(--color-primary); margin: 36px 0 12px; }
.legal-content h3 { font-size: 17px; font-weight: 600; color: var(--color-primary); margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { margin-bottom: 8px; line-height: 1.7; list-style: disc; }

/* ──────────────────── FOOTER ──────────────────── */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo-text { color: var(--color-white); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-contact-item i { color: var(--color-accent); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom-links a:hover { color: var(--color-accent); }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .footer-bottom { flex-direction: column; text-align: center; } }

/* ──────────────────── COOKIE BANNER ──────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding: 20px 0;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--color-accent);
}
#cookie-banner.visible { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 14px; line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-inner p a { color: var(--color-accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
}
#cookie-accept {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
#cookie-accept:hover { background: transparent; color: var(--color-accent); }
#cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.35);
}
#cookie-decline:hover { border-color: rgba(255,255,255,0.75); color: var(--color-white); }

/* ──────────────────── MAP PLACEHOLDER ──────────────────── */
.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--color-gray-bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ──────────────────── MISC ──────────────────── */
.success-msg {
  background: #e6f9ed;
  border: 1px solid #52c77f;
  color: #1a7a3a;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  display: none;
  margin-top: 16px;
}
.error-msg {
  background: #fdecea;
  border: 1px solid #e66;
  color: #c0392b;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 15px;
  display: none;
  margin-top: 16px;
}
.required-note { font-size: 13px; color: var(--color-text); margin-bottom: 16px; }
.required-note span { color: var(--color-accent); }

/* ──────────────────── RESPONSIVE ──────────────────── */
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
}
