/* =========================================================
   ZÁKLAD
   ========================================================= */

:root {
  --gold: #C9A34A;
  --black: #000000;
  --white: #FFFFFF;

  --max-width: 1180px;

  --font-text:
    "Lato",
    Arial,
    sans-serif;

  --font-heading:
    "Playfair Display",
    Georgia,
    serif;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;

  background: var(--black);
  color: var(--white);

  font-family: var(--font-text);

  font-size: 16px;
  line-height: 1.65;
}


img {
  display: block;

  max-width: 100%;
}


a {
  color: inherit;

  text-decoration: none;

  -webkit-tap-highlight-color: transparent;
}


.container {
  width: min(
    calc(100% - 48px),
    var(--max-width)
  );

  margin-inline: auto;
}


/* =========================================================
   HLAVIČKA
   ========================================================= */

.site-header {
  position: relative;

  z-index: 1000;

  width: 100%;

  background: var(--black);
}


.navbar {
  position: relative;

  width: 100%;

  min-height: 76px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding:
    0
    28px;

  background: var(--black);
}


.brand {
  display: flex;

  align-items: center;

  gap: 13px;

  color: var(--white);

  font-size: 24px;

  white-space: nowrap;
}


.brand:hover,
.brand:focus {
  color: var(--gold);
}


.brand-icon {
  width: 48px;
  height: 48px;

  flex:
    0
    0
    48px;

  object-fit: contain;
}


/* =========================================================
   NAVIGACE
   ========================================================= */

.nav-links {
  display: flex;

  align-items: center;

  gap: 36px;
}


.nav-links a {
  display: block;

  color: var(--white);

  font-size: 17px;

  font-weight: 400;
}


.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: var(--gold);
}


.nav-links a.active {
  font-weight: 700;
}


/* =========================================================
   MOBILNÍ MENU
   ========================================================= */

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  padding: 8px;

  border: 0;

  background: var(--black);

  cursor: pointer;
}


.menu-toggle span {
  display: block;

  width: 26px;
  height: 2px;

  margin: 5px auto;

  background: var(--gold);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height: 470px;

  overflow: hidden;

  background-image:
    url("../assets/hero/hero.jpg");

  background-position:
    center 45%;

  background-size: cover;

  background-repeat: no-repeat;
}


.hero-overlay {
  position: absolute;

  inset: 0;

  background: var(--black);

  opacity: 0.46;
}


.hero-content {
  position: absolute;

  z-index: 2;

  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  padding:
    30px
    24px;
}


.hero-logo {
  width: clamp(
    250px,
    28vw,
    430px
  );

  max-height: 280px;

  object-fit: contain;
}


.hero-page {
  min-height: 390px;
}


.page-hero-title {
  margin: 0;

  color: var(--gold);

  font-family: var(--font-heading);

  font-size: clamp(
    50px,
    7vw,
    82px
  );

  font-weight: 500;

  line-height: 1;

  text-align: center;
}


/* =========================================================
   SEKCE
   ========================================================= */

.section {
  padding:
    76px
    0;
}


.section-dark {
  background: var(--black);

  color: var(--white);
}


.section-light {
  background: var(--white);

  color: var(--black);
}


