*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Open Sans', sans-serif;
}
:root{
    --text-color: #fff;
    --bg-color: #000;
    --main-color: #ffa343;

    --h1-font: 6rem;
    --h2-font: 3rem;
    --p-font: 1.2rem;
}
body{
    color: var(--text-color);
    background: var(--bg-color);
}
header{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0));    
    padding: 10px 17%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .50s ease;
}
.logo{
    font-size: 33px;
    color: var(--text-color);
    font-weight: 700;
}
.logo-img{
    height: 70px;
}
span{
    color: var(--main-color);
}
.navbar{
    display: flex;
}
.navbar a{
    color: var(--text-color);
    font-size: var(--p-font);
    font-weight: 500;
    margin: 15px 22px;
    transition: all .50s ease;
}
.navbar a:hover{
    color: var(--main-color);
}
.h-right{
    display: flex;
    align-items: center;
}
.h-right a:first-child{
    color: var(--text-color);
    font-size: var(--p-font);
    margin-right: 20px;
}
.h-right a{
    vertical-align: middle;
    font-size: 20px;
    color: var(--text-color);
    margin-right: 18px;
    margin-left: 5px;
    transition: all .50s ease;
}
.h-right a:hover{
    color: var(--main-color);
    transform: translateY(-3px);
}
#menu-icon{
    color: var(--text-color);
    font-size: 30px;
    cursor: pointer;
    z-index: 10001;
    display: none;
}

section{
    padding: 70px 17% 60px;
}
/* SLIDER ZA .home sekciju */

.home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.home::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* visina fade-a */
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    z-index: 4; /* iznad slika, ispod teksta */
    pointer-events: none;
  }
  
.home-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* ili viši ako treba */
    touch-action: pan-y; /* dozvoljava horizontalni swipe */

}
  
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    pointer-events: none; /* Ne hvata klikove, swipe ostaje slideru */

}
  
.slide.active {
    opacity: 1;
    z-index: 2;
}
  
  /* Crni gradijent preko slika */
.home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.0) 100%);
    z-index: 3;
}
  
  /* Tekst iznad slajdera */
.home-text {
    position: relative;
    z-index: 4;
    padding-left: 50px;
    color: white;
    pointer-events: none; /* ne prima klikove/swipe */
    z-index: 3; /* ako treba bude iznad */
}
  
  /* Tackice ispod slajdera */
.dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 5;
}
  
.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}
  
.dot.active {
    background-color: white;
}
  
