/* ==============================================
   TD SYNNEX FEST 2026 – Punk theme
   Font: Arial Narrow (matches Figma "Narrow" style)
   Primary accent: #13bfd6 (cyan – zachováváme z loňska)
   ============================================== */

/* -- Google Fonts – Bebas Neue pro nadpisy, Arial Narrow jako fallback -- */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

/* -- Reset & base -- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.relative {
  position: relative;
}

:root {
  --cyan: #13bfd6;
  --dark: #0d1e1e;
  --darkbg: #111a1a;
  --black: #000000;
  --white: #ffffff;
  --gray-bg: #c8c8b8; /* světlá "papírová" sekce z Figmy */
  --font-body: Arial, "Arial Narrow", Helvetica, sans-serif;
  --font-display: "Bebas Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #444444;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--white);
  padding-top: 0; /* hero jde od úplného vrchu, navbar je overlay přes hero */
}

.webContent {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==============================================
   NAVBAR
   ============================================== */
.navbar-fest {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: flex-start; /* logo+menu visí ke spodní hraně */
  padding-bottom: 0px;
  border-bottom: none;

  /* navbar-bcg.png = nařezaný proužek z Figmy (tmavá textura nahoře,
     průhledný/splývající spodní okraj do hero fotky).
     background-size: 100% 100% natáhne přesně na výšku navbaru. */
  background-image: url("../img/navbar-bcg.png");

  background-repeat: no-repeat;
  background-position: bottom center;
  background-color: transparent; /* fallback bez obrázku */
}

@media (min-width: 720px) {
  .navbar-fest {
    height: 110px;
  }
}

.navbar-fest .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 15px 0 15px;
  max-width: 1180px;
  max-width: 1920px;
  margin: 0 auto;
}

.navbar-logo img {
  max-height: 40px;
  width: auto;
}

@media (min-width: 720px) {
  .navbar-logo img {
    max-height: 45px;
  }
}

/* Desktop menu */
.navbar-nav-desktop {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
  margin: 0;
}

@media (min-width: 992px) {
  .navbar-nav-desktop {
    display: flex;
  }
}

.navbar-nav-desktop li a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.25s;
  line-height: 45px;
}

.navbar-nav-desktop li a:hover {
  color: var(--cyan);
}
/*
.navbar-nav-desktop li a.nav-btn-registrace {
  background-color: var(--cyan);
  color: var(--black);
  padding: 9px 22px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s;
}

.navbar-nav-desktop li a.nav-btn-registrace:hover {
  background-color: #0fa8be;
  color: var(--black);
}*/

/* Hamburger */
.navbar-toggler {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1100;
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

.navbar-toggler span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}

.navbar-toggler.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler.open span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 18, 18, 0.98);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.imgCenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 0;
  margin-bottom: 40%;
}

.mobile-menu ul li {
  margin: 0 0 22px 0;
}

.mobile-menu ul li a {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--cyan);
}

.mobile-menu ul li a.mobile-btn-reg {
  display: inline-block;
  background-color: var(--cyan);
  color: var(--black);
  padding: 12px 40px;
  border-radius: 5px;
  margin-top: 10px;
}

/* ==============================================
   HERO – header s bannerem
   ============================================== */
.section-hero {
  position: relative;
  background-color: var(--darkbg);
  overflow: hidden;
  /* Hero jde od úplného vrchu stránky (body padding-top = 0).
     Navbar leží jako fixed overlay přes horní část hero obrázku. */
  margin-top: 60px;
  padding-top: 0;
}

/* Placeholder pro obrázek – desktop */
.hero-img-desktop {
  width: 100%;
  display: none;
}

/* Placeholder pro obrázek – mobile */
.hero-img-mobile {
  width: 100%;
  display: block;
}

@media (min-width: 992px) {
  .hero-img-desktop {
    display: block;
  }
  .hero-img-mobile {
    display: none;
  }
}

/* Fallback placeholder pokud obrázek chybí */
.hero-placeholder {
  background-color: #1a2e2e;
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: top center;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .hero-placeholder {
    min-height: 700px;
  }
}

/* ==============================================
   SEKCE – INTRO TEXT (šedá / papírová sekce)
   ============================================== */
.section-intro {
  background-color: #003031;
  position: relative;
  overflow: hidden;
}

.section-intro .intro-bg {
  background-image: url("../img/bcg-intro2.jpg");
  background-size: cover;
  background-position: center;
  padding: 60px 0 0 0;
}

@media (min-width: 992px) {
  .section-intro .intro-bg {
    padding: 80px 0 90px;
    padding: 80px 0 40px 0;
  }
}