.section-label {
  margin-bottom: 42px;

  color: var(--gold);

  font-family: var(--font-text);

  font-size: 16px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* =========================================================
   TYPOGRAFIE
   ========================================================= */

.section-big-title,
.feature-title,
.program-card h3,
.about-intro-title,
.member-name,
.repertoire-intro-title,
.repertoire-title,
.concert-item-date,
.concert-item-title {
  font-family: var(--font-heading);
}


.section-big-title {
  margin:
    0
    0
    22px;

  color: var(--gold);

  font-size: clamp(
    28px,
    3vw,
    38px
  );

  font-weight: 500;

  line-height: 1.18;
}


.feature-title {
  margin:
    0
    0
    20px;

  color: var(--white);

  font-size: clamp(
    30px,
    3.5vw,
    42px
  );

  font-weight: 500;

  line-height: 1.15;
}


p {
  margin:
    0
    0
    18px;
}


.block-subtitle {
  margin-bottom: 15px;

  color: var(--gold);

  font-family: var(--font-heading);

  font-size: 21px;

  line-height: 1.3;
}


/* =========================================================
   TLAČÍTKA
   ========================================================= */

.button,
.button-gold,
.button-outline,
.button-outline-gold {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding:
    12px
    24px;

  border:
    1px solid
    var(--gold);

  background: var(--gold);

  color: var(--black);

  font-size: 13px;

  font-weight: 700;

  text-transform: uppercase;

  cursor: pointer;
}


.button:hover,
.button:focus,
.button-gold:hover,
.button-gold:focus,
.button-outline:hover,
.button-outline:focus,
.button-outline-gold:hover,
.button-outline-gold:focus {
  background: transparent;

  color: var(--gold);
}


.text-link {
  color: var(--gold);

  font-size: 14px;

  font-weight: 700;
}


.text-link:hover,
.text-link:focus {
  text-decoration: underline;
}


.button-row {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 28px;
}


/* =========================================================
   HOMEPAGE – NEJBLIŽŠÍ KONCERT
   ========================================================= */

.concert-feature {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(300px, 1.05fr);

  gap: 70px;

  align-items: center;
}


.concert-date {
  margin-bottom: 10px;

  color: var(--gold);

  font-family: var(--font-heading);

  font-size: clamp(
    32px,
    4vw,
    45px
  );

  line-height: 1.15;
}


.concert-meta {
  margin-top: 25px;
}


.concert-meta-row {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 12px;
}


.concert-meta-row span {
  color: var(--white);

  font-size: 17px;
}


.meta-icon {
  width: 20px;
  height: 20px;

  flex:
    0
    0
    20px;

  fill: none;

  stroke: var(--gold);

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.concert-feature-image {
  width: 100%;

  display: flex;

  align-items: center;
  justify-content: center;
}


.home-concert-image-link {
  display: flex;

  width: 100%;

  align-items: center;
  justify-content: center;
}


.concert-image {
  display: block;

  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 620px;

  object-fit: contain;
}


.concert-image.is-landscape {
  width: 100%;

  max-height: 520px;
}


.concert-image.is-portrait {
  width: auto;

  max-width: min(
    100%,
    440px
  );

  max-height: 650px;
}


.concert-image.is-square {
  width: 100%;

  max-width: 520px;
  max-height: 520px;
}


.home-concert-title-link {
  color: var(--white);
}


.home-concert-title-link:hover,
.home-concert-title-link:focus {
  color: var(--gold);
}


.concert-home-loading,
.concert-home-empty {
  grid-column:
    1
    /
    -1;

  color: var(--white);

  font-size: 16px;
}


.concert-feature-empty,
.concert-feature-empty-image {
  grid-template-columns: 1fr;
}


/* =========================================================
   HOMEPAGE – O NÁS
   ========================================================= */

.split-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 0.9fr);

  gap: 70px;

  align-items: center;
}


.split-image img {
  width: 100%;

  height: auto;

  object-fit: contain;
}


.split-content {
  max-width: 520px;
}


/* =========================================================
   PROGRAMY
   ========================================================= */

.program-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap:
    44px
    34px;
}


.program-card {
  display: block;

  color: var(--white);

  border-bottom:
    1px solid
    var(--gold);

  cursor: pointer;
}


.program-card img {
  width: 100%;

  height: auto;

  object-fit: contain;
}


.program-card-content {
  padding:
    24px
    4px
    30px;
}


.program-card h3 {
  margin:
    0
    0
    8px;

  color: var(--gold);

  font-size: 27px;

  font-weight: 500;

  line-height: 1.2;
}


.program-card p {
  color: var(--white);
}


.program-card:hover h3,
.program-card:focus h3 {
  text-decoration: underline;

  text-underline-offset: 5px;
}


/* =========================================================
   POSLECH
   ========================================================= */

.listen-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(0, 0.85fr);

  gap: 70px;

  align-items: center;
}


