/* ============================================
   O NÁS – ZIMERSTAV (HERO + SEKCE)
============================================ */

.about-section {
  max-width: 1680px;
  width: 100%;
  padding: 80px auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  background: #ffffff;

}

.about-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
}

/* -----------------------------------------
   HERO – široký bannerový obrázek
------------------------------------------ */
.about-hero {
  position: relative;
  width: 100%;
  max-width: 1680px;
  margin: 100px auto 0 auto; /* pod navbar */
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;

  /* ⭐ efekt oddálení obrázku */
  transform: scale(1.12);
  transform-origin: center;
}

/* Překryv */
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.40),
    rgba(0,0,0,0.65)
  );
}

.about-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: #fff;
}

.about-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fbbf24;
}

.about-hero-content p {
  font-size: 1.2rem;
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 24px;
  width: 100%;
}

.about-hero-cta {
  display: inline-block;
  background: #fbbf24;
  color: #111;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(251, 191, 36, 0.25);
  transition: 0.25s ease;
}

.about-hero-cta:hover {
  background: #ffe58f;
}

/* ================================
   ÚVOD – KDO JSME (FINÁLNÍ VERZE)
================================ */

/* Nadpisy sekcí */
.about-intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 26px;
  text-align: left;
}

/* GRID DVOJ SLOUPEC */
.about-grid-2col {
  display: grid;
  grid-template-columns: 2fr 1.3fr;  /* jemnější poměr */
  gap: 50px;
  align-items: flex-start;
  max-width: 1680px;
  width: 90%;
  margin: 0 auto;
}

/* Textový blok vlevo */
.about-intro p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.75;
  margin-bottom: 18px;
  max-width: 750px;
}

/* PRAVÝ HIGHLIGHT BOX */
.about-highlight-box {
  background: rgba(255, 200, 0, 0.06);
  border: 1px solid rgba(255, 200, 0, 0.25);
  border-radius: 14px;
  padding: 26px 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

  width: 100%;
  max-width: 480px;       /* krásná fixní šířka pro text */
  margin-left: auto;      /* zarovná doprava PERFECTLY */
  margin-top: 22px;
}

.about-highlight-box h3 {
  font-size: 1.55rem;
  margin-bottom: 18px;
  color: #111;
}

.about-highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-highlight-box li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 10px;
}


/* --------------------------
   HISTORIE – timeline
--------------------------- */

.about-history {
  background: #f7f7f7;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
}


.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.timeline-item {
  background: #fff;
  border-radius: 14px;
  padding: 25px 24px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.timeline-year {
  display: inline-block;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.timeline-item p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

/* --------------------------
   HODNOTY
--------------------------- */
.about-values .about-subtitle {
  font-size: 1.15rem;
  color: #444;
  max-width: 850px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  background: rgba(255, 200, 0, 0.06);
  border-radius: 14px;
  padding: 30px 24px;
  border: 1px solid rgba(255, 200, 0, 0.25);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #111;
}

.value-card p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

/* --------------------------
   STATISTIKY
--------------------------- */
.about-stats {
  background: #f3f3f3;
  text-align: center;
  max-width: 1680px;
  width: 100%;
  margin: 0 auto;
  }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.05rem;
  color: #333;
}

/* ============================================
   ABOUT APPROACH – CENTROVANÝ TEXT
============================================ */

/* Celá sekce střed */
.about-approach {
  text-align: center;
}

/* GRID → 1 sloupec (aby texty šly pod sebe) */
.about-approach .about-grid-2col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}

/* Odstavce ve středu */
.about-approach p {
  text-align: center !important;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.15rem;
}

/* UL – zarovnání doprostřed + vlastní tečka */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.about-list li {
  text-align: center !important;
  margin: 6px 0;
  font-size: 1.15rem;
}

/* Tečka před textem sjednocená */
.about-list li::before {
  content: "• ";
  color: #fbbf24;
  font-weight: 700;
}
/* --------------------------
   CTA – spodní část
--------------------------- */
.about-cta {
  max-width: 1680px;
  width: 100%;
  padding: 80px 20px;
  background: #111;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.about-cta-container {
  max-width: 900px;
  text-align: center;
  color: #fff;
}

.about-cta-container h2 {
  font-size: 2.4rem;
  color: #fbbf24;
  margin-bottom: 18px;
}

.about-cta-container p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 28px;
}

.about-cta-btn {
  display: inline-block;
  background: #fbbf24;
  color: #111;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 34px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(251,191,36,0.35);
  transition: 0.25s ease;
}

.about-cta-btn:hover {
  background: #ffe58f;
}

/* Nadpisy (H2) v celém about */
.about-section h2 {
  text-align: center;
  width: 100%;
}

/* Timeline položky – p a roky také na střed */
.timeline-item p,
.timeline-year {
  text-align: center;
  justify-content: center;
}

/* Hodnotové karty */
.value-card p,
.value-card h3 {
  text-align: center;
}

/* Statistiky */
.stat-card p,
.stat-number {
  text-align: center;
}

/* Přístup k projektu */
.about-list li {
  text-align: center;
  list-style: none; /* kulky zůstanou ručně vložené (•) */
}

