/* ============================================================
   ZIMERSTAV – CONTACT PAGE (FINAL PREMIUM 2025)
   Používá TVOJE nové classy: ct-section, ct-container, ct-…
============================================================ */

/* ------------------------------
   WRAPPER KONTAKTNÍ SEKCE
------------------------------- */
.ct-section {
  width: 100%;
  padding: 90px 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.ct-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  text-align: center;
}

/* ------------------------------
   NADPIS H1
------------------------------- */
.ct-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 60px;
}

/* ============================================================
   FORMULÁŘ – PRÉMIOVÝ DESIGN
============================================================ */
.ct-form-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 80px;

  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,200,0,0.25);

  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.ct-form-title {
  font-size: 2.2rem;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 25px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ct-form-row {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* INPUTY */
.ct-form input,
.ct-form textarea {
  width: 60%;
  margin: 0 auto;
  padding: 14px 16px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,200,0,0.35);
  border-radius: 10px;
  color: #fff;

  font-size: 1.15rem;
  text-align: center;
}

/* TEXTAREA */
.ct-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* BUTTON */
.ct-btn {
  width: 60%;
  margin: 0 auto;
  padding: 16px 32px;

  background: #fbbf24;
  color: #111;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;

  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 10px 28px rgba(251,191,36,0.25);
}

.ct-btn:hover {
  background: #ffe58f;
}

/* ============================================================
   DIRECTORS GRID
============================================================ */
.ct-directors-grid {
  width: 100%;
  max-width: 1200px;
  margin: 60px auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}

.ct-director-card {
  max-width: 400px;
  padding: 35px 28px;

  background: rgba(255,200,0,0.06);
  border: 1px solid rgba(255,200,0,0.25);
  border-radius: 14px;
  backdrop-filter: blur(14px);

  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: 0.25s;
  margin: 0 auto;
}

.ct-director-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}

.ct-director-card h2 {
  margin-bottom: 16px;
  font-size: 1.55rem;
  font-weight: 700;
  color: #111;
}

/* ------------------------------------------------------------
   ODKAZY – čistá hnědá + zlatý hover, bez podtržení
------------------------------------------------------------ */
.ct-director-card a {
  color: #b37a00;              /* prémiová hnědá */
  font-weight: 600;
  text-decoration: none;       /* odstranění underline */
  transition: color 0.25s ease;
}

.ct-director-card a:hover {
  color: #fbbf24;              /* zlatý hover */
  text-decoration: none;       /* jistota */
}

/* ============================================================
   FULL CONTACT INFO BOX
============================================================ */
.ct-info-box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 30px;

  background: rgba(255,200,0,0.06);
  border: 1px solid rgba(255,200,0,0.25);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);

  text-align: center;
  transition: 0.25s;
}

.ct-info-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}

/* LOGO UVNITŘ */
.ct-logo-group {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ct-logo {
  width: 160px;
}

.ct-logo-text {
  color: #fbbf24;
  font-size: 2rem;
  font-weight: 700;
}
/* ============================================================
   FULL CONTACT INFO BOX – odkazy (email, tel)
============================================================ */

.ct-info-box a {
  color: #b37a00;              /* prémiová hnědá */
  font-weight: 600;
  text-decoration: none;       /* bez podtržení */
  transition: color 0.25s ease;
}

.ct-info-box a:hover {
  color: #fbbf24;              /* zlatý hover */
  text-decoration: none;       /* jistota */
}

/* ============================================
   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 BREAKPOINTS – FINAL VERSION (NO VISUAL CHANGE)
============================================================ */

/* TABLET 992px */
@media (max-width: 992px) {
  .ct-directors-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* MOBILE 600px — zachováno přesně tak, jak to máš */
@media (max-width: 600px) {

  /* Form wrapper — záměrně užší a posunutý doprava,
     protože v kombinaci s containerem je výsledně centrovaný */
  .ct-form-wrapper {
    width: 60%;
    margin: 0 auto;
    margin-right: 50px;
  }

  /* Director cards + info box — stejné chování */
  .ct-director-card,
  .ct-info-box {
    width: 70%;
    margin: 0 auto;
    margin-right: 44px;
  }

  /* Inputs — full width uvnitř formuláře */
  .ct-form input,
  .ct-form textarea,
  .ct-btn {
    width: 90%;
    margin: 0 auto;
  }
}

/* SMALL MOBILE 480px */
@media (max-width: 480px) {
  .ct-title {
    font-size: 1.9rem;
  }
}

/* MICRO MOBILE 375px */
@media (max-width: 375px) {
  .ct-title {
    font-size: 1.6rem;
  }
}