/* === FONTS === */
@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins-Regular.ttf);
    font-weight: normal;
}
@font-face {
    font-family: Poppins;
    src: url(fonts/Poppins-ExtraBold.ttf);
    font-weight: bold;
}

/* === GLOBAL === */
html {
    background: #020402;
}
body {
    margin: 0;
    font: 16px "Poppins";
    color: var(--muted);
    padding-top: 100px;
    background: none; /* odstráni farbu pozadia */
    background-image: url('images/holi.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}






/* === HEADER === */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #df0909;
    display: flex;
    justify-content: flex-start; /* všetko doľava */
    align-items: center;
    padding: 0 20px;
    z-index: 1000; /* nad videom aj textom */
    
}

#logo {
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url('images/logo.png') no-repeat;
    background-size: 40px 40px;
    
}

#logo > * { margin-left: 60px;  /* posunutie loga doprava */ }
#logo h1 { font-weight: normal; font-size: 1.5em; line-height: 1.2em; color: white; margin-left: 40px; }
#logo h1 span { font-weight: bold; text-transform: uppercase; }
#logo small { text-transform: uppercase; font-size: 0.75em; color: white;}

/* === NAV === */
nav ul {
    margin-left: 40px; /* odsunutie doprava */
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    
}



nav ul li { padding: 0 25px; margin: 0 5px; line-height: 4.3em; }
nav ul a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 0;
}
nav ul a:hover, .active a { border-bottom: 2px solid #EF6534; }

/* === HAMBURGER === */
.menu-toggle {
    font-size: 2.5rem;
    cursor: pointer;
    display: none; /* default desktop hidden */
    position: relative;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    z-index: 1100;
    transition: color 0.3s ease;
}
.menu-toggle:hover { color: #ffd36a; }

/* === ARTICLE === */
article {
    margin: 0 auto;
    max-width: 900px;
    padding: 20px;
    background: rgba(4, 1, 1, 0.3);
    border-radius: 12px;
    z-index: 1;
    position: relative;
    color: white;
}
article h1 { margin: 0; font-size: 2em; font-weight: bold; text-transform: uppercase; border-bottom: 4px solid #efc47f; width: max-content; }
article h2 { font-size: 1.7em; }
article section p { margin-bottom: 1.2em; line-height: 1.8em; }
article section a { color: #EF6534; }
.avatar { float: right; width: 250px; padding-left: 10px; }
.cleaner { clear: both; }

/* === FOOTER === */
footer {
    box-sizing: border-box;
    text-align: center;
    background: #414042;
    color: white;
    padding: 50px 20px 20px 20px;  /* viac paddingu dole */
    position: relative;             /* alebo static */
    z-index: 10;                    /* nad článkom */
    clip-path: polygon(0 30px, 100% 0, 100% 105%, 0 105%);
    overflow: visible;              /* zabezpečí, že nič nebude odrezané */
}

/* === BUTTONS === */
.references-button, .contact-button {
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    border-radius: 25px;
    padding: 12px 25px;
}
.references-button { background: #70B73A; }
.contact-button { background: #a5e01c; }
.references-button:hover, .contact-button:hover { filter: brightness(115%) contrast(85%); }

/* === MOBILE MENU === */
@media (max-width: 960px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 30px;
    z-index: 1100; /* nad všetkým */
    color: white; /* nech je viditeľný */
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100vh;
    padding-top: 100px;
    background: rgba(223, 9, 9, 0.95);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1050;
  }

  nav.show {
    transform: translateX(0);
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  nav ul li {
    padding: 10px 0;
  }
}


/* === DESKTOP NAV === */
@media (min-width: 961px) {
    nav { display: flex; align-items: center; }
}
/* === CONTACT FORM === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* medzery medzi poľami */
    margin-top: 20px;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1em;
    box-sizing: border-box;
}

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

.contact-form button {
    align-self: flex-start;
    background: #a5e01c;
    color: #414042;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #c9ff55;
}
/* === WHY VISIT INDIA SECTION === */
#why-india {
    text-align: center;              /* centrovanie textu */
    max-width: 900px;                /* primeraná šírka textového bloku */
    margin: 60px auto;               /* odsadenie a centrovanie sekcie */
    line-height: 1.8;                /* lepšia čitateľnosť */
    font-size: 1.4em;                /* zväčšenie textu */
    color: #fff;                     /* biely text */
}

#why-india h2 {
    font-size: 2.5em;                /* väčší nadpis */
    margin-bottom: 20px;
    border-bottom: 3px solid #efc47f; /* ozdobná linka */
    display: inline-block;           /* linka len pod textom */
    padding-bottom: 5px;
    text-transform: uppercase;       /* nadpis veľkými písmenami */
}

#why-india p {
    margin-bottom: 1.2em;
}

#why-india .highlight {
    font-size: 1.3em;
    font-weight: bold;
    color: #ffd36a;
}
/* === TRAVEL PACKAGES === */
#packages {
  text-align: center;
  color: #fff;
  margin: 40px auto;
  max-width: 1000px;
}