/* ============================================
   RESPONSIVE – ABOUT PAGE
============================================ */
@media (max-width: 1200px) {

  /* HERO */
  .about-hero-img {
    height: 360px;
    transform: scale(1.08);
  }

  /* VALUES – 4 → 2 sloupce */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* STATS – 4 → 2 sloupce */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {

  /* HERO */
  .about-hero-img {
    height: 330px;
  }

  .about-hero-content h1 {
    font-size: 2.2rem;
  }

  /* GRID – stack */
  .about-grid-2col {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  /* HIGHLIGHT BOX – centrování */
  .about-highlight-box {
    transform: none !important;
    margin: 0 auto;
    max-width: 85%;
  }

  /* TIMELINE – jednokolonový */
  .timeline {
    grid-template-columns: 1fr;
  }
}
.about-section {
    max-width: 1680px;
    width: 100%;
    padding: 80px auto;
    margin: 0 auto;
    
}
@media (max-width: 768px) {

   .about-intro .about-container,
  .about-history .about-container,
  .about-values .about-container,
  .about-stats .about-container,
  .about-approach .about-container,
  .about-cta .about-container {
    width: 88%;
  }

  /* HERO */
  .about-hero {
    margin-top: 80px;
    padding-bottom: 20px;
  }

  .about-hero-img {
    height: 320px !important;
    transform: scale(1.05);
  }

  .about-hero-content {
    padding-top: 35px;
  }

   .about-hero-content h1 {
    margin-top: 18px;
    font-size: 1.9rem;
    padding-top: 15px;
    margin-bottom: 0;
    line-height: 1.2;
  }
  .about-hero-content p {
  font-size: 1rem;
  line-height: 1.2;
  
}

  .about-hero-cta {
    margin-top: 10px;
    margin-bottom: 60px;
  }

  /* ÚVOD – text */
  .about-intro p {
    width: 100%;
    max-width: 650px;
  }

  /* HIGHLIGHT BOX */
  .about-highlight-box {
    width: 85%;
    max-width: 600px;
  }

  /* STATS GRID */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* CTA */
  .about-cta {
    width: 92%;
    border-radius: 12px;
  }

  .about-cta-container {
    max-width: 92%;
  }
}
@media (max-width: 600px) {

  /* HERO */
  .about-hero-img {
    height: 280px !important;
    transform: scale(1.03);
  }

  .about-hero-content h1 {
    font-size: 1.85rem;
  }

  /* VALUES + STATS – single column */
  .values-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-highlight-box {
    width: 80%;
    margin: 0 auto;
     right: 40%;
  }
}
@media (max-width: 480px) {

  /* HERO */
  .about-hero-img {
    height: 250px !important;
  }

  .about-hero-content h1 {
    font-size: 1.65rem;
    margin-top: 25px;
  }

  .about-hero-cta {
    font-size: 1rem;
    padding: 12px 24px;
  }

  /* ÚVOD/BOX */
  .about-intro p {
    width: 100%;
  }

  .about-highlight-box {
    width: 80%;
    margin: 0 auto;
    right: 40%;
  }

  /* CTA */
  .about-cta {
    width: 94%;
  }
}

/* ============================================
   GLOBAL ABOUT SECTION STYLE – ZIMERSTAV
============================================ */
.about-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 90px 0;
  background: #ffffff;
}

.about-container {
  width: 100%;
  max-width: 1680px;
  padding: 0 20px;
  text-align: center;
  box-sizing: border-box;
}

.about-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ============================================
   NÁŠ TÝM – KARTY
============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}

.team-card {
  background: rgba(255, 200, 0, 0.06);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 200, 0, 0.25);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.team-card h3 {
  font-size: 1.6rem;
  color: #111;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.6;
}

/* ============================================
   PARTNERS – LOGA
============================================ */
.partners-logos {
  display: flex;
  justify-content: center;
  gap: 45px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partners-logos img {
  height: 70px;
  width: auto;
  transition: opacity 0.25s ease, transform 0.25s ease;
  filter: grayscale(40%);
}

.partners-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ============================================
   MISE & VIZE – 2 sloupce
============================================ */
.about-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 40px;
  text-align: left;
}

.about-grid-2col h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 15px;
}

.about-grid-2col p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.7;
}

/* ============================================
   FIREMNÍ KULTURA – REUSE VALUE GRID
============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.value-card {
  background: rgba(255, 200, 0, 0.06);
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid rgba(255,200,0,0.25);
  box-shadow: 0 12px 22px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
  text-align: left;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0,0,0,0.14);
}

.value-card h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #444;
}
/* ============================================
   SOCIAL FOLLOW SECTION
============================================ */
.social-follow {
  max-width: 1680px;
  width: 100%;
  padding: 90px 0px;
  display: flex;
  justify-content: center;
  background: #fbbf24;
 margin: 0 auto;
}

.social-container {
  width: 100%;
  max-width: 1680px;
  text-align: center;
}

.social-follow h2 {
  font-size: 2.4rem;
  color: #111;
  margin-bottom: 10px;
  font-weight: 700;
}

.social-follow p {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 40px;
}

/* BUTTON */
.social-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #d89600, #ffce00);
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}


/* ============================================
   RESPONSIVE – O NÁS SEKCE (FINAL)
============================================ */

/* 1200px ↓ */
@media (max-width: 1200px) {
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 992px ↓ */
@media (max-width: 992px) {

  .about-container {
    max-width: 90% !important;
  }

  .about-grid-2col {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-grid-2col p {
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-logos img {
    height: 60px;
  }
}

/* 768px ↓ */
@media (max-width: 768px) {

  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-card,
  .value-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-subtitle {
    width: 85%;
  }

  .partners-logos img {
    height: 55px;
  }

  .about-grid-2col {
    width: 90%;
    margin: 0 auto;
  }
}

/* 600px ↓ */
@media (max-width: 600px) {

  .team-card,
  .value-card {
    max-width: 330px;
  }

  .about-section h2 {
    font-size: 2.2rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }

  .partners-logos img {
    height: 48px;
  }
}

/* 375px ↓ */
@media (max-width: 375px) {

  .team-card,
  .value-card {
    max-width: 290px;
  }
}