/* Reset osnovni */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* sprječava horizontalni scroll */
  }
 
  

  /* Moderni nav bar */
  .custom-navbar {
    background-color: rgba(0, 0, 0, 0); /* poluprovidna crna */
    backdrop-filter: blur(8px);          /* zamućenje pozadine */
    -webkit-backdrop-filter: blur(8px);  /* za Safari */
    padding: 10px 20px;
    z-index: 999;
  }

  @media (max-width: 768px) {
    .custom-navbar {
      background-color: rgba(0, 0, 0, 0); /* poluprovidna crna */
      backdrop-filter: blur(8px);          /* zamućenje pozadine */
      -webkit-backdrop-filter: blur(8px);  /* za Safari */
      padding: 10px 20px;
      z-index: 999;
    }
  }
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .desktop-image {
    display: block;
  }
  
  .mobile-image {
    display: none;
  }
  
  /* Ispod 1000px koristi mobilnu sliku */
  @media (max-width: 1000px) {
    .desktop-image {
      display: none;
    }
  
    .mobile-image {
      display: block;
    }
  }
  
  
/* Hamburger ikonica stil */
.custom-toggler {
  border: none;
  font-size: 28px;
  color: white;
  background: none;
}

/* Linkovi */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  transition: background 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background-color: #8e6100;
  color: white;
}

/* Mobilni izgled */
@media (max-width: 768px) {
  .navbar-collapse {
    background-color: black;
    padding-bottom: 20px;
  }

  .navbar-nav .nav-link {
    border-bottom: 1px solid #333;
  }

  .navbar-nav .nav-link.active {
    background-color: #8e6100;
  }
}
/* HERO SEKCIJA */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Crna providna pozadina preko videa */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}


  
  .subheading {
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    letter-spacing: 8px;
  }
  
  .main-title {
    font-size: 122px;
    font-family: "Great Vibes", Sans-serif !important;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
  }
  
  /* SEKCIJA RESTORAN */
  .restaurant-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
  }
  
  .restaurant-section .line {
    height: 4px;
    width: 250px;
    background-color: #8e6100;
  }
  
  .restaurant-text {
    color: #fff;
  }
  
  .restaurant-text h2 {
    font-size: 32px;
    font-family: "Montserrat", Sans-serif;
    margin-bottom: 5px;
    font-weight: 700;
  }
  
  .restaurant-text span {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ccc;
  }
  
  

  
  /* Animacija za navigaciju kada se scrolla */
.nav-item {
    text-transform: uppercase !important;
    font-family: "Nunito Sans", Sans-serif;
    color: #ffffff;
    fill: #ffffff;
    padding-left: 11px;
    padding-right: 11px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 0.5px;
}


/* Samo na mobilnim uređajima prikazuj hamburger meni */
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9); /* crna pozadina za mobilni meni */
    padding: 20px;
  }

  .navbar-nav .nav-link {
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
  }

  .navbar-nav .nav-link.active {
    background-color: #8e4e00;
    color: white;
  }
}

/* Na desktopu hamburger meni se ne prikazuje */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}

.since {
    letter-spacing: 8px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    background-position: center;
    background-size: cover;
    padding: 40px 20px;
  }

  .main-title {
    font-size: 54px;
    text-align: center;
  }

  .subheading {
    font-size: 14px;
    letter-spacing: 4px;
    text-align: center;
  }

  .restaurant-section {
    margin-top: 20px;
    flex-direction: row; /* UMJESTO column */
    justify-content: center;
    align-items: center;
    gap: 12px; /* RAZMAK IZMEĐU ELEMENATA */
  }

  .restaurant-section .line {
    width: 50px;     /* duže linije za bočne strane */
    height: 2px;
    background-color: #8e6100;
    margin: 0;       /* uklanjanje margina koje su bile za vertikalni prikaz */
  }

  .restaurant-text h2 {
    font-size: 24px;
    margin: 0;
    text-align: center;
  }

  .restaurant-text span {
    font-size: 13px;
    text-align: center;
    display: block;
  }

  .title-lines {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
  }
}











  /* NOVA SEKCIJA: Slika čista + lokalni gradient iza teksta */
/* Sekcija sa slikom i gradientom */


.slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slideshow-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  z-index: 0;
}

.slideshow-bg.active {
  opacity: 1;
}



.full-image-section {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
}

/* .big-overlay više nije potreban – slika već ima gradient */

.text-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 10px;
  color: #fff;
}

.text-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.text-content p {
  font-size: 18px;
  color: #fff;
  max-width: 800px;
  line-height: 1.7;
}

.highlight {
  color: #8e6100 !important;
  font-family: "Great Vibes", Sans-serif !important;
  font-size: 122px  !important;
  font-weight: 300 !important;
  text-transform: none !important;
}
.highlight-2 {
  color: #8e6100 !important;
  font-family: "Great Vibes", Sans-serif !important;
  font-size: 122px  !important;
  font-weight: 300 !important;
  text-transform: none !important;
}

