:root {
      --cream: #f4efe6;
      --paper: #fffaf2;
      --green: #24382d;
      --green-soft: #5f725f;
      --brown: #9a6a43;
      --text: #25231f;
      --muted: #766f65;
      --white: #fff;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
    }

    h1, h2, h3 {
      font-family: Georgia, serif;
      font-weight: 400;
      line-height: 1.08;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      width: 100%;
      display: block;
    }

    .header {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 100;
      padding: 22px 6vw;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
      background: linear-gradient(to bottom, rgba(0,0,0,.55), transparent);
    }

    .logo {
      font-family: Georgia, serif;
      font-size: 26px;
      letter-spacing: 2px;
    }

    .nav {
      display: flex;
      gap: 30px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }

    .book-link {
      border: 1px solid currentColor;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero {
      position: relative;
      height: 100vh;
      min-height: 680px;
      overflow: hidden;
      color: white;
    }

	.slide {
	  position: absolute;
	  inset: 0;
	  opacity: 0;
	  background-size: cover;
	  background-position: var(--desktop-position, center center);
	  transform: scale(1.04);
	  transition:
		opacity 2s ease-in-out,
		transform 6s ease-out;
	}

	.slide.active {
	  opacity: 1;
	  transform: scale(1.09);
	}
	
	@media (max-width: 768px) {
		.slide {
			background-position: var(--mobile-position, center center);
		}

	}

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,.25),
        rgba(0,0,0,.25),
        rgba(0,0,0,.6)
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 8vw 13vh;
      max-width: 750px;
	  transform: translateY(-50px);
    }

    .eyebrow {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 18px;
    }

    .hero h1 {
		font-size: clamp(36px, 4.4vw, 60px);
		line-height: 1.12;
		letter-spacing: -0.5px;
		font-weight: 400;
		max-width: 520px;
		margin-bottom: 18px;
	}

    .hero p {
		font-size: clamp(16px, 1.4vw, 20px);
		color: rgba(255,255,255,.82);
		max-width: 520px;
		line-height: 1.8;
		margin-bottom: 34px;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
		display: inline-block;
		padding:13px 24px;
		font-size:12px;
		letter-spacing:2px;
		border-radius: 999px;
		border: 1px solid currentColor;
		text-transform: uppercase;
    }

    .btn.primary {
      background: white;
      color: var(--green);
      border-color: white;
    }

    .slider-controls {
      position: absolute;
      z-index: 3;
      right: 6vw;
      bottom: 8vh;
      display: flex;
      gap: 12px;
    }

    .dot {
      width: 42px;
      height: 3px;
      background: rgba(255,255,255,.45);
      cursor: pointer;
    }

    .dot.active {
      background: white;
    }

    .booking {
      position: relative;
      z-index: 5;
      max-width: 1120px;
      margin: -48px auto 120px;
      background: var(--paper);
      padding: 24px;
      display: grid;
      grid-template-columns: repeat(4, 1fr) auto;
      gap: 18px;
      box-shadow: 0 30px 70px rgba(0,0,0,.18);
    }

    .booking label {
      display: block;
      font-size: 12px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 6px;
    }

    .booking input,
    .booking select {
      width: 100%;
      border: none;
      border-bottom: 1px solid #cfc5b8;
      background: transparent;
      padding: 11px 0;
      font-size: 15px;
      color: var(--text);
    }

    .booking button {
      border: none;
      background: var(--green);
      color: white;
      padding: 16px 28px;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
    }

    .section {
      padding: 0 8vw 90px;
    }

    @media (max-width: 768px) {
        .section {
            padding: 0 24px 50px;
        }
    }

    .intro {
      max-width: 920px;
      margin: 0 auto 120px;
      text-align: center;
    }

    .intro h2 {
      font-size: clamp(38px, 6vw, 82px);
      margin-bottom: 28px;
    }

    .intro p {
      font-size: 21px;
      color: var(--muted);
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 10px;
    }

    .benefit {
      background: var(--paper);
      padding: 38px;
    }

    .benefit span {
      color: var(--brown);
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .benefit h3 {
      font-size: 34px;
      margin: 18px 0;
    }

    .benefit p {
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 70px;
      align-items: center;
      margin-bottom: 130px;
    }

    .split.reverse {
      grid-template-columns: .9fr 1.1fr;
    }

    .split.reverse .photo {
      order: 2;
    }

    .photo {
      min-height: 620px;
      background-size: cover;
      background-position: center;
    }

    .text h2 {
      font-size: clamp(38px, 5vw, 72px);
      margin-bottom: 24px;
    }

    .text p {
      font-size: 18px;
      color: var(--muted);
      margin-bottom: 28px;
    }

    .highlight {
      background: var(--green);
      color: white;
      padding: 120px 8vw;
      margin-bottom: 130px;
    }

    .highlight-inner {
      max-width: 1000px;
      margin: auto;
      text-align: center;
    }

    .highlight h2 {
      font-size: clamp(42px, 7vw, 96px);
      margin-bottom: 26px;
    }

    .highlight p {
      color: #d8ded4;
      font-size: 21px;
    }

    .gallery {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap: 20px;
    }

    .gallery div {
      min-height: 360px;
      background-size: cover;
      background-position: center;
    }

    .gallery .tall {
      min-height: 740px;
      grid-row: span 2;
    }

    .location-box {
      background: var(--paper);
      padding: 50px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .location-list {
      display: grid;
      gap: 16px;
      color: var(--muted);
    }

    .location-list strong {
      color: var(--text);
    }

    .map-placeholder {
      min-height: 420px;
      background:
        linear-gradient(rgba(36,56,45,.25), rgba(36,56,45,.25)),
        url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80")
        center/cover;
    }

    .cta {
      min-height: 70vh;
      background:
        linear-gradient(rgba(0,0,0,.25), rgba(0,0,0,.55)),
        url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1800&q=80")
        center/cover;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8vw;
    }

    .cta h2 {
      font-size: clamp(44px, 7vw, 96px);
      margin-bottom: 24px;
    }

    .cta p {
      font-size: 21px;
      margin-bottom: 34px;
    }

    .footer {
      background: var(--green);
      color: white;
      padding: 60px 8vw;
      display: flex;
      justify-content: space-between;
      gap: 40px;
    }

    .footer p {
      color: #d8ded4;
    }

    @media (max-width: 960px) {
      .nav {
        display: none;
      }

      .booking {
        margin: 0;
        grid-template-columns: 1fr;
        box-shadow: none;
      }

      /* .section {
        padding: 90px 24px;
      } */

      .intro {
        text-align: left;
        margin-bottom: 70px;
      }

      .benefits,
      .split,
      .split.reverse,
      .location-box {
        grid-template-columns: 1fr;
      }

      .split.reverse .photo {
        order: 0;
      }

      .photo {
        min-height: 430px;
      }

      .gallery {
        grid-template-columns: 1fr;
      }

      .gallery .tall,
      .gallery div {
        min-height: 330px;
      }

      .footer {
        flex-direction: column;
      }

      .slider-controls {
        left: 24px;
        right: auto;
        bottom: 34px;
      }
    }

    @media (max-width: 560px) {
      .header {
        padding: 18px 20px;
      }

      .logo {
        font-size: 20px;
      }

      .book-link {
        padding: 8px 14px;
      }

      .hero {
        min-height: 660px;
      }

      .hero-content {
        padding: 0 24px 95px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: flex-start;
      }

      .benefit {
        padding: 28px;
      }

      .photo {
        min-height: 320px;
      }

      .location-box {
        padding: 28px;
      }
    }
	.lang-switch {
		display: flex;
		align-items: center;
		gap: 6px;
		font-size: 13px;
		letter-spacing: 1px;
	}

	.lang-switch a {
		text-decoration: none;
		color: inherit;
		opacity: 0.7;
	}

	.lang-switch a.active {
		opacity: 1;
		font-weight: bold;
	}
	
	.accommodation-grid {
	  display: grid;
	  grid-template-columns: repeat(4, 1fr);
	  gap: 22px;
	}

	.accommodation-card {
	  background: var(--paper);
	  overflow: hidden;
	  display: block;
	  transition: transform .3s ease, box-shadow .3s ease;
	}

	.accommodation-card:hover {
	  transform: translateY(-6px);
	  box-shadow: 0 24px 50px rgba(0,0,0,.14);
	}

	.accommodation-image {
	  height: 260px;
	  background-size: cover;
	  background-position: center;
	}

	.accommodation-body {
	  padding: 22px;
	}

	.accommodation-body h3 {
	  color: var(--muted);
    font-size: 26px;
	  margin-bottom: 10px;
	}

	.accommodation-body p {
	  font-size: 15px;
	  color: var(--muted);
	  line-height: 1.6;
	}
	
	@media (max-width: 1200px) {
	  .accommodation-grid {
		grid-template-columns: repeat(3, 1fr);
	  }
	}

	@media (max-width: 760px) {
	  .accommodation-grid {
		grid-template-columns: 1fr;
	  }

	  .accommodation-image {
		height: 300px;
	  }
	  
	  .map-card {
	  overflow: hidden;
	  border-radius: 18px;
	  box-shadow: 0 24px 60px rgba(0,0,0,.12);
	}

	#map {
	  width: 100%;
	  height: 520px;
	  filter: saturate(.75) contrast(.95);
	}

	@media (max-width: 760px) {
	  #map {
		height: 380px;
	  }
	}
	
	.custom-map-marker {
	  background: transparent;
	  border: none;
	}

	.pin {
	  width: 48px;
	  height: 48px;
	  background: var(--green);
	  color: white;
	  border-radius: 50% 50% 50% 0;
	  transform: rotate(-45deg);
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  box-shadow: 0 12px 28px rgba(0,0,0,.25);
	}

	.pin::before {
	  content: "";
	}

	.pin {
	  font-size: 22px;
	}

	.pin {
	  line-height: 1;
	}

	.pin {
	  text-align: center;
	}

	.pin {
	  transform: rotate(-45deg);
	}

	.pin > * {
	  transform: rotate(45deg);
	}
}

