/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles — BaliVýlet modern design
   ========================================================================== */

:root {
  /* Brand palette — derived from logo: black + gold + ivory */
  --bv-primary: #111418;         /* deep charcoal black */
  --bv-primary-dark: #000000;
  --bv-accent: #c9a24a;          /* rich gold */
  --bv-accent-dark: #a8821a;     /* dark antique gold */
  --bv-accent-light: #e8c878;    /* champagne gold */
  --bv-wa: #25d366;
  --bv-wa-dark: #128c7e;
  --bv-ink: #15171c;
  --bv-ink-soft: #3a3d44;
  --bv-muted: #7a7468;
  --bv-bg: #ffffff;
  --bv-bg-alt: #faf7f1;          /* warm ivory */
  --bv-border: #ece6d6;
  --bv-shadow: 0 10px 30px rgba(17, 20, 24, .08);
  --bv-shadow-lg: 0 25px 50px rgba(17, 20, 24, .18);
  --bv-radius: 18px;
}

* { box-sizing: border-box; }
html, body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--bv-ink);
  background: var(--bv-bg);
  line-height: 1.6;
  scroll-behavior: smooth;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--bv-ink);
}
p { color: var(--bv-ink-soft); }
a { color: var(--bv-accent-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--bv-accent); }

/* ---------- NAV ---------- */
.bv-nav {
  background: transparent;
  padding: 18px 0;
  transition: all .25s ease;
}
.bv-nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(10px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(201,162,74,.18);
}
.bv-brand { display: inline-flex; align-items: center; gap: .8rem; color: #fff; text-decoration: none; }
.bv-nav.scrolled .bv-brand { color: var(--bv-ink); }
.bv-brand-logo {
  width: 72px; height: 72px; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
  transition: transform .25s;
}
.bv-nav.scrolled .bv-brand-logo { width: 58px; height: 58px; }
.bv-brand:hover .bv-brand-logo { transform: rotate(-6deg) scale(1.05); }
.bv-brand-text { display: inline-flex; flex-direction: column; line-height: 1; }
.bv-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.85rem;
  letter-spacing: .2em;
  background: linear-gradient(135deg, var(--bv-accent-light) 0%, var(--bv-accent) 50%, var(--bv-accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bv-nav.scrolled .bv-brand-name { font-size: 1.55rem; }
.bv-brand-tag {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: .75rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: .45rem;
}
.bv-nav.scrolled .bv-brand-tag { color: var(--bv-muted); }
.bv-nav .nav-link {
  color: rgba(255,255,255,.92);
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .9rem !important;
  position: relative;
}
.bv-nav.scrolled .nav-link { color: var(--bv-ink-soft); }
.bv-nav .nav-link:hover,
.bv-nav .nav-link.active { color: var(--bv-accent); }
.bv-nav.scrolled .nav-link:hover,
.bv-nav.scrolled .nav-link.active { color: var(--bv-primary); }
.bv-nav .nav-link.active::after {
  content: ''; position: absolute; left: .9rem; right: .9rem; bottom: 4px;
  height: 2px; background: currentColor; border-radius: 2px;
}
.navbar-toggler { border-color: rgba(255,255,255,.5); }
.bv-nav.scrolled .navbar-toggler { border-color: var(--bv-border); }

/* ---------- LANGUAGE DROPDOWN ---------- */
.bv-lang-dd { position: relative; }
.bv-lang-toggle {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .82rem;
  letter-spacing: .12em;
  padding: .5rem .85rem; border-radius: 999px;
  cursor: pointer; transition: all .2s;
}
.bv-lang-toggle:hover { background: rgba(255,255,255,.14); color: var(--bv-accent-light); border-color: rgba(201,162,74,.4); }
.bv-lang-toggle .bi-globe2 { font-size: .95rem; color: var(--bv-accent-light); }
.bv-lang-caret { font-size: .7rem; opacity: .7; transition: transform .2s; }
.bv-lang-toggle[aria-expanded="true"] .bv-lang-caret { transform: rotate(180deg); }
.bv-nav.scrolled .bv-lang-toggle {
  background: transparent; border-color: var(--bv-border); color: var(--bv-ink-soft);
}
.bv-nav.scrolled .bv-lang-toggle:hover {
  background: rgba(201,162,74,.08); color: var(--bv-accent-dark); border-color: var(--bv-accent);
}
.bv-nav.scrolled .bv-lang-toggle .bi-globe2 { color: var(--bv-accent-dark); }

.bv-lang-menu {
  border: 1px solid var(--bv-border);
  border-radius: 14px;
  padding: .4rem;
  box-shadow: 0 12px 32px rgba(17,20,24,.12);
  margin-top: .5rem !important;
  min-width: 200px;
}
.bv-lang-menu .dropdown-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .55rem .85rem;
  border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .92rem; font-weight: 500;
  color: var(--bv-ink-soft);
  border: 0;
  transition: background .15s, color .15s;
}
.bv-lang-menu .dropdown-item:hover,
.bv-lang-menu .dropdown-item:focus {
  background: rgba(201,162,74,.1);
  color: var(--bv-primary);
}
.bv-lang-menu .dropdown-item.active {
  background: linear-gradient(135deg, var(--bv-accent) 0%, var(--bv-accent-dark) 100%);
  color: var(--bv-primary);
  font-weight: 600;
}
.bv-lang-flag { font-size: 1.1rem; line-height: 1; }
@media (max-width: 991.98px) {
  .bv-lang-dd { margin: .8rem 0; }
  .bv-lang-toggle { width: 100%; justify-content: center; }
  .bv-lang-menu { width: 100%; }
}

/* ---------- BUTTONS ---------- */
.btn { font-weight: 600; border-radius: 999px; padding: .75rem 1.4rem; transition: transform .15s, box-shadow .2s, background .2s, color .2s; display: inline-flex; align-items: center; gap: .5rem; letter-spacing: .04em; }
.btn:hover { transform: translateY(-2px); }
.bv-btn-primary {
  background: var(--bv-primary); color: #fff; border: 1px solid var(--bv-primary);
  position: relative; overflow: hidden;
}
.bv-btn-primary:hover {
  background: var(--bv-accent-dark); border-color: var(--bv-accent-dark);
  color: #fff; box-shadow: 0 12px 24px rgba(168,130,26,.35);
}
.bv-btn-outline { background: transparent; color: var(--bv-accent-dark); border: 1.5px solid var(--bv-accent); }
.bv-btn-outline:hover { background: var(--bv-accent); color: var(--bv-primary); border-color: var(--bv-accent); }
.bv-btn-wa { background: var(--bv-wa); color: #fff; border: 0; padding: .55rem 1rem; }
.bv-btn-wa:hover { background: var(--bv-wa-dark); color: #fff; }
.bv-btn-wa-lg { background: var(--bv-wa); color: #fff; border: 0; padding: .9rem 1.6rem; font-size: 1.05rem; }
.bv-btn-wa-lg:hover { background: var(--bv-wa-dark); color: #fff; box-shadow: 0 12px 24px rgba(37,211,102,.4); }
.bv-btn-wa-xl {
  background: var(--bv-wa); color: #fff; padding: 1.1rem 1.8rem; font-size: 1.1rem;
  align-items: center; gap: 1rem;
}
.bv-btn-wa-xl i { font-size: 2rem; }
.bv-btn-wa-xl small { display: block; opacity: .85; font-size: .8rem; font-weight: 400; }
.bv-btn-wa-xl strong { font-size: 1.25rem; }
.bv-btn-wa-xl:hover { background: var(--bv-wa-dark); color: #fff; box-shadow: 0 16px 32px rgba(37,211,102,.45); }

/* ---------- HERO ---------- */
.bv-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.bv-hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
}
.bv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.55) 0%, rgba(15,23,42,.35) 40%, rgba(15,23,42,.75) 100%);
}
.bv-hero-content { position: relative; padding: 8rem 0 5rem; max-width: 820px; }
.bv-eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em;
  font-size: .8rem; font-weight: 600; color: var(--bv-accent);
  padding: .4rem .9rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px;
  margin-bottom: 1.5rem;
}
.bv-eyebrow.dark { color: var(--bv-accent-dark); border-color: var(--bv-accent); background: rgba(201,162,74,.08); }
.bv-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05; margin-bottom: 1.2rem; color: #fff;
}
.bv-hero-title em { color: var(--bv-accent); font-style: italic; font-weight: 500; }
.bv-hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.9); max-width: 620px; margin-bottom: 2.2rem;
}
.bv-hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.bv-hero-scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  color: rgba(255,255,255,.85); font-size: 1.6rem; animation: bounce 2.2s infinite;
}
.bv-hero-scroll:hover { color: var(--bv-accent); }
@keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

