body {
    font-family: 'Nunito', sans-serif;
    background-color: #fffaf3;
    padding-top: 50px; /* kvůli fixed menu */
  }

  /* Brand barvy */
  :root {
    --doasie-yellow: #FFC857;
    --doasie-orange: #FF7A3C;
    --doasie-dark: #1F2933;
  }

  .logo {
    height: 40px;
  }

  /* NAVBAR */
  .navbar {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .navbar-brand span {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    padding: 0.4rem 1rem;
    font-size: 0.95rem;
  }

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.15rem;
    width: 0;
    height: 3px;
    background-color: var(--doasie-yellow);
    transition: width 0.2s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link:focus::after,
  .navbar-nav .nav-link.active::after {
    width: 100%;
  }

  .navbar-nav .nav-link:hover {
    color: var(--doasie-dark);
  }

  .navbar-social a {
    font-size: 0.85rem;
  }

  /* Hero sekce */
  .hero {
    min-height: 80vh;
    background: radial-gradient(circle at top left, var(--doasie-yellow), #ffe8b5 40%, #fffaf3 80%);
    display: flex;
    align-items: center;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .btn {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 20px;
  }

  .info-card {
    border-radius: 5px;
  }

  .gallery-img {
    border-radius: 5px;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .3rem .9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .hero-title {
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    font-weight: 800;
    color: var(--doasie-dark);
    margin-bottom: 1rem;
  }

  .hero-highlight {
    color: var(--doasie-orange);
  }

  .hero-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.8rem;
  }
  .hero-list li::before {
    content: "•";
    color: var(--doasie-orange);
    font-weight: 700;
    margin-right: .4rem;
  }
  .hero-list li {
    margin-top: 8px;
  }

  .hero-photo {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0,0,0,.15);
  }

  .hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #555a60;
    margin-bottom: .4rem;
  }

  .section-title {
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--doasie-dark);
  }

  .section-title span {
    color: var(--doasie-orange);
  }

  /* Trochu víc vzduchu mezi sekcemi */
  .py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  /* Destinace – karty */
  .destination-card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(15,23,42,.08);
    transition: transform .2s ease, box-shadow .2s ease;
    background: #ffffff;
  }

  .destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(15,23,42,.14);
  }

  .destination-card img {
    height: 210px;
    object-fit: cover;
  }

  .destination-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
  }

  .destination-link {
    text-decoration: none;
  }

  .destination-link:hover {
    text-decoration: underline;
  }

  /* Alternující sekce */
  .section-soft-yellow {
    background: #fff5da;
  }

  .section-soft-orange {
    background: #ffe3cf;
  }

  /* Video box */
  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(15,23,42,.18);
  }

  .video-wrapper iframe,
  .video-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .video-wrapper img {
    object-fit: cover;
    object-position: center;
    display: block;
  }

  @media (max-width: 991.98px) {
    .video-wrapper {
      max-width: 100%;
    }

    .hero-photo {
      max-width: 100%;
    }
  }

  /* Kontakt */
  .contact-card {
    border-radius: 0;
    border: none;
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    overflow: hidden;
  }

  .contact-side {
    background: radial-gradient(circle at top, var(--doasie-orange), var(--doasie-yellow));
    color: white;
  }

  .contact-side h3 {
    font-weight: 800;
  }

  /* Footer */
  footer {
    font-size: 0.85rem;
    color: #9ca3af;
  }

  footer a {
    color: #9ca3af;
  }

  footer a:hover {
    color: var(--doasie-orange);
  }