.intro-paper {
  /* "papírový" efekt z Figmy */
  /*background-color: rgba(200, 200, 184, 0.92);*/
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 30px 50px;
  padding: 20px 15px;
  position: relative;
}

@media (min-width: 768px) {
  .intro-paper {
    padding: 50px 60px 60px;
  }
}

.intro-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
  /* Efekt "písmo na černém štítku" z Figmy */
  background-color: var(--black);
  color: var(--white);
  display: inline-block;
  padding: 4px 16px;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .intro-title {
    font-size: 36px;
  }
}

.intro-title-wrap {
  text-align: center;
  margin-bottom: 8px;
}

.intro-subtitle {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
  text-align: center;
  text-transform: none;
  margin-bottom: 30px;
  /* druhý řádek – podtržení tužkou z Figmy */
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 4px;
}

.intro-text {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--black);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 22px;
  /* Figma: Narrow, weight 400, size ~22px */
  font-stretch: condensed;
}

@media (min-width: 768px) {
  .intro-text {
    font-size: 22px;
  }
}

.intro-text strong {
  color: var(--black);
  font-weight: 700;
}

/* Odkaz REGISTRACE – černý pill s bílým textem (z Figmy) */
.btn-registrace {
  margin: 0 auto;
  display: block;
  width: 300px;
  height: 150px;
  line-height: 180px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-image: url("../img/button-registrace.png");
  background-size: 300px 150px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .btn-registrace {
    width: 352px;
    height: 176px;
    line-height: 206px;
    background-size: auto;
  }
}

.btn-registrace:hover {
  color: var(--cyan);
}

.intro-tagline {
  font-size: 16px;
  color: var(--black);
  text-align: center;
  margin-top: 30px;
  line-height: 1.6;
}

/* ==============================================
   SEKCE – PROGRAM (tmavá textura)
   ============================================== */
.section-program {
  background-color: var(--darkbg);
  background-image: url("../img/mobile-bcg-program2.jpg");
  background-size: 1500px;
  background-position: top center;
  padding: 170px 0 50px 0;
}

@media (min-width: 768px) {
  .section-program {
    background-color: var(--darkbg);
    background-image: url("../img/bcg-program3.jpg");
    background-size: cover;
    background-size: auto;
    background-position: top center;
    padding: 280px 0 150px 0;
  }
}

.section-heading {
  /* Oval/elipsa s textem – z Figmy */
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-size: 25px;

  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 18px 48px;
  border: 3px solid var(--cyan);
  border-radius: 50%;
  margin-bottom: 50px;
}

/* Dvojitá elipsa (z Figmy – dvě čáry okolo textu) */
.section-heading::after {
  content: "";
  position: absolute;
  inset: -8px -12px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  opacity: 0.5;
}

.section-heading-wrap {
  text-align: center;
}

/* Černý "páska" box za nadpisem */
.program-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 20px 50px;
  text-align: center;
}

@media (min-width: 768px) {
  .program-inner {
    padding: 50px 60px 60px;
  }
}

.program-time {
  font-size: 26px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .program-time {
    font-size: 23px;
    font-weight: 700;
    color: var(--white);

    margin-top: 40px;
  }
}

.program-time:first-child {
  margin-top: 0;
}

.program-desc {
  font-size: 14px;
  color: var(--white);
  line-height: 1.45;
  /* Figma: Narrow, weight 400, size 20px */
  font-stretch: condensed;
}

@media (min-width: 768px) {
  .program-desc {
    font-size: 20px;
    font-size: 18px;
    line-height: 1.55;
  }
}

/* ==============================================
   SEKCE – PARTNEŘI (bílé pozadí)
   ============================================== */
.section-partneri {
  background-color: var(--white);
  padding: 70px 0 80px;
}

.partneri-heading {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--cyan);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

/* nadpis úrovně kategorie (Titulární, Zlatí, …) */
.partner-cat-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cyan);
  text-align: center;
  text-transform: none;
  margin-top: 50px;
  margin-bottom: 25px;
}

/* Wrapper log – flex, zarovnání na střed */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 40px;
  max-width: 1040px;
  margin: 0 auto;
}

.partner-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: opacity 0.2s;
}

.partner-logos img:hover {
  opacity: 0.8;
}

/* Titulární – větší loga */
.partner-logos.titularni img {
  max-height: 80px;
}

/* Zlatí */
.partner-logos.zlaty img {
  max-height: 70px;
}

/* ==============================================
   SEKCE – KONTAKT (tmavá textura)
   ============================================== */
.section-kontakt {
  background-color: White;
  /*background-image: url("../img/bcg-kontakt.jpg"); */
  /*background-size: cover;*/
  background-position: top center;
  background-repeat: no-repeat;
  padding: 70px 0 80px;
  padding: 50px 0;
}