.video-wrapper {
  position: relative;

  width: 100%;

  aspect-ratio:
    16
    /
    9;

  background: var(--black);
}


.video-wrapper iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}


/* =========================================================
   KONTAKT HOMEPAGE
   ========================================================= */

.section-contact-home {
  padding-bottom: 70px;
}


.contact-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(320px, 0.85fr);

  gap: 70px;

  align-items: center;
}


.contact-image img {
  width: 100%;

  height: auto;

  object-fit: contain;
}


.contact-content {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}


.contact-content-dark {
  color: var(--white);
}


.contact-row {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 18px;

  font-size: 17px;
}


.contact-row-dark {
  color: var(--white);
}


.contact-row:hover,
.contact-row:focus {
  color: var(--gold);
}


.contact-row img {
  width: 21px;
  height: 21px;

  flex:
    0
    0
    21px;

  object-fit: contain;
}


.socials {
  display: flex;

  align-items: center;

  gap: 18px;

  margin:
    12px
    0
    28px;
}


.socials img {
  width: 24px;
  height: 24px;

  object-fit: contain;
}


/* =========================================================
   O NÁS
   ========================================================= */

.about-intro {
  padding:
    72px
    0
    0;

  background: var(--black);

  color: var(--white);
}


.about-intro-content {
  max-width: 1040px;

  margin:
    0
    auto;

  padding-bottom: 62px;

  border-bottom:
    1px solid
    var(--gold);

  text-align: center;
}


.about-intro-title {
  margin:
    0
    0
    28px;

  color: var(--gold);

  font-size: clamp(
    36px,
    4.4vw,
    54px
  );

  font-weight: 500;
}


.about-intro-content p {
  max-width: 930px;

  margin:
    0
    auto;

  color: var(--white);

  font-size: 18px;

  line-height: 1.8;
}


.member-section {
  padding:
    86px
    0;
}


.member-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 80px;

  align-items: center;
}


.member-layout-reverse
.member-photo {
  order: 2;
}


.member-layout-reverse
.member-content {
  order: 1;
}


.member-photo {
  display: flex;

  align-items: center;
  justify-content: center;
}


.member-photo img {
  width: auto;
  height: auto;

  max-width: 100%;
  max-height: 620px;

  object-fit: contain;
}


.member-content {
  max-width: 580px;
}


.member-voice {
  margin-bottom: 8px;

  color: var(--gold);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.member-name {
  margin:
    0
    0
    28px;

  color: var(--gold);

  font-size: clamp(
    40px,
    5vw,
    59px
  );

  font-weight: 500;
}


.member-content p {
  margin-bottom: 20px;

  font-size: 17px;

  line-height: 1.76;
}


.section-dark
.member-content p {
  color: var(--white);
}


.section-light
.member-content p {
  color: var(--black);
}


.about-ending {
  padding:
    72px
    0
    68px;
}


.about-ending-content {
  max-width: 720px;
}


.about-ending-content p {
  color: var(--white);
}


/* =========================================================
   REPERTOÁR
   ========================================================= */

.repertoire-intro {
  padding:
    72px
    0
    74px;

  background: var(--black);

  color: var(--white);
}


.repertoire-intro-content {
  max-width: 960px;

  margin:
    0
    auto;

  text-align: center;
}


.repertoire-intro-title {
  margin:
    0
    0
    28px;

  color: var(--gold);

  font-size: clamp(
    38px,
    4.5vw,
    56px
  );
}


.repertoire-intro-content p {
  max-width: 900px;

  margin:
    0
    auto
    21px;

  color: var(--white);

  font-size: 18px;

  line-height: 1.8;
}


.repertoire-section {
  padding:
    90px
    0;
}


.repertoire-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);

  gap: 80px;

  align-items: center;
}


.repertoire-layout-reverse
.repertoire-image {
  order: 2;
}


.repertoire-layout-reverse
.repertoire-content {
  order: 1;
}


.repertoire-image img {
  width: 100%;

  height: auto;

  max-height: 620px;

  object-fit: contain;
}


.repertoire-content {
  max-width: 590px;
}


