
/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
  line-height: 1.6;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

article {
  flex: 1;
}

footer {
  margin-top: auto;
}

/* =====================
   HEADER + MENU
===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #b91c1c; /* červená */
  backdrop-filter: blur(10px);
  
}



.card {
  background: #1c1c1c; /* kontrastný panel */
  border-radius: 12px;
  padding: 28px;
}


.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo h1 {
  font-size: 1.2rem;
  color: #fff;
}

#logo small {
  color: #f3f3f3;
}

#logo {
  display: flex;
  align-items: center;
  gap: 10px; /* medzera medzi logom a textom */
}

#logo img {
  width: 30px; /* zmenšené logo */
  height: auto;
}

.limited-seats {
  color: #c62828;          /* červená farba textu */
  font-size: 1.35rem;      /* väčšie písmo */
  font-weight: 600;
  text-align: center;      /* zarovnanie na stred */
}

.limited-seats strong {
  color: inherit;          /* dedí červenú z rodiča */
  font-weight: 700;
}

.pulse {
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.06); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}


/* HAMBURGER */
.menu-toggle {
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

/* =====================
   SLIDE-IN MENU
===================== */
#navbar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(185, 28, 28, 0.95);
  backdrop-filter: blur(12px);
  transition: right 0.35s ease;
  padding-top: 5rem;
}

#navbar.show {
  right: 0;
}

#navbar ul {
  list-style: none;
}

#navbar li {
  margin: 1.5rem 0;
  text-align: center;
}

#navbar a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
}

/* =====================
   DESKTOP MENU
===================== */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  #navbar {
    position: static;
    height: auto;
    width: auto;
    background: none;
    padding: 0;
  }

  #navbar ul {
    display: flex;
    gap: 2rem;
  }

  #navbar li {
    margin: 0;
  }
}

/* =====================
   MOBILE MENU TOGGLE
===================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* =====================
   HERO (ostatné stránky)
===================== */
.hero {
  width: 100%; /* celé viewport šírka */
  margin: 0;
  padding: 0;   /* padding posuň do vnútra textu */
  height: 60vh;
  background: url("images/img9.jpeg") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
}
.hero-content {
  padding: 3rem 1.5rem; /* iba text, nie celý hero */
  max-width: 1200px;
  margin: auto;
  color: white;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero h1 {
  position: relative;
  color: white;
  font-size: 3rem;
  max-width: 800px;
}

/* =====================
   SECTIONS
===================== */
section {
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

/* =====================
   TWO COLUMN LAYOUT
===================== */
.two-col, .two-col1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.two-col img {
  max-height: 290px;
  object-fit: cover;
  justify-self: end;
  border-radius: 16px;
}
.two-col1 img {
  max-height: 390px;
  object-fit: cover;
  justify-self: end;
  border-radius: 16px;
}

/* =====================
   TYPOGRAPHY
===================== */
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 0.6rem;
  color: #333;
  max-width: 600px;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* =====================
   BUTTON
===================== */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  background: #22c55e;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* =====================
   LISTS
===================== */
.list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.list div {
  background: #f9f9f9;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
}
.included-list {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .included-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .included-list {
    grid-template-columns: 1fr;
  }
}

.checklist {
  list-style: none;
  margin-top: 1rem;
}

.checklist li::before {
  content: "✔️ ";
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) 
{
  .two-col {
    grid-template-columns: 1fr;
  }

  .list {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: #4b4b4b;
  color: #eaeaea;
  padding: 1.5rem 1.5rem 2.5rem;
  clip-path: polygon(0 12%, 100% 0, 100% 100%, 0 100%);
}

/* vnútorný layout */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: left;
}

/* nadpisy */
.site-footer h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

/* text */
.site-footer p,
.site-footer a {
  font-size: 0.95rem;
  color: #d6d6d6;
  text-decoration: none;
  line-height: 1.6;
}

.site-footer a:hover {
  color: #fff;
}

/* copyright */
.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #cfcfcf;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .site-footer {
    clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
    padding: 4rem 1.2rem 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

/* =====================
   WHY CHOOSE US – moderný dizajn
===================== */
.why-section {
  background: #fafafa;
  padding: 3rem 1.5rem;
  border-radius: 12px;
}

.why-section p {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.why-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  padding: 0 20px;
  text-align: center;
}

.why-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-6px);
}

.icon {
  font-size: 40px;
  color: #b91c1c; /* brand accent */
  margin-bottom: 15px;
}

.why-item h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #222;
}

.why-item p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-section {
    padding: 2rem 1rem;
  }
}

/* =====================
   LANGUAGE SWITCH IN NAV
===================== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  /* na desktope zarovnáme s ostatnými položkami */
}

.lang-label {
  font-size: 0.95rem;
  color: #fff;          /* aby ladilo s menu */
  line-height: 1;
}

.lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 0.95rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.15);
  color: #fff;
  cursor: pointer;
  outline: none;
}

/* lepší kontrast pri hover/focus */
.lang-select:hover,
.lang-select:focus {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.6);
}

/* Ikonka zemegule vedľa selectu na mobile aj desktope */
@media (max-width: 768px) {
  #navbar ul {
    /* už máš vertical list — nič špeciálne netreba */
  }
  .lang-switch {
    justify-content: center;
    margin-top: 0.5rem;
  }
  .lang-label {
    color: #fff;
  }
}

/* Ak chceš menší select na desktope, môžeš pridať: */
@media (min-width: 769px) {
  .lang-select {
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem;
  }
}


.lang-btn {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.15);
  color: #a40a0a;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  font-size: 0.95rem;
  cursor: pointer;
}
.lang-btn:hover { background: rgba(255,255,255,0.25); }
.lang-btn.active { background: rgba(255,255,255,0.35); }


@media (max-width: 768px) {
  .two-col,
  .two-col1 {
    display: grid;
    grid-template-columns: 1fr;  /* jeden stĺpec na mobile */
    gap: 1rem;
  }

  /* Zabezpeč, že obrázok ide na druhý riadok */
  .two-col > img,
  .two-col1 > img {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    max-height: unset;
    object-fit: cover;
    justify-self: stretch;
  }

  .two-col > div:first-of-type,
  .two-col1 > div:first-of-type {
    grid-row: 1;
  }
}
.center-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}
/* ===== PACKAGES SECTION ===== */
#packages {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}

#packages h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #b91c1c; /* Accent color */
}

#packages p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

/* ===== PACKAGE GALLERY GRID ===== */
.package-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ===== PACKAGE CARD ===== */
.package-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.package-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.package-card h3 {
  font-size: 1.4rem;
  margin: 1rem;
  color: #111;
}

.package-card p {
  font-size: 1rem;
  color: #555;
  margin: 0 1rem 1rem;
}

/* ===== BUTTON GROUP ===== */
.btn-group {
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  border-top: 1px solid #eee;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-preview {
  background: #f3f3f3;
  color: #333;
}

.btn-preview:hover {
  background: #e0e0e0;
}

.btn-book {
  background: #b91c1c;
  color: #fff;
}

.btn-book:hover {
  background: #a31616;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #packages h2 {
    font-size: 2rem;
  }
  .package-card img {
    height: 180px;
  }
}
/* =====================
   CONTACT FORM
===================== */
.contact-form {
  display: flex;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.contact-form form {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  resize: vertical;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form .gdpr {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.contact-form button {
  background: #b91c1c;
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #a31616;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem 1rem;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 18px; /* desktop máš cca 16px */
  }
}

