* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body {
    font-family:'Poppins',sans-serif;
    background: linear-gradient(to bottom, #5fa8ff 0%, #0e2a47 60%);
    color:white;
    overflow-x:hidden;
}

/* ================= NAVBAR ================= */

.navbar {
    width:100%;
    padding:25px 60px;
    background:#0b1d2a; /* puna boja bez blur */
}

.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 {
    color:white;
    text-decoration:none;
    transition:0.3s ease;
}

.nav-links a:hover {
    color:#d4af37;
}

/* ================= HERO ================= */

.hero {
    height:90vh;
    background:url("images/dolphins-hero.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

.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;
}

.book-btn {
    display:inline-block;
    margin-top:25px;
    padding:14px 36px;
    background:#d4af37;
    color:#0e2a47;
    text-decoration:none;
    border-radius:30px;
    transition:0.3s ease;
}

.book-btn:hover {
    background:white;
    transform:scale(1.05);
}

/* ================= 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:auto;
}

.info-box {
    background:rgba(255,255,255,0.06);
    padding:35px 20px;
    border-radius:20px;
    transition:0.4s ease;
}

.info-box:hover {
    transform:translateY(-8px);
}

.highlight {
    background:linear-gradient(135deg,#4fc3f7,#0288d1);
}

/* ================= 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);
}

/* ================= VIDEOS ================= */

.videos {
    padding:100px 20px;
    text-align:center;
}

.video-grid {
    margin-top:50px;
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.video-grid video {
    width:320px;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}

/* ================= GALLERY ================= */

.gallery {
    padding:100px 20px;
    text-align:center;
}

.gallery-grid {
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1100px;
    margin:auto;
}

.gallery-grid img {
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.gallery-grid img:hover {
    transform:scale(1.07);
}

/* ================= CONTACT ================= */

.booking {
    padding:100px 20px;
    text-align:center;
}

.contact-box {
    margin-top:40px;
    font-size:18px;
}

.contact-box p {
    margin-bottom:10px;
}

.contact-box a {
    color:#d4af37;
    text-decoration:none;
    transition:0.3s;
}

.contact-box a:hover {
    color:white;
}

/* ================= FOOTER ================= */

.footer {
    text-align:center;
    padding:40px;
    opacity:0.7;
}

/* ================= LIGHTBOX ================= */

.lightbox {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.lightbox-img {
    max-width:85%;
    max-height:80%;
}

.close,.prev,.next {
    position:absolute;
    font-size:40px;
    color:white;
    cursor:pointer;
}

.close { top:30px; right:40px; }
.prev { left:40px; }
.next { right:40px; }

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
    .gallery-grid { grid-template-columns:1fr; }
    .video-grid video { width:100%; max-width:340px; }
    .hero h1 { font-size:40px; }
}.disclaimer{
    max-width:700px;
    margin:40px auto 0;
    font-size:14px;
    opacity:0.7;
    text-align:center;
}

.yt-link{
    display:inline-block;
    padding:14px 30px;
    background:#d4af37;
    color:#0e2a47;
    border-radius:30px;
    text-decoration:none;
    margin:10px;
    transition:0.3s;
}

.yt-link:hover{
    background:white;
}
/* CONTACT LINKS FIX */

.booking a,
.contact-box a,
.contact-person a {
    color: #d4af37;   /* zlatna kao na ostalim stranicama */
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.booking a:hover,
.contact-box a:hover,
.contact-person a:hover {
    color: white;
}

/* HERO IMAGE SEO FIX */

.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;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}/* ===== GLOBAL MOBILE OVERFLOW FIX (safe, no visual redesign) ===== */
html, body {
  width: 100%;
  overflow-x: hidden; /* spriječi horizontalni scroll */
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Dugački linkovi (email/URL) da se ne rastegnu van ekrana */
a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* ===== NAVBAR MOBILE FIX ===== */
@media (max-width: 768px) {
  .navbar { padding: 16px 16px; }

  .nav-container {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .logo { height: 70px; }

  /* Gridovi i flex sekcije neka nikad ne pređu 100% širine */
  .info-grid,
  .gallery-grid,
  .video-grid,
  .included-box {
    max-width: 100%;
  }
}