.repertoire-kicker {
  margin-bottom: 8px;

  color: var(--gold);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


.repertoire-title {
  margin:
    0
    0
    10px;

  color: var(--gold);

  font-size: clamp(
    36px,
    4.4vw,
    54px
  );
}


.repertoire-subtitle {
  margin-bottom: 28px;

  color: var(--gold);

  font-family: var(--font-heading);

  font-size: 21px;
}


.repertoire-content p {
  font-size: 17px;

  line-height: 1.76;
}


.section-dark
.repertoire-content p {
  color: var(--white);
}


.section-light
.repertoire-content p {
  color: var(--black);
}


/* =========================================================
   STRÁNKA KONCERTY
   ========================================================= */

.concerts-page {
  background: var(--black);
}


.concerts-section {
  padding:
    70px
    0
    84px;
}


.concert-item {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.95fr);

  gap: 68px;

  align-items: center;

  padding:
    38px
    0
    52px;

  border-bottom:
    1px solid
    var(--gold);
}


.concert-item:first-child {
  padding-top: 0;
}


.concert-item-no-image {
  grid-template-columns: 1fr;
}


.concert-item-content {
  max-width: 610px;
}


.concert-item-date {
  margin-bottom: 11px;

  color: var(--gold);

  font-size: clamp(
    32px,
    3.8vw,
    45px
  );
}


.concert-item-title {
  margin:
    0
    0
    25px;

  color: var(--white);

  font-size: clamp(
    27px,
    3vw,
    36px
  );

  font-weight: 500;
}


.concert-item-title-link {
  color: var(--white);
}


.concert-item-title-link:hover,
.concert-item-title-link:focus {
  color: var(--gold);
}


.concert-meta-icon {
  width: 18px;
  height: 18px;

  flex:
    0
    0
    18px;

  fill: none;

  stroke: var(--gold);

  stroke-width: 1.8;

  stroke-linecap: round;

  stroke-linejoin: round;
}


.concert-item-media {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 100%;
}


.concert-image-link {
  display: flex;

  width: 100%;

  align-items: center;
  justify-content: center;
}


.concert-item-media img {
  width: auto;
  height: auto;

  max-width: 100%;

  object-fit: contain;
}


.concert-item-media.is-landscape
img {
  width: 100%;

  max-height: 510px;
}


.concert-item-media.is-portrait
img {
  width: auto;

  max-width: min(
    100%,
    430px
  );

  max-height: 650px;
}


.concert-item-media.is-square
img {
  width: 100%;

  max-width: 510px;
  max-height: 510px;
}


.concert-item-past {
  opacity: 0.9;
}


/* =========================================================
   ARCHIV
   ========================================================= */

.concert-archive-wrapper {
  margin-top: 58px;
}


.concert-archive summary {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-bottom: 22px;

  border-bottom:
    1px solid
    var(--gold);

  color: var(--gold);

  font-size: 15px;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  list-style: none;

  cursor: pointer;
}


.concert-archive summary::-webkit-details-marker {
  display: none;
}


.archive-chevron {
  width: 11px;
  height: 11px;

  border-right:
    1px solid
    var(--gold);

  border-bottom:
    1px solid
    var(--gold);

  transform:
    rotate(45deg);
}


.concert-archive[open]
.archive-chevron {
  transform:
    rotate(225deg);
}


.concert-archive-list {
  padding-top: 42px;
}


.concert-loading,
.concert-empty {
  padding:
    10px
    0
    30px;

  color: var(--white);

  opacity: 0.8;
}


/* =========================================================
   ZÁPATÍ
   ========================================================= */

.footer {
  background: var(--black);

  padding:
    18px
    24px
    28px;
}


.footer-inner {
  width: min(
    100%,
    1180px
  );

  margin:
    0
    auto;

  display: flex;

  flex-direction: column;

  align-items: center;
}


.footer-logo {
  width: min(
    100%,
    1100px
  );

  height: auto;
}