.home-text h5{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--main-color);
}
.home-text h1{
    font-size: var(--h1-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}
.home-text p{
    font-size: var(--p-font);
    font-weight: 500;
    line-height: 30px;
    color: #ffffffab;
    margin-bottom: 35px;
}
.btn{
    display: inline-block;
    padding: 13px 40px;
    background: var(--main-color);
    color: var(--bg-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all .50s ease;
    cursor: pointer;
}
.btn:hover{
    transform: translateX(10px);
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
}

header.sticky{
    padding: 8px, 17%;
    background: transparent;
    backdrop-filter: blur(35px);
}

/*------------------TURE-------------------------*/
.feature {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
    margin: 60px auto;
    max-width: 1450px;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.feature-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #2c5e42; /* maslinasto zelena */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
  }
  
  .feature-title span {
    color: #ffa343; /* narandžasta za naglasak */
    font-style: italic;
    font-weight: 900;
  }
  
  /* Moderan underline efekat */
  .feature-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffa343;
    margin: 15px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  
  .feature-title:hover::after {
    width: 120px;
  }
  
.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
  
.tour-card {
    display: flex;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
  
.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
  
.tour-card img {
    width: 40%;
    object-fit: cover;
    height: 100%;
}
  
.tour-info {
    padding: 20px;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
  
.tour-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}
  
.tour-info p {
    color: #555;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.4;
}
  
.btn-tour {
    margin-top: auto;
    align-self: flex-start;
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffa343;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
  
.btn-tour:hover {
    background-color: #e48f1a;
}
  
/*-------------about us-------------------*/

.about-section {
    background-color: #0e1a17;
    padding: 60px 20px;
    color: #e8e8e8;
    font-family: 'Segoe UI', sans-serif;
    max-width: 1250px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 0 0 10px #000; /* crni omot kao kod .feature */
  }
  
  .about-header {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .about-header h2 {
    font-size: 3.5rem;
    color: #ffa343;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .about-header h2 span {
    color: #2c5e42;
  }
  
  .about-header p {
    font-size: 1.2rem;
    color: #ccc;
  }
  
  .about-block {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
  
  .about-block.reverse {
    flex-direction: row-reverse;
  }
  
  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .about-image img:hover {
    transform: scale(1.02);
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h3 {
    font-size: 2rem;
    color: #ffa343;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #bbb;
  }
  
  .about-history {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
  }
  
  .about-history h3 {
    font-size: 2rem;
    color: #ffa343;
    margin-bottom: 20px;
  }
  
  .faq-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  .faq-section h3 {
    font-size: 2rem;
    color: #ffa343;
    margin-bottom: 30px;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #2c5e42;
  }
  
  .faq-question {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    color: #e8e8e8;
    text-align: left;
    cursor: pointer;
    padding: 15px 0;
    transition: color 0.3s ease;
  }
  
  .faq-question:hover {
    color: #2c5e42;
  }
  
  .faq-answer {
    display: none;
    padding-bottom: 15px;
    color: #aaa;
    text-align: left;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  .animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
/*--------------nova galerijaa-----------------*/
.gallery-section {
  padding: 60px 20px;
  background-color: #000;
  color: #2c5e42;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}
.panorama-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.gallery-title {
  font-size: 3rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gallery-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background-color: #2c5e42;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}

.masonry-gallery {
  column-count: 3;
  column-gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.masonry-gallery img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.masonry-gallery img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 1024px) {
  .masonry-gallery {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masonry-gallery {
    column-count: 1;
  }
}

  /*------------footer---------------*/
  /* General Footer Styles */
footer {
    background-color: #0e1a17;
    color: #e8e8e8;
    padding: 40px 10%;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

/* Footer container */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Footer Section */
.footer-section {
    flex: 1;
    min-width: 250px;
    margin-right: 20px;
}

.footer-title {
    color: #ffa343;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-link {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 1.1rem;
}

.footer-link:hover {
    color: #ffa343;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

/* Social Media Icons */
.social-media {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    min-width: 250px;
    margin-right: 20px;
}

.social-icon {
    color: #e8e8e8;
    font-size: 2rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #ffa343;
}

/* Footer Bottom Section */
.footer-bottom {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

  
  /*---------------pojedinacne ture-------------------*/
  /* Stilizacija za sekciju sa informacijama o turi */
/* Globalni stilovi */
body {
  font-family: 'Arial', sans-serif;
  background-color: #000000;
  margin: 0;
  padding: 0;
  color: #333;
}

.image-section {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.image-section img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 80%; /* ostavlja razmake sa strane */
  max-width: 900px; /* ograničava maksimalnu širinu na većim ekranima */
}


/* Stilizacija za sekciju sa informacijama o turi */
.tour-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px auto;
  padding: 30px;
  max-width: 900px;
  background-color: rgba(255, 255, 255, 0.89);
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  
}

.tour-details:hover {
  transform: translateY(-10px);
}

/* Stilizacija slike */
.tour-image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tour-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stilizacija teksta */
.tour-text {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.tour-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: bold;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 10px;
}

.tour-text h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #f97b22; /* Narandžasta - možeš i staviti #4CAF50 za zelenu */
  border-radius: 2px;
}
.tour-text p {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-left: 5px solid #f97b22; /* Promeni u zelenu ako želiš (#4CAF50) */
  border-radius: 6px;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.7;
  text-align: left;
  color: #444;
}

.tour-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #444;
  font-weight: 600;
}
.tour-details:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}


/* Uvodni info blok */
.tour-info-summary {
  background-color: #000000; /* svetlo zelena */
  padding: 50px 0;
  text-align: center;
}

.tour-info-box {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffffe3;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tour-info-box h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2e7d32; /* tamnija zelena */
}

.tour-info-box ul {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.price-list {
  list-style: disc inside;
  margin-top: 5px;
  padding-left: 20px;
}

.tour-info-box a {
  color: #388e3c;
  text-decoration: underline;
}

.tour-note {
  font-style: italic;
  color: #666;
  margin-top: 20px;
}

/*------------responsive--------------*/

@media (max-width: 1700px){
  header{
      padding: 18px 8%;
  }
  header.sticky{
      padding: 7px 8%;
  }
  section{
      padding: 50px 8% 40px;
  }

}

@media (max-width: 1200px){
  header{
      padding: 14px 5%;
  }
  header.sticky{
      padding: 7px 5%;
  }
  section{
      padding: 45px 5% 35px;
  }
  :root{
      --h1-font: 4.6rem;
      --h2-font: 2.8rem;
      --p-font: 15px;
  }
  .home{
      height: 90vh;
  }

}


@media (max-width: 1050px){
  #menu-icon{
      display: block;
  }
  .navbar{
      position: absolute;
      width: 100%;
      height: 100vh;
      padding: 40px 60px;
      top: 0;
      bottom: 0;
      left: 100%;
      right: 0;
      display: flex;
      flex-direction: column;
      background: var(--bg-color);
      transition: all .50s ease;
  }
  .navbar a{
      display: block;
      color: #979797;
      padding: 0;
      margin: 0px 0px 40px 0px;
      font-size: 1.7rem;
      font-weight: 400;
  }
  .navbar.open{
      left: 0;
  }
  
}

@media (max-width: 900px) {
  .feature-content {
  grid-template-columns: 1fr;
  }
  
  .tour-card {
      flex-direction: column;
  }
  
  .tour-card img,
  .tour-info {
      width: 100%;
  }
  
  .tour-card img {
      height: 220px;
  }
  .feature-title{
      font-size: 2rem;
  }
  .logo-img{
    height: 45px;
}
}

@media (max-width: 768px) {
  .tour-details {
      padding: 20px;
      margin: 20px;
  }

  .tour-text h2 {
      font-size: 1rem;
  }

  .tour-text ol li {
      font-size: 0.8rem;
  }
  .tour-text p{
    font-size: 0.8rem;
  }
  .home {
    padding-top: 80px; /* prostor ispod navbar-a */
    height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .home-text {
    padding: 0 20px;
    text-align: center;
    position: relative;
    top: auto;
    transform: none;
    z-index: 2.5;
  }

  .home-text h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
  }

  .home-text h5 {
    font-size: 1rem;
    text-align: center;
  }

  .home-slider .slide {
    background-size: cover;
    background-position: center;
  }

  .dots {
    bottom: 15px;
  }

  .navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
  }
  .about-header h2{
      font-size: 2.5rem;
  }
  .about-text p{
      font-size: 0.9rem;
  }
  .about-history p{
      font-size: 0.9rem;
  }
  .faq-answer li{
      font-size: 0.9rem;
  }
  .gallery-wrapper {
      overflow: hidden;
  }
  .gallery-container {
      scroll-snap-type: x mandatory;
      overflow-x: hidden;
      display: flex;
      transition: transform 0.5s ease;
      width: 100%;
      scroll-behavior: smooth;
      padding: 0;
      scrollbar-width: none;
  }
  
  .gallery-container img {
      flex: 0 0 100%;
      width: 100vw;
      height: auto;
      object-fit: cover;
      scroll-snap-align: center;
      margin: 0;
      padding: 0;
  }
  .logo-img{
      height: 50px;
  }
  .footer-container {
      flex-direction: column;
      align-items: center;
  }
  .gallery-title{
      font-size: 2rem;
  }
  
  .tour-details {
    padding: 20px 10px; /* manji padding sa strane */
    margin: 20px 10px;
  }

  .tour-text {
    padding: 10px 0;
    text-align: left; /* ostavimo tekst poravnan na lijevo */
  }

  .tour-text h2 {
    font-size: 1.8rem;
    text-align: center;
  }

  .tour-text p {
    font-size: 1rem;
    padding: 0; /* ukida padding iznutra */
    margin: 20px 0;
    line-height: 1.6;
    border-left: none; /* briše onu narandžastu traku sa lijeve strane */
    background-color: transparent; /* briše pozadinu iz paragrafa */
  }
}

/*ikonice*/
.phone-line {
  display: flex;
  align-items: center;
  gap: 8px; /* razmak između ikonice i broja */
  font-size: 16px;
  color: #333;
}

.phone-line svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #0077cc; /* ili bilo koja boja */
}