/* ---------- SECTIONS ---------- */
.bv-section { padding: 6rem 0; background: var(--bv-bg); }
.bv-section-alt { background: var(--bv-bg-alt); }
.bv-section-head { max-width: 720px; margin: 0 auto 3rem; }
.bv-section-title { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: .8rem 0 1rem; }
.bv-section-lead { font-size: 1.1rem; color: var(--bv-muted); }

/* ---------- WHY US / BENEFITS ---------- */
.benefit-card {
  background: var(--bv-bg); border: 1px solid var(--bv-border); border-radius: var(--bv-radius);
  padding: 2rem 1.6rem; height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--bv-shadow); border-color: transparent; }
.benefit-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bv-accent-light) 0%, var(--bv-accent) 100%);
  color: var(--bv-primary); font-size: 1.6rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 8px 18px rgba(201,162,74,.25);
}
.benefit-title { font-size: 1.2rem; margin-bottom: .6rem; }
.benefit-text { font-size: .96rem; margin: 0; color: var(--bv-muted); }

/* ---------- CATEGORY CARDS (Top zážitky) ---------- */
.bv-cat {
  display: block; position: relative; height: 320px; border-radius: var(--bv-radius);
  overflow: hidden; background-size: cover; background-position: center;
  text-decoration: none; color: #fff; transition: transform .35s;
}
.bv-cat:hover { transform: translateY(-6px); color: #fff; }
.bv-cat-mask {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,.1) 0%, rgba(15,23,42,.75) 100%);
  transition: background .3s;
}
.bv-cat:hover .bv-cat-mask {
  background: linear-gradient(180deg, rgba(201,162,74,.25) 0%, rgba(17,20,24,.9) 100%);
}
.bv-cat-content {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.6rem 1.8rem;
}
.bv-cat-emoji { font-size: 2rem; display: inline-block; margin-bottom: .4rem; }
.bv-cat h3 { color: #fff; font-size: 1.55rem; margin: 0 0 .3rem; }
.bv-cat p { color: rgba(255,255,255,.85); margin: 0; font-size: .95rem; }

/* ---------- TOUR CARDS ---------- */
.bv-tour {
  background: var(--bv-bg); border-radius: var(--bv-radius); overflow: hidden;
  box-shadow: 0 4px 14px rgba(15,23,42,.06);
  transition: transform .25s, box-shadow .25s;
  height: 100%; display: flex; flex-direction: column;
}
.bv-tour:hover { transform: translateY(-6px); box-shadow: var(--bv-shadow-lg); }
.bv-tour-img { height: 220px; background-size: cover; background-position: center; }
.bv-tour-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.bv-tour-rating { color: var(--bv-accent); font-size: .9rem; margin-bottom: .5rem; }
.bv-tour h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.bv-tour p { font-size: .95rem; color: var(--bv-muted); flex: 1; }
.bv-tour-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.bv-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--bv-accent-dark); }

