@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500&display=swap');
:root {
      --blue-light:        #8ED1E0;
      --blue:   #5BAEC0;
      --blue-dark:   #368597;
      --blue-pale:   rgba(142,209,224,.12);
      --black:       #111111;
      --off-white:   #F8F6F2;
      --cream:      #EDE8DF;
      --ink:        #1C1C1C;
      --grey:        #555;
      --gold:        #C9A96E;
      --animace:     ease .35s;
    }

    *, *::before, *::after { box-sizing: border-box; --bs-dropdown-link-active-bg: var(--blue);}

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Palanquin', sans-serif;
      background: var(--off-white);
      color: var(--black);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Lora', sans-serif;
      font-weight: 400;
    }


/*Restaurace*/
.carousel-control-prev-icon {
    background-image: url(../img/slider-galerie/prev-btn.svg);
}
.carousel-control-next-icon {
    background-image: url(../img/slider-galerie/next-btn.svg);
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: var(--bs-carousel-indicator-active-bg);
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}
.gal-prev-btn {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    line-height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
.gal-next-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    line-height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}
/*Catering*/

.catering-main-image img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.catering-main-image {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  overflow: hidden;
}

.catering-gallery {
  display: grid;
  grid-template-columns: 1.28fr 0.82fr;
  grid-template-rows: 1.08fr 0.92fr;
  gap: 12px;
  aspect-ratio: 0.92 / 1;
}

.gallery-item {
  overflow: hidden;
}
/*Catering*/