.footer-copyright {
  margin-top: 14px;

  color: var(--gold);

  font-size: 9px;

  letter-spacing: 0.04em;

  text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .nav-links {
    gap: 24px;
  }


  .nav-links a {
    font-size: 15px;
  }


  .concert-feature,
  .split-layout,
  .listen-layout,
  .contact-layout {
    gap: 42px;
  }


  .member-layout,
  .repertoire-layout {
    gap: 48px;
  }


  .concert-item {
    gap: 42px;
  }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 760px) {

  .container {
    width:
      calc(
        100%
        -
        36px
      );
  }


  .navbar {
    min-height: 64px;

    padding:
      0
      15px;
  }


  .brand {
    font-size: 19px;
  }


  .brand-icon {
    width: 39px;
    height: 39px;

    flex:
      0
      0
      39px;
  }


  .menu-toggle {
    display: block;
  }


  .nav-links {
    position: absolute;

    z-index: 9999;

    top: 64px;
    left: 0;

    width: 100%;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding:
      8px
      20px
      18px;

    background: var(--black);

    border-top:
      1px solid
      var(--gold);
  }


  .nav-links.open {
    display: flex;
  }


  .nav-links a {
    padding:
      13px
      2px;

    border-bottom:
      1px solid
      var(--gold);

    font-size: 15px;
  }


  .hero {
    min-height: 360px;

    background-position:
      center
      center;
  }


  .hero-page {
    min-height: 300px;
  }


  .hero-logo {
    width: min(
      72vw,
      310px
    );
  }


  .section {
    padding:
      54px
      0;
  }


  .section-label {
    margin-bottom: 31px;

    font-size: 14px;
  }


  .concert-feature,
  .split-layout,
  .listen-layout,
  .contact-layout {
    grid-template-columns: 1fr;

    gap: 32px;
  }


  .program-grid {
    grid-template-columns: 1fr;

    gap: 32px;
  }


  .member-layout,
  .member-layout-reverse,
  .repertoire-layout,
  .repertoire-layout-reverse {
    grid-template-columns: 1fr;

    gap: 34px;
  }


  .member-photo,
  .member-layout-reverse
  .member-photo,
  .repertoire-image,
  .repertoire-layout-reverse
  .repertoire-image {
    order: 1;
  }


  .member-content,
  .member-layout-reverse
  .member-content,
  .repertoire-content,
  .repertoire-layout-reverse
  .repertoire-content {
    order: 2;
  }


  .concert-item {
    display: flex;

    flex-direction: column;

    gap: 28px;

    align-items: stretch;

    padding:
      32px
      0
      40px;
  }


  .concert-item-content {
    order: 1;
  }


  .concert-item-media {
    order: 2;
  }


  .concert-item-media.is-landscape
  img {
    width: 100%;

    max-height: none;
  }


  .concert-item-media.is-portrait
  img {
    max-width: 88%;

    max-height: 680px;

    margin:
      0
      auto;
  }


  .concert-item-title-link::after,
  .home-concert-title-link::after {
    content: "→";

    display: inline-block;

    margin-left: 8px;

    color: var(--gold);

    font-family:
      Arial,
      sans-serif;

    font-size: 0.67em;
  }


  .footer-logo {
    width: 100%;
  }

}


/* =========================================================
   MALÝ MOBIL
   ========================================================= */

@media (max-width: 430px) {

  .hero {
    min-height: 320px;
  }


  .hero-page {
    min-height: 260px;
  }


  .brand {
    font-size: 18px;
  }


  .section-big-title {
    font-size: 27px;
  }


  .program-card h3 {
    font-size: 25px;
  }

}

/* =========================================================
   STRÁNKA KONTAKT
   ========================================================= */

.contact-page-section {
  padding-top: 82px;
  padding-bottom: 88px;
}


.contact-page-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(360px, 0.95fr);

  gap: 82px;

  align-items: center;
}


/* =========================================================
   KONTAKT – FOTOGRAFIE
   ========================================================= */

.contact-page-image {
  width: 100%;
}


.contact-page-image img {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}


/* =========================================================
   KONTAKT – TEXT
   ========================================================= */

.contact-page-content {
  max-width: 560px;
}


