/* Globální proměnné pro sekci */
:root {
  --c-dark-navy: #0e171e;
  --c-gold: #c39c5b;
  --c-gold-light: #dfc89e;
  --c-text-gray: #4a5568;
  --c-border: #f0f0f0;
}

.custom-contact-section {
max-width: 1600px;
  margin: 0 auto;
  padding: 40px 20px;

}

/* Hlavička */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}


.contact-heading {
  color: 0e171e;
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.contact-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 0;
}

.contact-separator .line {
  height: 1px;
  width: 60px;
  background-color: var(--c-gold);
}


.trumpet-emoji img{
  width: 52px;
  height: auto;
  display: block;
  display: flex;
  align-items: center;
}


.contact-desc {
  color: var(--c-text-gray);
  line-height: 1.6;
  margin: 0 auto;

}

/* Karty Layout */
.contact-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  flex: 1;
     border: 1px solid #d4af37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Hlavička karty */
.card-head {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 5px;
}

.card-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
border: 4px solid #cbbb86;
}

.card-icon.dark-bg {
  background-color: var(--c-dark-navy);
  color: var(--c-gold);
}

.card-title-wrap {
  position: relative;
  padding-top: 10px;
}

.card-topline {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--c-gold);
}

.card-subtitle {
  display: block;
  color: var(--c-gold);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
margin-bottom: -10px;
}

.card-title {
  color: var(--c-dark-navy);
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Seznam v kartě */
.contact-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--c-border);
  margin: 0 !important;
}

.list-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.list-text {
  color: var(--c-text-gray);

  line-height: 1.5;
}

.list-text a {
  color: var(--c-gold);
  text-decoration: none;
  border-bottom: 1px solid var(--c-gold-light);
  transition: all 0.3s ease;
}

.list-text a:hover {
  color: var(--c-dark-navy);
  border-bottom-color: var(--c-dark-navy);
}

/* Responzivita pro mobily */
@media (max-width: 768px) {
  .contact-cards {
    flex-direction: column;
  }
  .contact-heading {
    font-size: 32px;
  }
  .contact-card {
    padding: 30px 20px;
  }
}

/* PRO KAPELU */
.pro-kapelu-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none !important;
  width: 100%;
  margin: 30px 0;

}

.pro-kapelu-box {
  display: inline-block;
  padding: 12px 42px;
  border: 1px solid #d4af37; 
  border-radius: 14px;
  color: #d4af37;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  max-width: 90%;
  box-sizing: border-box;
font-size: 18px;
color: #0e171e;
}

.pro-kapelu-box:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
  transform: translateY(-2px);
}


/* MAPA */

.contact-map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: 420px;
  position: relative;
  overflow: hidden;

}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 900px) {

  /* GLOBAL RESET PRO MOBIL */
  .custom-contact-section {
    padding: 0px 16px;
  }

  /* NADPIS */
  .contact-heading {
    font-size: 30px;
    text-align: center;
  }

  .contact-desc {
    text-align: center;
    font-size: 15px;
    max-width: 90%;
  }

  /* CARD LAYOUT → 1 SLOUPEC */
  .contact-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .contact-card {
    width: 100%;
    max-width: 520px;
    padding: 26px 18px;
    text-align: center;
  }

  /* HLAVIČKA KARTY */
  .card-head {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .card-title-wrap {
    padding-top: 6px;
  }

  .card-topline {
    left: 50%;
    transform: translateX(-50%);
  }

  .card-subtitle {
    margin-bottom: 2px; 
    font-size: 14px;
  }

  .card-title {
    font-size: 20px;
    line-height: 1.2;
  }

  /* IKONY */
  .card-icon {
    width: 64px;
    height: 64px;
  }

  /* LIST */
  .contact-list li {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
  }

  .list-text {
    font-size: 16px;
  }

  .list-icon {
    width: 34px;
    height: 34px;
  }

  /* MAPA */
  .contact-map{
    width:100vw;
    margin:30px 0 0 0;

    height:240px;

    border-radius:0;
    overflow:hidden;

    position:relative;
    left:50%;
    transform:translateX(-50%);
  }

  .pro-kapelu-link {
    margin: 24px 0;
    padding: 0 15px;
  }

  .pro-kapelu-box {
    width: 50%;
    max-width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 10px;

  .contact-map iframe{
    width:100%;
    height:100%;
  }
}