#packages h2 {
  font-size: 2.3em;
  margin-bottom: 10px;
  border-bottom: 3px solid #efc47f;
  display: inline-block;
  padding-bottom: 5px;
}

.package-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.package-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  width: 260px;              /* 🟢 menšia šírka */
  padding: 15px;             /* menej vnútorného priestoru */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card img {
  width: 100%;
  height: 160px;             /* 🟢 menší obrázok */
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.package-card h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #ffd36a;
}

.package-card p {
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 15px;
}

.package-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* === BUTTONS IN CARDS === */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn {
  background: #a5e01c;
  color: #000;
  padding: 8px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn.secondary {
  background: #70b73a;
  color: #fff;
}

.btn:hover {
  background: #efc47f;
}
.lightbox-content img,
.lightbox-content video {
    max-width: 90vw;      /* maximálne 90% šírky obrazovky */
    max-height: 80vh;     /* maximálne 80% výšky obrazovky */
    width: auto;
    height: auto;
    object-fit: contain;   /* zachová proporcie */
    border-radius: 12px;
}
/* zmena farby linkov v patičke */
footer a {
    color: #ffd36a;  /* nová farba linkov */
    text-decoration: none; /* môžeš zachovať alebo nastaviť underline */
}

/* voliteľne efekt pri hover */
footer a:hover {
    color: #efc47f;  /* farba pri najetí myšou */
    text-decoration: underline; /* podčiarknutie pri hover */
}
.date-picker {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0 15px;
}

.date-picker label {
    font-weight: bold;
    font-size: 14px;
}

.date-picker input[type="date"] {
    padding: 6px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.day-card img {
  width: 100%;
  height: 220px; /* upraviteľná výška */
  object-fit: cover;
  border-radius: 12px 12px 0 0; /* jemne zaoblené rohy */
}

.day-card {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
/* GRID - DESKTOP */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 karty vedľa seba */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1200px;
}

/* GRID - TABLET / MOBILE */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr; /* 1 karta vedľa druhej */
  }
}

.day-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

/* Obrázok */
.day-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 12px 12px 0 0;
}

/* Text pod obrázkom */
.day-card .content {
  padding: 16px;
  color: #222;
  background: #fff;
}

/* 3D efekt pri hover na kartu */
.day-card:hover {
  transform: translateZ(10px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.day-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.availability {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  max-width: 400px;
}

.availability li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px; /* tu zmenšíš medzeru – môžeš dať aj 5px */
  background: #010000;
  padding: 12px 4px;
  margin-bottom: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.status {
  padding: 6px 6px;
  border-radius: 8px;
  font-weight: 600;
}

.status.free {
  background-color: #0a0c0a;
  color: #137513;
}

.status.few {
  background-color: #fff4d1;
  color: #b88700;
}

.status.full {
  background-color: #070606;
  color: #8a0000;
}
.float-right {
    float: right;
    width: 250px;
    margin: 0 0 15px 15px;
    border-radius: 8px;
}

.float-left {
    float: left;
    width: 250px;
    margin: 0 15px 15px 0;
    border-radius: 8px;
}

#intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  border-radius: 10px;
  pointer-events: none;
}