.premium-h1 {
  font-family: "Montserrat", Sans-serif;
  font-size: 50px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.opis {
  font-family: "Montserrat", Sans-serif;
  font-size: 19px !important;
  font-weight: 300;
  line-height: 1.6em;
  letter-spacing: -0.4px;
  text-shadow: 2px 2px 3px #000000;
  color: #ffffff !important;
  text-align: left !important;
  max-width: 500px;
}


@media (max-width: 768px) {
  .full-image-section {
    background-position: center center;
    background-size: cover;
    height: auto;
    padding: 80px 20px;
  }

  .full-image-section .container {
    max-width: 100%;
  }

  .full-image-section .row {
    flex-direction: column;
    text-align: center;
  }

  .full-image-section .col-md-6:first-child {
    display: none; /* sakrij praznu lijevu kolonu */
  }

  .text-content {
    padding: 0;
    max-width: 100%;
  }

  .premium-h1 {
    font-size: 40px !important;
    line-height: 1.3;
    text-align: center;
  }

  .highlight {
    font-size: 95px !important;
  }
  .highlight-2 {
    font-size: 55px !important;
  }

  .opis {
    font-size: 17px !important;
    padding: 0 10px;
    color: #fff;
    text-align: center !important;
  }

  .big-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0.4) 60%,
      rgba(0, 0, 0, 0.0) 100%
    );
  }
}




  
  
  /* tradicija css sekcijaa */

  .tradition-section {
    position: relative;
    width: 100%;
    height: 95vh;
    background: url('./img/hrana/tradicija-brajlovic.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
  }
  
  .text-block-tradition {
    max-width: 800px;
    padding: 30px;
    z-index: 2;
  }
  
  .tradition-title {
    font-family: "Great Vibes", Sans-serif;
    font-size: 104px;
    font-weight: 300;
    color: #8e6100;
  }
  
  .tradition-paragraph {
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    line-height: 1.7;
    color: #fff;
    text-shadow: 1px 1px 3px #000;
    padding: 0px 100px 0px 100px;
  }
  
  .tradition-signature {
    text-align: center;
    color: #8e6100;
    font-family: "Abhaya Libre", Sans-serif !important;
    font-size: 30px;
    font-style: italic;
    line-height: 1.8em;
  }

  @media (max-width: 768px) {
    .tradition-section {
      height: auto;
      padding: 60px 20px;
      background-position: center;
    }
  
    .text-block-tradition {
      padding: 0 20px;
    }
  
    .tradition-title {
      font-size: 48px;
      line-height: 1.2;
    }
  
    .tradition-paragraph {
      font-size: 17px;
      line-height: 1.6;
      padding: 0;
      margin-top: 20px;
    }
    .tradition-paragraph{
      font-size: 17px !important;
    }
    .footer-description {
      font-size: 17px !important;
    }
    .footer-info p {
      font-size: 17px !important;
    }
    .tradition-signature {
      font-size: 22px;
      margin-top: 25px;
    }
  }

  




  /* ovo je sad za footer */
  .footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 10;
  }
  
  .footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
  }
  
  .footer-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 19px;
    line-height: 1.7;
    
  }
  
  .footer-info p {
    margin: 5px 0;
    font-size: 19px;
    color: #ffd88d;
  }
  
  .footer-social a {
    color: #fff !important;
    margin: 0 10px;
    font-size: 28px;
    transition: 0.3s ease;
    text-decoration: none !important;
  }
  
  .footer-social a:hover {
    color: #d5aa5f;
  }
  
  .footer-bottom {
    margin-top: 25px;
    font-size: 14px;
    color: #ccc;
  }
  
  .powered {
    color: #d5aa5f;
    font-weight: 500;
  }
  



  /* meni */

  .menu-gallery {
    padding: 60px 0;
    background-color: #000;
    text-align: center;
    position: relative;
  }
  
  .menu-title {
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
  }
  
  .menu-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
    padding: 0 40px;
  }
  
  .menu-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }
  
  .menu-slider::-webkit-scrollbar {
    display: none;
  }
  
  .menu-slider img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .menu-slider img:hover {
    transform: scale(1.03);
  }
  
  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    padding: 10px 25px;
    border-radius: 50%;
    transition: background 0.3s;
  }
  
  .scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .scroll-btn.left {
    left: 10px;
  }
  
  .scroll-btn.right {
    right: 10px;
  }
  

  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox-overlay.active {
    display: flex;
  }
  
  .lightbox-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px #000;
    cursor: zoom-out;
  }

  
  .lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 9999;
    user-select: none;
    padding: 10px;
  }
  
  .lightbox-arrow.left {
    left: 20px;
  }
  
  .lightbox-arrow.right {
    right: 20px;
  }
  
  .lightbox-arrow:hover {
    color: #8e6100;
  }
  .flag-icon {
    width: 26px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .flag-icon:hover {
    transform: scale(1.1);
  }
  #langToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  #langIcon {
    height: 14px;
    width: auto;
    object-fit: contain;
  }
  