.contact-page-title {
  margin:
    0
    0
    24px;

  color: var(--gold);

  font-family: var(--font-heading);

  font-size: clamp(
    36px,
    4vw,
    52px
  );

  font-weight: 500;

  line-height: 1.12;
}


.contact-page-intro {
  margin-bottom: 36px;

  color: var(--black);

  font-size: 17px;
  line-height: 1.76;
}


/* =========================================================
   KONTAKTNÍ ŘÁDKY
   ========================================================= */

.contact-page-row {
  display: flex;

  align-items: center;

  gap: 18px;

  padding:
    18px
    0;

  border-bottom:
    1px solid
    var(--gold);

  color: var(--black);
}


.contact-page-row:first-of-type {
  border-top:
    1px solid
    var(--gold);
}


.contact-page-row img {
  width: 25px;
  height: 25px;

  flex:
    0
    0
    25px;

  object-fit: contain;
}


.contact-page-row div {
  display: flex;

  flex-direction: column;

  gap: 2px;
}


.contact-page-label {
  display: block;

  color: var(--gold);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


.contact-page-row strong {
  color: var(--black);

  font-size: 18px;
  font-weight: 400;

  transition:
    color
    0.18s
    ease;
}


.contact-page-row:hover strong,
.contact-page-row:focus strong {
  color: var(--gold);
}


/* =========================================================
   SOCIÁLNÍ SÍTĚ
   ========================================================= */

.contact-page-social-block {
  margin-top: 34px;
}


.contact-page-socials {
  display: flex;

  flex-wrap: wrap;

  gap: 24px;

  margin-top: 15px;
}


.contact-page-socials a {
  display: flex;

  align-items: center;

  gap: 9px;

  color: var(--black);

  font-size: 15px;

  transition:
    color
    0.18s
    ease;
}


.contact-page-socials a:hover,
.contact-page-socials a:focus {
  color: var(--gold);
}


.contact-page-socials img {
  width: 23px;
  height: 23px;

  object-fit: contain;
}


/* =========================================================
   KONTAKT – POPTÁVKA
   ========================================================= */

.contact-booking {
  padding-top: 76px;
  padding-bottom: 76px;
}


.contact-booking-content {
  max-width: 760px;
}


.contact-booking-content p {
  max-width: 650px;

  color: var(--white);

  font-size: 17px;
  line-height: 1.76;
}


.contact-booking-buttons {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 24px;

  margin-top: 30px;
}


/* =========================================================
   KONTAKT – TABLET
   ========================================================= */

@media (max-width: 980px) {

  .contact-page-layout {
    gap: 48px;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(320px, 0.9fr);
  }


  .contact-page-title {
    font-size: 39px;
  }

}


/* =========================================================
   KONTAKT – MOBIL
   ========================================================= */

@media (max-width: 760px) {

  .contact-page-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }


  .contact-page-layout {
    grid-template-columns: 1fr;

    gap: 38px;
  }


  .contact-page-image {
    order: 1;
  }


  .contact-page-content {
    order: 2;

    max-width: none;
  }


  .contact-page-title {
    font-size: 34px;
  }


  .contact-page-intro {
    margin-bottom: 30px;

    font-size: 16px;
    line-height: 1.72;
  }


  .contact-page-row {
    padding:
      16px
      0;
  }


  .contact-page-row strong {
    font-size: 16px;
  }


  .contact-page-socials {
    flex-direction: column;

    align-items: flex-start;

    gap: 16px;
  }


  .contact-booking {
    padding-top: 55px;
    padding-bottom: 58px;
  }


  .contact-booking-content p {
    font-size: 16px;
    line-height: 1.72;
  }


  .contact-booking-buttons {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }

}

/* =========================================================
   KONTAKT – FORMULÁŘ POPTÁVKY
   PŘIDAT NA ÚPLNÝ KONEC STYLE.CSS
   ========================================================= */

.contact-booking {
  padding-top: 82px;
  padding-bottom: 86px;

  background: #000000;
  color: #FFFFFF;
}


.contact-booking-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 90px;

  align-items: start;
}