/* "Još smeštaja" kartica */

.accommodation-card-more {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 40px 32px;
    text-align: center;

    /* background: linear-gradient(135deg, #f8f6f2, #f1ede6); */
    background: var(--paper);
    border: 1px solid #e5dfd6;

    transition: transform .3s ease,
                box-shadow .3s ease,
                background .3s ease;
}

.accommodation-card-more:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
    background: linear-gradient(135deg, #fbfaf7, #f5f1ea);
}

.more-content {
    max-width: 280px;
}

.more-label {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;

    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;

    color: #6b7b52;
    background: rgba(107,123,82,.12);
    border-radius: 999px;
}

.more-content h3 {
    margin: 0 0 16px;

    font-size: 1.7rem;
    line-height: 1.3;
    color: #2c2c2c;
}

.more-content p {
    margin: 0 0 28px;

    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 600;
    color: #6b7b52;

    transition: gap .25s ease;
}

.accommodation-card-more:hover .more-link {
    gap: 14px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 22px 6vw;
  color: white;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .58),
    rgba(0, 0, 0, 0)
  );
}

.logo {
  position: relative;
  z-index: 1002;
  font-family: Georgia, serif;
  font-size: 24px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-icon {
  width: 40px;
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;

  transition:
    background-color .25s ease,
    color .25s ease,
    transform .25s ease;
}

.header-icon:hover {
  color: var(--green);
  background: white;
  transform: translateY(-2px);
}

.header-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-icon:first-child svg {
  fill: currentColor;
  stroke: none;
}

.book-link {
  border: 1px solid currentColor;
  padding: 10px 18px;
  border-radius: 999px;

  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;

  white-space: nowrap;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;

  font-size: 12px;
  letter-spacing: 1px;
}

.lang-switch a {
  opacity: .65;
}

.lang-switch a.active {
  opacity: 1;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1002;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1px;
  background: white;
  transition:
    transform .3s ease,
    top .3s ease,
    opacity .3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 20px;
}

.menu-toggle span:nth-child(3) {
  top: 26px;
}

.menu-toggle.active span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

@media (max-width: 1050px) {
  .header {
    padding: 18px 22px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1001;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 120px 28px 38px;

    color: white;
    background: var(--green);

    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);

    transition:
      opacity .3s ease,
      transform .3s ease,
      visibility .3s ease;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu nav a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);

    font-family: Georgia, serif;
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.15;
  }

  .mobile-menu-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;

    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .18);

    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .mobile-lang {
    display: flex;
    gap: 6px;
  }

  .mobile-lang a {
    opacity: .65;
  }

  .mobile-lang a.active {
    opacity: 1;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 700px) {
  .header {
    gap: 12px;
  }

  .logo {
    font-size: 19px;
    max-width: 175px;
    white-space: normal;
    line-height: 1.1;
  }

  .header-actions {
    gap: 8px;
  }

  .book-link {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .header-icon {
    width: 38px;
    height: 38px;
  }
}

/* @media (max-width: 768px) {

    .hero {
         height: 65vh;
        min-height: 460px;
    }

} */