/* ---------- REVIEWS ---------- */
.bv-google-rating {
  display: inline-flex; align-items: center; gap: .8rem; margin-top: 1rem;
  background: #fff; padding: .75rem 1.4rem; border-radius: 999px; box-shadow: var(--bv-shadow);
}
.bv-google-rating strong { font-size: 1.6rem; color: var(--bv-ink); font-family: 'Playfair Display', serif; }
.bv-google-rating .bv-stars { color: var(--bv-accent); }
.bv-google-rating small { color: var(--bv-muted); }
.bv-review {
  background: #fff; border-radius: var(--bv-radius); padding: 1.8rem;
  height: 100%; box-shadow: 0 4px 14px rgba(15,23,42,.05);
  display: flex; flex-direction: column;
}
.bv-review-stars { color: var(--bv-accent); margin-bottom: .8rem; }
.bv-review p { color: var(--bv-ink-soft); font-size: .98rem; flex: 1; }
.bv-review-author { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.bv-avatar {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bv-primary), var(--bv-accent-dark));
  color: var(--bv-accent-light); font-weight: 600; font-size: .95rem;
}
.bv-review-author strong { display: block; font-size: .98rem; }
.bv-review-author small { color: var(--bv-muted); font-size: .85rem; }

/* ---------- CONTACT ---------- */
.bv-contact .bv-section-title { text-align: left; }
.bv-contact-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.bv-contact-list li { padding: .55rem 0; color: var(--bv-ink-soft); display: flex; align-items: center; gap: .8rem; }
.bv-contact-list i { color: var(--bv-accent-dark); font-size: 1.2rem; width: 24px; }
.bv-contact-img {
  height: 460px; border-radius: var(--bv-radius);
  background-size: cover; background-position: center;
  box-shadow: var(--bv-shadow-lg);
}

/* ---------- FOOTER ---------- */
.bv-footer {
  background: var(--bv-ink); color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.bv-footer .bv-brand { color: #fff; }
.bv-footer h5 { color: var(--bv-accent-light); font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: .18em; }
.bv-footer-text { color: rgba(255,255,255,.65); }
.bv-footer-links { list-style: none; padding: 0; margin: 0; }
.bv-footer-links li { padding: .35rem 0; }
.bv-footer-links a { color: rgba(255,255,255,.75); }
.bv-footer-links a:hover { color: var(--bv-accent); }
.bv-footer-links i { color: var(--bv-accent); margin-right: .5rem; }
.bv-footer hr { border: 0; border-top: 1px solid rgba(201,162,74,.2); margin: 2.5rem 0 1.2rem; }

/* ---------- WHATSAPP FLOAT ---------- */
.bv-wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 1000;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--bv-wa); color: #fff;
  display: grid; place-items: center; font-size: 1.9rem;
  box-shadow: 0 10px 24px rgba(37,211,102,.45);
  animation: pulse 2.4s infinite;
}
.bv-wa-float:hover { background: var(--bv-wa-dark); color: #fff; transform: scale(1.06); }
@keyframes pulse {
  0% { box-shadow: 0 10px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .bv-nav { background: rgba(15,23,42,.92); backdrop-filter: blur(10px); }
  .bv-nav .nav-link { color: rgba(255,255,255,.92); }
  .bv-section { padding: 4.5rem 0; }
  .bv-hero-content { padding: 7rem 0 4rem; }
  .bv-contact-img { height: 320px; }
}
@media (max-width: 575.98px) {
  .bv-section { padding: 3.5rem 0; }
  .bv-wa-float { width: 54px; height: 54px; font-size: 1.6rem; right: 18px; bottom: 18px; }
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .visually-hidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

