* { box-sizing: border-box; }

body {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #100c0f;
}



/* HEADER */
.site_header{
  background: #100c0f;
  display: flex;
  align-items: center;
  justify-content: center;   /* bolo center */
  gap: 16px;
  padding: 0 16px;
  height: 80px;                    /* pevná výška pre top:80px */
  position: relative;              /* aby absolute nav sedel na header */
  overflow: visible;               /* nech dropdown môže ísť pod header */
  z-index: 99999;                  /* aby header bol nad hero obrázkom */
}

/* LOGO */
.logo{
  width: auto;                     /* bolo 100% (tlačilo hamburger preč) */
  max-width: 560px;
  height: 80px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  flex-shrink: 0;
}

.logo img{
  width: auto;
  height: 100%;
  display: block;                  /* aby logo “nenafúklo” */
}

/* h1 – zjednotené (mal si duplicitné bloky) */
.logo h1{
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #cccccf;
  font-size: clamp(16px, 3.5vw, 22px);
  white-space: nowrap;
  margin: 0;
  position: static;                /* zrušené right posúvanie */
}

/* NAV */

.main_nav a{
  color: #AEB8C2;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 4px;
  transition: opacity .2s ease;
}

.main_nav a:hover{
  opacity: .7;
}

/* HAMBURGER button */
.nav_toggle{
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(174,184,194,.25);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
flex-direction: column;
justify-content: center;
align-items: stretch;
gap: 6px;
 flex-shrink: 0;
}

.nav_toggle__bar{
  display: block;
  width: 100%;
  background: #AEB8C2;
  border-radius: 999px;
  background-color: #AEB8C2;
height: 2px;
opacity: 1;
}



.nav_toggle__bar{ transition: transform .2s ease, opacity .2s ease; }

.nav_toggle.is-open .nav_toggle__bar:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.nav_toggle.is-open .nav_toggle__bar:nth-child(2){ opacity: 0; }
.nav_toggle.is-open .nav_toggle__bar:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE/TABLET – hamburger od 950px + menu sa otvorí až po kliknutí */
@media (max-width: 950px){
  .nav_toggle{
    display: flex;
    align-items: center;
    justify-content: center;
  }

   .main_nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;

    background: #100c0f;

    overflow: hidden;
    max-height: 0;              /* ZATVORENÉ */
    transition: max-height .35s ease;

    z-index: 99999;
  }

  .main_nav a{
    display: block;
    width: 100%;
    padding: 14px 16px;
  }

  .main_nav.is-open{
    max-height: 240px;          /* OTVORENÉ */
  }

}

@media (max-width: 590px){

  .logo {
    gap: 0;
  }

  .logo h1{
    font-size: 18px;
    margin-left: -4px;
  }

  .nav_toggle {
    margin-right: 35px;
  }

    .intro_photo{
    height: 520px; /* alebo clamp(...) ak chceš */
  }

  .intro_photo img{
    object-position: center 70%; /* na mobile ukáže viac spodnej časti */
  }

}

/* MAIN */


.intro_photo{
  width: 100%;
  height: clamp(420px, 90vh, 810px);
  position: relative;
  overflow: hidden;
}

/* IMG: cover + “zoom-out” efekt pri menších šírkach cez scale */
.intro_photo img{
  width: 100%;
  height: 100%;
  opacity: 75%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.18);              /* desktop zoom */
  transform-origin: center;
  transition: transform .35s ease, object-position .35s ease;
  display: block;
}

/* overlay */
.intro_photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.35),
    rgba(0,0,0,.55)
  );
  z-index: 1;
}

/* text */
.intro_center{
  position: absolute;
  inset: 0;
  z-index: 2; /* nad overlayom */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: clamp(10px, 2vw, 28px); /* medzera medzi h2 a p */
  padding: 0 clamp(16px, 6vw, 140px);
  text-align: center;
}