/* ────────────────────────────────────────── NAVBAR ────────────────────────────────────────── */ .pm-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1050; padding: .9rem 2rem; transition: background .3s ease, box-shadow .3s ease; } .pm-navbar.transparent { background: transparent; } .pm-navbar.is-scrolled { background: #8ED1E0; backdrop-filter: blur(10px); box-shadow: 0 4px 30px rgba(0,0,0,.08); } .pm-navbar .nav-link { font-family: 'Palanquin', sans-serif; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: #fff !important; transition: color var(--animace); padding: .4rem .9rem !important; } .pm-navbar.is-scrolled .nav-link { color: var(--black) !important; } .pm-navbar .nav-link:hover { color: var(--blue) !important; } .pm-navbar .navbar-brand { font-family: 'Great Vibes', cursive; font-size: 2rem; color: #fff !important; transition: color var(--animace); } .pm-navbar.is-scrolled .navbar-brand { color: var(--black) !important; } .nav-btn-res { font-family: 'Palanquin', sans-serif; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; border: 1px solid #fff; color: #fff !important; padding: .45rem 1.3rem; transition: background var(--animace), color var(--animace), border-color var(--animace); } .nav-btn-res:hover { background: var(--blue); border-color: var(--blue); color: #fff !important; } .pm-navbar.is-scrolled .nav-btn-res { border-color: var(--blue); color: var(--black) !important; } .pm-navbar.is-scrolled .nav-btn-res:hover { background: var(--blue); color: #fff !important; } .navbar-toggler { border: none; } .navbar-toggler:focus { box-shadow: none; } .toggler-icon span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: background var(--animace); } .pm-navbar.is-scrolled .toggler-icon span { background: var(--black); }
    /* ──────────────────────────────────────────
       HERO
    ────────────────────────────────────────── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }

    #hero img.hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transform: scale(1.05);
      transition: transform 8s ease;
    }

    #hero.loaded img.hero-bg { transform: scale(1); }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,.45) 0%,
        rgba(0,0,0,.2) 50%,
        rgba(0,0,0,.65) 100%
      );
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 1rem;
    }

    .hero-label {
      font-family: 'Palanquin', sans-serif;
      font-size: .72rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp .8s .3s forwards;
    }

    .hero-title {
      font-family: 'Great Vibes', cursive;
      font-size: clamp(3.5rem, 9vw, 7.5rem);
      color: #fff;
      line-height: 1.1;
      margin-bottom: 1.2rem;
      opacity: 0;
      animation: fadeUp .9s .55s forwards;
      text-shadow: 0 4px 30px rgba(0,0,0,.4);
    }

    .hero-sub {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: clamp(1rem, 2.2vw, 1.35rem);
      color: rgba(255,255,255,.88);
      margin-bottom: 2.8rem;
      opacity: 0;
      animation: fadeUp .9s .8s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      opacity: 0;
      animation: fadeUp .9s 1.05s forwards;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .4rem;
      color: rgba(255,255,255,.6);
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      opacity: 0;
      animation: fadeIn 1s 1.6s forwards;
    }

    .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
      animation: scrollPulse 2s 2s infinite;
    }

    /* ──────────────────────────────────────────
       BUTTONS
    ────────────────────────────────────────── */
    .button {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-family: 'Palanquin', sans-serif;
      font-size: .78rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-decoration: none;
      padding: .75rem 2rem;
      border: 1px solid var(--blue);
      color: #fff;
      background: transparent;
      position: relative;
      z-index: 1;
      overflow: hidden;
      transition: color var(--animace);
      cursor: pointer;
    }

    .button::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: left;
      z-index: -1;
      transition: transform var(--animace);
    }

    .button:hover::before { transform: scaleX(1); }
    .button:hover { color: #fff; }

    .button--solid {
      background: var(--blue);
      color: #fff;
    }

    .button--solid::before { background: var(--blue-dark); }

    .button--dark {
      border-color: var(--black);
      color: var(--black);
    }

    .button--dark::before { background: var(--black); }
    .button--dark:hover { color: #fff; }

    /* ──────────────────────────────────────────
       DIVIDER / SEPARATORS
    ────────────────────────────────────────── */
    .modra-cara {
      display: block;
      width: 60px;
      height: 3px;
      background: var(--blue);
    }

    .ornament {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: var(--blue);
      font-size: .8rem;
      letter-spacing: .25em;
      text-transform: uppercase;
    }

    .ornament::before,
    .ornament::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--blue);
      opacity: .4;
    }

    .section-py { padding: 6rem 0; }
 
    .section-label {
      font-family: 'Palanquin', sans-serif;
      font-size: .72rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1rem;
    }
 
    .nadpis-h2 {
      font-family: 'Lora', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 400;
      line-height: 1.25;
    }

    /* ── ABOUT (tmavá) ── */
    .about-section { background: #111; color: #fff; }

    .about-split {
      display: grid; grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }
    @media (max-width: 991px) { .about-split { grid-template-columns: 1fr; }




  .catering-gallery {
    margin-top: 24px;
    aspect-ratio: 1 / 1;
  }
 }

    .about-img {
      position: relative; overflow: hidden; min-height: 400px;
    }
    .about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

    /* překryv čísel přes obrázek */
    .about-img-badge {
      position: absolute; bottom: 2rem; left: 2rem;
      background: rgba(0,0,0,.72); backdrop-filter: blur(8px);
      padding: 1.2rem 1.8rem; border-left: 3px solid var(--blue);
    }
    .badge-num { font-family: 'Lora', serif; font-size: 2.8rem; color: var(--blue); line-height: 1; }
    .badge-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }

    .about-text {
      padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-quote {
      font-family: 'Lora', serif; font-style: italic;
      font-size: 1.1rem; color: rgba(255,255,255,.65);
      border-left: 2px solid var(--blue); padding-left: 1.4rem;
      line-height: 1.85; margin-bottom: 2rem;
    }
    .about-body { font-size: .92rem; color: rgba(255,255,255,.5); line-height: 1.85; margin-bottom: 2.5rem; }

    .chef-line {
      display: flex; align-items: center; gap: 1rem;
      border-top: 1px solid rgba(142,209,224,.2); padding-top: 1.5rem;
    }
    .chef-avatar {
      width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
      border: 2px solid var(--blue);
    }
    .chef-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .chef-name { font-family: 'Lora', serif; font-size: .95rem; color: #fff; }
    .chef-role { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.7); }

    /* ──────────────────────────────────────────
       MENU TEASER
    ────────────────────────────────────────── */
    .menu-bg {
      background: var(--black);
      color: #fff;
    }

    .menu-card {
      position: relative;
      overflow: hidden;
      background: #1a1a1a;
      border: 1px solid rgba(255,255,255,.07);
      transition: border-color var(--animace), transform var(--animace);
    }

    .menu-card:hover {
      border-color: var(--blue);
      transform: translateY(-4px);
    }

    .menu-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: transform .6s ease;
    }

    .menu-card:hover img { transform: scale(1.05); }

    .menu-card-body {
      padding: 1.6rem;
    }

    .menu-card-category {
      font-size: .7rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: .5rem;
    }

    .menu-card-title {
      font-family: 'Lora', serif;
      font-size: 1.25rem;
      color: #fff;
      margin-bottom: .6rem;
    }

    .menu-card-desc {
      font-size: .88rem;
      color: rgba(255,255,255,.5);
      line-height: 1.7;
      margin-bottom: 1.2rem;
    }

    .menu-price {
      font-family: 'Lora', serif;
      font-size: 1.1rem;
      color: var(--gold);
    }

    /* ──────────────────────────────────────────
       EXPERIENCE / FEATURES
    ────────────────────────────────────────── */
    .exp-section { background: var(--off-white); }

    .exp-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--blue-pale);
      border: 1px solid var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: var(--blue);
      flex-shrink: 0;
      transition: background var(--animace);
    }

    .exp-item:hover .exp-icon {
      background: var(--blue);
      color: #fff;
    }

    /* ──────────────────────────────────────────
       FULL-WIDTH IMAGE BANNER
    ────────────────────────────────────────── */
    .banner-wrap {
      position: relative;
      height: 60vh;
      min-height: 380px;
      overflow: hidden;
    }

    .banner-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .banner-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.55);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 1rem;
    }

    /* ──────────────────────────────────────────
       GALLERY GRID
    ────────────────────────────────────────── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 280px 280px;
      gap: 6px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
    }

    .gallery-item:first-child {
      grid-column: 1 / span 2;
      grid-row: 1 / span 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
    }

    .gallery-item:hover img { transform: scale(1.06); }

    .gallery-item-overlay {
      position: absolute;
      inset: 0;
      background: rgba(142,209,224,.25);
      opacity: 0;
      transition: opacity var(--animace);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-item:hover .gallery-item-overlay { opacity: 1; }

    @media (max-width: 767px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 200px);
      }
      .gallery-item:first-child { grid-column: 1 / span 2; grid-row: 1; }
    }

    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 200px); }
      .gallery-item:first-child { grid-column: 1; grid-row: 1; }
    }

    /* ──────────────────────────────────────────
       TESTIMONIALS
    ────────────────────────────────────────── */
    .testi-section { background: #fff; }

    .testi-card {
      border: 1px solid rgba(142,209,224,.3);
      padding: 2.2rem;
      position: relative;
      transition: box-shadow var(--animace), border-color var(--animace);
    }

    .testi-card:hover {
      box-shadow: 0 12px 40px rgba(142,209,224,.15);
      border-color: var(--blue);
    }

    .testi-quote-icon {
      font-size: 3rem;
      color: var(--blue);
      line-height: 1;
      margin-bottom: .5rem;
      font-family: 'Lora', serif;
      opacity: .4;
    }

    .testi-text {
      font-family: 'Lora', serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--grey);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: .8rem; }

    .testi-name {
      font-family: 'Palanquin', sans-serif;
      font-weight: 600;
      font-size: .85rem;
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    /* ──────────────────────────────────────────
       RESTAURACE SECTION 
    ────────────────────────────────────────── */
    .res-section {
      background: var(--black);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .res-section::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      border: 1px solid rgba(142,209,224,.1);
    }

    .res-section::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -100px;
      width: 350px;
      height: 350px;
      border-radius: 50%;
      border: 1px solid rgba(142,209,224,.08);
    }

    .form-ctrl {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 0;
      color: #fff;
      padding: .85rem 1.1rem;
      font-family: 'Palanquin', sans-serif;
      font-size: .9rem;
      transition: border-color var(--animace);
      width: 100%;
    }

    .form-ctrl:focus {
      outline: none;
      border-color: var(--blue);
      background: rgba(255,255,255,.09);
      color: #fff;
      box-shadow: none;
    }

    .form-ctrl::placeholder { color: rgba(255,255,255,.35); }

    .form-ctrl option { background: #1a1a1a; color: #fff; }

    .form-label-custom {
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: .4rem;
      display: block;
    }
    
    /* ──────────────────────────────────────────
       FOOTER
    ────────────────────────────────────────── */
    .footer-pm {
      background: #1a1a1a;
      color: rgba(255,255,255,.65);
      border-top: 4px solid var(--blue);
    }

    .footer-pm .footer-brand {
      font-family:'Palanquin', sans-serif;
      font-size: 2.5rem;
      color: #fff;
    }

    .footer-pm h5 {
      font-family: 'Palanquin', sans-serif;
      font-size: .78rem;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 1.2rem;
    }

    .footer-pm a {
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: .88rem;
      display: block;
      margin-bottom: .5rem;
      transition: color var(--animace);
    }

    .footer-pm a:hover { color: var(--blue); }

    .footer-pm p { font-size: .88rem; line-height: 1.75; }

    .social-link {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255,255,255,.15);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.55) !important;
      transition: border-color var(--animace), color var(--animace) !important;
      font-size: 1rem;
      margin-right: .4rem;
    }

    .social-link:hover {
      border-color: var(--blue) !important;
      color: var(--blue) !important;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 1.2rem 0;
      font-size: .78rem;
      color: rgba(255,255,255,.3);
    }

    /* ──────────────────────────────────────────
       ANIMATIONS
    ────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: .6; }
      50% { opacity: .2; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .35s; }
    .reveal-delay-4 { transition-delay: .5s; }

    /* ──────────────────────────────────────────
       UTILITY
    ────────────────────────────────────────── */
    .text-blue { color: var(--blue) !important; }
    .bg-blue-pale { background: var(--blue-pale); }

    @media (max-width: 767px) {
      .section-py { padding: 4rem 0; }
      .about-img-wrap img { height: 350px; }
      .about-img-accent { display: none; }
      .banner-wrap { height: 50vh; }
    }

    @media (max-width: 575px) {
      .hero-actions { flex-direction: column; align-items: center; }
      .button { width: 220px; justify-content: center; }
.catering-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }


  .catering-main-image {
    aspect-ratio: 4 / 3;
  }

  .catering-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    aspect-ratio: auto;
    gap: 10px;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }
    }

@media (min-width: 1050px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
  }
