@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #4a8c5c;
  --green-pale: #e8f5ec;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --cream: #faf7f2;
  --cream-dark: #f0ead8;
  --charcoal: #1c1c1c;
  --text-muted: #6b7280;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26,58,42,0.08);
  --shadow-md: 0 8px 32px rgba(26,58,42,0.12);
  --shadow-lg: 0 20px 60px rgba(26,58,42,0.18);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(26,58,42,0.92) 0%, rgba(26,58,42,0.6) 60%, rgba(26,58,42,0.3) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.hero-content .eyebrow { color: var(--gold-light); margin-bottom: 1.2rem; }

.hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
}

.hero-stat-value span { color: var(--gold-light); }

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.2rem;
}

/* ─── SECTIONS ─── */
.section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.centered {
  text-align: center;
}

.section-header h2 { margin-top: 0.5rem; color: var(--green-dark); }
.section-header p { margin-top: 1rem; color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }
.section-header.centered p { margin: 1rem auto 0; }

/* ─── TOUR CARDS ─── */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tour-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-img img { transform: scale(1.06); }

.tour-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.tour-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-card-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.tour-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tour-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}

.tour-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.2rem;
}

.tour-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
}

.tour-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--green-mid);
  font-weight: 700;
}

.tour-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  border-radius: var(--radius);
  background: var(--green-pale);
  color: var(--green-mid);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
}

.btn-sm:hover {
  background: var(--green-mid);
  color: var(--white);
}

/* ─── WHY US / FEATURES ─── */
.features-section {
  background: var(--green-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), background var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ─── DESTINATIONS ─── */
.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 1rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.dest-card:first-child {
  grid-row: 1 / 3;
}

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img { transform: scale(1.06); }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
}

.dest-tours {
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-top: 0.2rem;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-mid);
}

.author-name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.author-location { font-size: 0.78rem; color: var(--text-muted); }

/* ─── NEWSLETTER ─── */
.newsletter-section {
  background: var(--green-mid);
  text-align: center;
}

.newsletter-section h2 { color: var(--white); }
.newsletter-section p { color: rgba(255,255,255,0.7); margin: 0.8rem auto 2rem; max-width: 480px; }

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { background: rgba(255,255,255,0.22); }

/* ─── FOOTER ─── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.12);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ─── PAGE HERO (unutarnje stranice) ─── */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1400&q=80') center/cover no-repeat;
  opacity: 0.2;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 0.8rem; }
.page-hero h1 { color: var(--white); max-width: 700px; margin: 0 auto; }
.page-hero p { color: rgba(255,255,255,0.65); margin: 1rem auto 0; max-width: 520px; font-size: 1.05rem; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 1rem 2rem;
  background: var(--cream-dark);
  font-size: 0.83rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--green-mid); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* ─── FILTER BAR ─── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

/* ─── GALLERY GRID ─── */
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.5rem;
  color: var(--white);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h3 { color: var(--green-dark); margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail-text span { color: var(--charcoal); font-size: 0.95rem; }

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.blog-tag {
  background: var(--green-pale);
  color: var(--green-mid);
  padding: 2px 8px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.blog-card h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }
.blog-read-more { font-size: 0.85rem; font-weight: 600; color: var(--green-mid); display: flex; align-items: center; gap: 4px; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--green-dark);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.about-img-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1;
}

.about-img-badge span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

.about-content h2 { color: var(--green-dark); margin-bottom: 1.2rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--green-mid);
  margin: 0 auto 1rem;
  border: 3px solid var(--green-pale);
}

.team-card h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: 0.3rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
}

.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--transition);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  max-width: 600px;
  width: calc(100% - 3rem);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner a { color: var(--gold-light); }

.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

.btn-cookie {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-cookie-accept { background: var(--gold); color: var(--green-dark); }
.btn-cookie-decline { background: rgba(255,255,255,0.12); color: var(--white); }

/* ─── SCROLL TO TOP ─── */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition), transform var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 800;
  border: none;
  font-size: 1.1rem;
}

.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .destinations-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-card:first-child { grid-row: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-badge { right: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(26,58,42,0.97);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .gallery-masonry { columns: 2; }
  .destinations-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .hero-actions { flex-direction: column; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 3px;
  margin-left: 1rem;
}

.lang-btn {
  padding: 4px 10px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.lang-btn.active {
  background: var(--white);
  color: var(--green-dark);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
}

@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ─── LOGO VEĆI + NATPIS ─── */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  font-size: 1.4rem !important;
}

.nav-logo img {
  height: 42px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* ─── WA BUTTON ispravka ─── */
.bt-wa-btn {
  position: fixed !important;
  bottom: 5rem !important;
  right: 1.5rem !important;
  width: 58px !important;
  height: 58px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5) !important;
  z-index: 900 !important;
  text-decoration: none !important;
  transition: transform 0.2s !important;
}

.bt-wa-btn:hover {
  transform: scale(1.1) !important;
}

.bt-wa-btn svg {
  width: 30px !important;
  height: 30px !important;
}

/* ─── HERO SLIDER ─── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
#hero-slider { position: absolute; inset: 0; z-index: 0; }
.hs-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hs-slide.active { opacity: 1; }
.hs-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,42,0.88) 0%, rgba(26,58,42,0.55) 60%, rgba(26,58,42,0.2) 100%);
}
.hs-caption {
  position: absolute; bottom: 2rem; right: 2rem;
  background: rgba(26,58,42,0.75);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 4rem; }

/* Slider dots */
#hero-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.hs-dot.active { background: var(--gold); transform: scale(1.3); }

/* Slider arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: none;
  color: white; font-size: 1.3rem; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

/* ─── GALLERY CAPTION ─── */
.gallery-item { position: relative; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,58,42,0.85) 0%, transparent 100%);
  color: rgba(255,255,255,0.92);
  font-size: 0.8rem;
  padding: 1.2rem 0.75rem 0.6rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  letter-spacing: 0.02em;
  line-height: 1.3;
  pointer-events: none;
}

/* ─── ACCOMMODATION CARD SLIDER ─── */
.acc-slider {
  position: relative; width: 100%; height: 100%;
}
.acc-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.6s ease;
}
.acc-slide.active { opacity: 1; }
.acc-img-single { width: 100%; height: 100%; }
.acc-img-single img { width: 100%; height: 100%; object-fit: cover; }
.acc-prev, .acc-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(0,0,0,0.45); border: none;
  color: white; font-size: 1rem; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.acc-prev { left: 8px; } .acc-next { right: 8px; }
.acc-prev:hover, .acc-next:hover { background: rgba(0,0,0,0.7); }
.acc-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 5;
}
.acc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s;
}
.acc-dot.active { background: var(--white); }
.acc-amenities { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 0.8rem; }
.acc-amenity {
  background: var(--green-pale); color: var(--green-mid);
  font-size: 0.72rem; font-weight: 500;
  padding: 2px 8px; border-radius: 100px;
}

/* ─── NAV LOGO FIX ─── */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.4rem !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  text-decoration: none !important;
}
.nav-logo img { height: 42px !important; width: auto !important; object-fit: contain !important; }
.nav-logo span { color: var(--gold) !important; }

/* ─── WA BUTTON ─── */
.bt-wa-btn {
  position: fixed !important;
  bottom: 5rem !important;
  width: 58px !important; height: 58px !important;
  background: #25D366 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 20px rgba(37,211,102,.5) !important;
  z-index: 900 !important;
  text-decoration: none !important;
}