/* H2 – farby nech sú viditeľné */
.intro_center h2{
  margin: 0;
  max-width: 1400px;
  color: #fff;
  font-size: clamp(20px, 3.2vw, 52px);
  line-height: 1.15;
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

/* P – Montserrat thin + farba */
.intro_center p{
  margin: 0;
  max-width: 1100px;

  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.6;

  letter-spacing: 0.06em;

  color: rgba(255,255,255,.90);
  text-shadow: 0 8px 24px rgba(0,0,0,.35);
  text-align: left;
}

.intro_center a {
    text-decoration: none;
    color: #cccccf;
    background: #d86d26;
    padding: 15px;
    border-radius: 15px;
    position: relative;
    top: 5%;

}

/* tablet */
@media (max-width: 950px){
  .intro_photo{
    height: clamp(340px, 55vh, 560px);
  }
  .intro_photo img{
    transform: scale(1.08);
    object-position: center 45%;
  }
}

/* okolo 700px */
@media (max-width: 700px){
  .intro_photo{
    height: clamp(300px, 48vh, 460px);
  }
  .intro_photo img{
    transform: scale(1.03);
    object-position: center 55%;
  }
  .intro_photo p{
    top: 60%;
    padding: 0 28px;
  }

  
}


  @media (max-width: 560px){
  .intro_photo{
    height: clamp(
      320px,
      65svh,   /* NAMIesto vh */
      520px
    );

  }

  .intro_photo img{
    transform: scale(1.00);
    object-position: center 60%;
  }

    .intro_photo p{
    top: 62%;
    padding: 0 20px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }
}




/* mobil */
@media (max-width: 480px){
  .intro_photo{
    height: clamp(
      300px,
      70svh,
      560px
    );
  }

  .intro_photo p{
    top: 64%;
  }
}

.about{
  background: #f1f0f0;
  padding: clamp(40px, 6vw, 90px) 20px;
  display: flex;
  justify-content: center;
}

/* kontajner s textom a fotkou */
.about_photo{
  width: min(1100px, 100%);           /* zarovnanie na text + max šírka */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* text trochu širší než fotka */
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
}

/* text */

.about_text h2{
  margin: 0 0 8px 0;   /* malý odstup od p */
  font-size: 88px;
  color: #afacac;
  text-transform: uppercase;

}

.about_text p{
  margin: 0;
  color: #505051;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.7;
  max-width: 60ch;                    /* pekná šírka riadkov */
}

/* fotka */
.about_photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

/* mobile */
@media (max-width: 900px){
  .about_photo{
    grid-template-columns: 1fr;
  }

  .about_photo p{
    max-width: 100%;
  }

  .about_photo p {
    padding: 5px 0 0 12px;
  }

  .about_text h2 {
      text-align: center;
      font-size: 48px;
  }

}


.price-section {
  padding: clamp(40px, 8vw, 120px) 16px;
  background-color: #1a1a1a;
}

/* Glass efekt na celú kartu + rovnomerný tieň hore aj dole */
.price-list {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 32px);

  background: rgba(255, 255, 255, 0.06); /* jemná transparentnosť */
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  border-radius: 18px;

  /* rovnomerný tieň okolo celej karty */
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);

  color: #ffffff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Nadpis */
.price-list h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Položky – mierne priehľadné, sklo rovnomerné */
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(12px, 2.6vw, 16px);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.03); /* jemná vrstva nad blurom */
  margin-bottom: 10px;

  font-size: clamp(14px, 2.4vw, 16px);
}

/* Názov a cena */
.price-item__name {
  color: rgba(255, 255, 255, 0.95);
}

.price-item__price {
  color: #ababab;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 420px) {
  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* Hover efekt */
@media (hover: hover) {
  .price-item {
    transition: background 180ms ease, transform 180ms ease;
  }

  .price-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
  }
}

  .contact-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 42px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 8px;
}

.contact-item a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.contact-item p {
  font-size: 18px;
  line-height: 1.5;
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opening-hours li {
  font-size: 16px;
  margin-bottom: 6px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

.contact-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 36px;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #fff;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    min-height: 300px;
  }
}

.gallery-section {
  background-color: #1d1d1d; 
  padding: 5px 20px;
}

.gallery-section h2 {
  text-align: center;
  text-transform: uppercase;
  color: #a8a8a8;
}

.gallery {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.item {
  border-radius: 16px;
  overflow: hidden;
}

.item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.item:hover img {
  transform: scale(1.05);
}

/* Mobil – obrázky pod sebou */
@media (max-width: 640px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .item img {
    height: 220px;
  }
}