.section-kontakt2 {
  background-image: url("../img/mobile-bcg-kontakt2.jpg");
}

@media (min-width: 992px) {
  .section-kontakt2 {
    background-image: url("../img/bcg-kontakt2.jpg");
  }
}

.kontakt-inner {
  /*background-color: rgba(0, 0, 0, 0.6);*/
  /*padding: 40px 20px;
  max-width: 1100px;*/
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .kontakt-inner {
    padding: 50px 40px;
  }
}

.kontakt-block h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: Black;
  margin-bottom: 10px;
}

.kontakt-block p,
.kontakt-block address {
  font-size: 15px;
  line-height: 1.7;
  font-style: normal;
  color: Black;
}

.kontakt-block a {
  color: #538185;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kontakt-block a:hover {
  text-decoration: none;
}

/* Mapa */
.map-responsive {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden;
  border: 1px solid rgba(19, 191, 214, 0.3);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background-color: #144041;

  background-image: url("../img/footer-bcg.png");
  background-position: top center;
  background-repeat: no-repeat;
  padding: 24px 15px;
  text-align: center;
  font-size: 13px;
  color: White;
  position: relative;
  margin-top: -15px;
}

/* ==============================================
   HELPERS
   ============================================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 1280px) {
  .container {
    max-width: 1180px;
  }
}

.text-center {
  text-align: center;
}

.section-divider {
  width: 100%;
  display: block;
  line-height: 0;
  overflow: hidden;
  border: 1px solid red;
}

.section-divider img {
  width: 100%;
  display: block;
}

.title {
  margin: 0 auto;
}

.title1 {
  background-image: url("../img/title-bcg1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 300px 124px;
  width: 300px;
  height: 124px;
  color: White;
  font-size: 22px;
  text-align: center;

  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .title1 {
    background-image: url("../img/title-bcg1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
    width: 403px;
    height: 166px;
    color: White;
    font-size: 22px;
    text-align: center;
  }
}

.titleProgram {
  text-transform: uppercase;
  margin: 0 auto;
  background-image: url("../img/program-title-bcg.png");
  background-position: center;
  background-repeat: no-repeat;
  width: 250px;
  height: 96px;
  line-height: 96px;
  color: White;
  font-size: 22px;
  text-align: center;
}

.titlePartneri {
  text-transform: uppercase;
  margin: 0 auto;
  background-image: url("../img/partneri-title-bcg.png");
  background-position: center;
  background-repeat: no-repeat;
  width: 250px;
  height: 96px;
  line-height: 96px;
  color: #73bcd3;
  font-size: 22px;
  text-align: center;
}

.titleKontakt {
  text-transform: uppercase;
  margin: 0 auto;
  background-image: url("../img/kontakt-title-bcg.png");
  background-position: center;
  background-repeat: no-repeat;
  width: 250px;
  height: 67px;
  line-height: 67px;
  color: White;
  font-size: 22px;
  text-align: center;
}

.titleKontakt2 {
  color: black;
}

.nav-btn-registrace {
  position: relative;
}

.nav-btn-registrace span {
  position: absolute;
  display: block;
  top: 15px;
  left: -25px;
  width: 135px;
  height: 23px;
  background-image: url("../img/top-registrace.png");
  background-position: center;
  background-repeat: no-repeat;
}

.dividerProgram {
  position: relative;
  margin-top: -80px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .dividerProgram {
    margin-top: -100px;
  }
}

.dividerProgram img {
  margin: 0 auto;
}

.subtitlePartneri {
  color: #73bcd3;
  font-size: 18px;
  text-align: center;
}

.kontaktText,
.kontaktText em {
  color: Black;
  font-size: 15px;
}

.kontaktText a {
  font-size: 15px;
}

ul.kontaktText {
  padding-left: 15px;
  max-width: 400px;
  margin-left: auto;
  margin-right: AUTO;
}

.lepitko {
  width: 334px;
  height: 119px;

  width: 167px;
  height: 59.5px;
  z-index: 10;
  background-image: url("../img/lepitko.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50px;
  left: 710px;

  top: -25px;
  left: 50px;
}

@media (min-width: 768px) {
  .lepitko {
    left: 50px;
  }
}

@media (min-width: 1200px) {
  .lepitko {
    width: 334px;
    height: 119px;
    top: -50px;
    left: 100px;
  }
}

.linkMapa {
  color: #13bfd6;
}

.navbar-toggler {
  z-index: 1200; /* bylo 1100, menu má 1050 – toto stačí */
}