/* =========================================================
   LEVÁ ČÁST
   ========================================================= */

.contact-booking-content {
  max-width: 500px;
}


.contact-booking-content .section-label {
  margin-bottom: 30px;
}


.contact-booking-content .section-big-title {
  margin-bottom: 26px;

  color: #C9A34A;
}


.contact-booking-content p {
  margin:
    0
    0
    20px;

  color: #FFFFFF;

  font-size: 17px;
  line-height: 1.76;
}


.contact-booking-note {
  margin-top: 28px !important;

  color: #C9A34A !important;

  font-family: var(--font-heading);

  font-size: 20px !important;
  line-height: 1.5 !important;
}


/* =========================================================
   FORMULÁŘ
   ========================================================= */

.contact-form {
  width: 100%;

  margin: 0;
}


/* Dvě pole vedle sebe */

.contact-form-row {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 28px;
}


/* Jedno pole */

.contact-form-field {
  display: flex;

  flex-direction: column;

  width: 100%;

  margin-bottom: 28px;
}


/* Popisky */

.contact-form-field label {
  display: block;

  margin-bottom: 9px;

  color: #C9A34A;

  font-family: var(--font-text);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
   ========================================================= */

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  display: block;

  width: 100%;

  margin: 0;

  padding:
    13px
    0;

  border: 0;

  border-bottom:
    1px solid
    #FFFFFF;

  border-radius: 0;

  outline: none;

  background: #000000;

  color: #FFFFFF;

  font-family: var(--font-text);

  font-size: 16px;
  font-weight: 400;

  line-height: 1.5;

  box-shadow: none;

  appearance: none;

  -webkit-appearance: none;
}


/* Aktivní pole */

.contact-form-field input:focus,
.contact-form-field select:focus,
.contact-form-field textarea:focus {
  border-bottom-color: #C9A34A;
}


/* Textarea */

.contact-form-field textarea {
  min-height: 130px;

  resize: vertical;
}


/* Placeholder */

.contact-form-field textarea::placeholder,
.contact-form-field input::placeholder {
  color: #FFFFFF;
}


/* =========================================================
   SELECT
   ========================================================= */

.contact-form-field select {
  cursor: pointer;

  padding-right: 38px;

  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      #C9A34A 50%
    ),
    linear-gradient(
      135deg,
      #C9A34A 50%,
      transparent 50%
    );

  background-position:
    calc(100% - 15px) 50%,
    calc(100% - 10px) 50%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}


.contact-form-field select option {
  background: #000000;

  color: #FFFFFF;
}


/* =========================================================
   DATUM
   ========================================================= */

.contact-form-field
input[type="date"] {
  color: #FFFFFF;

  color-scheme: dark;
}


/* =========================================================
   TLAČÍTKO
   ========================================================= */

.contact-form-submit {
  min-width: 220px;

  margin-top: 4px;

  padding:
    14px
    26px;

  border:
    1px solid
    #C9A34A;

  background: #C9A34A;

  color: #000000;

  font-family: var(--font-text);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.03em;

  text-transform: uppercase;

  cursor: pointer;
}


.contact-form-submit:hover,
.contact-form-submit:focus {
  background: #000000;

  color: #C9A34A;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

  .contact-booking-layout {
    grid-template-columns:
      minmax(0, 0.8fr)
      minmax(0, 1.2fr);

    gap: 50px;
  }


  .contact-form-row {
    gap: 22px;
  }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 760px) {

  .contact-booking {
    padding-top: 58px;
    padding-bottom: 62px;
  }


  .contact-booking-layout {
    grid-template-columns: 1fr;

    gap: 44px;
  }


  .contact-booking-content {
    max-width: none;
  }


  .contact-booking-content p {
    font-size: 16px;
    line-height: 1.72;
  }


  .contact-booking-note {
    font-size: 18px !important;
  }


  .contact-form-row {
    grid-template-columns: 1fr;

    gap: 0;
  }


  .contact-form-field {
    margin-bottom: 25px;
  }


  .contact-form-submit {
    width: 100%;

    min-width: 0;
  }

}