
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #7b2cbf 0%, #240046 70%);
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */

.navbar {
  width: 100%;
  background: #0b1d2a;
  padding: 25px 60px;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 90px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #d4af37;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  opacity: 0.95;
}

.book-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: #d4af37;
  color: #0b1d2a;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  font-weight: 500;
}

.book-btn:hover {
  background: white;
}

/* ================= TOUR DETAILS ================= */

.tour-info {
  padding: 120px 20px;
  text-align: center;
}

.info-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.info-box {
  background: rgba(255,255,255,0.07);
  padding: 35px 20px;
  border-radius: 20px;
  transition: 0.4s ease;
}

.info-box:hover {
  transform: translateY(-8px);
}

.highlight {
  background: linear-gradient(135deg,#f4a261,#e76f51);
}

/* ================= INCLUDED ================= */

.included {
  padding: 100px 20px;
  text-align: center;
}

.included-box {
  max-width: 700px;
  margin: 40px auto 0;
}

.included-box p {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* ================= GALLERY ================= */

.gallery {
  padding: 100px 20px;
  text-align: center;
}

.gallery-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.07);
}

/* ================= CONTACT ================= */

.booking {
  padding: 100px 20px;
  text-align: center;
}

.contact-person a {
  color: #d4af37;
  text-decoration: none;
}

.contact-person a:hover {
  color: white;
}

/* ================= FOOTER ================= */

.footer {
  text-align: center;
  padding: 60px 20px;
  background: #0b1d2a;
}

/* ================= RESPONSIVE ================= */

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  /* NAV - logo gore, linkovi ispod */
  .navbar { padding: 16px 16px; }

  .nav-container {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .logo { height: 70px; }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .nav-links a { font-size: 18px; }

  /* ostatak responsive-a */
  .hero h1 { font-size: 38px; }
  .gallery-grid { grid-template-columns: 1fr; }
}/* ===== FORCE MOBILE NAV LAYOUT (logo gore) ===== */
@media (max-width: 768px) {

  .nav-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .logo {
    height: 70px !important;
    margin-bottom: 10px !important;
  }

  .nav-links {
    display: flex !important;
    justify-content: center !important;
    gap: 18px !important;
  }

}
