:root {
  --bg: #faf7f2;
  --panel: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #6aa681;
  --accent2: #c9bfae;
  --ring: rgba(106, 166, 129, 0.25);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}

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

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

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(31, 41, 55, 0.08);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.desktop-nav a:hover {
  background: rgba(31, 41, 55, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: #fff;
  font-weight: 700;
}

.btn.primary {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #073b1a;
  border: none;
  box-shadow: 0 8px 18px var(--ring);
}

.super {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eef8f1;
  border: 1px solid #d7eadf;
  color: #2f855a;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.hl {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.small {
  font-size: 0.9rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #374151;
  border-radius: 2px;
}

.mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  border-right: 1px solid rgba(31, 41, 55, 0.12);
  padding: 72px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateX(-100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0s linear 0.35s;
  z-index: 60;
  box-shadow: var(--shadow);
  overflow-y: auto;
}

.mobile-panel.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    visibility 0s linear 0s;
}

.nav-link {
  padding: 0.75rem 0.5rem;
  border-radius: 10px;
}

.nav-link:hover {
  background: rgba(31, 41, 55, 0.06);
}

.nav-cta {
  font-weight: 700;
}

.hero {
  background: linear-gradient(180deg, #ffffff, #f4efe6);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 0;
}

.hero-text {
  flex: 1 1 520px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: clamp(32px, 5.6vw, 56px);
  line-height: 1.1;
  margin: 0.6rem 0;
}

.lead {
  color: var(--muted);
  max-width: 56ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-media {
  flex: 1 1 480px;
}

.hero-media img {
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: var(--shadow);
}

.section {
  padding: 64px 0;
}

.section-head .currency-toggle {
  display: flex;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 999px;
  padding: 4px;
  margin: 10px 0;
}

.cur-btn {
  border: 0;
  background: transparent;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  color: #374151;
  cursor: pointer;
}

.cur-btn.active {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #073b1a;
}
#pricing, #packages{
  padding-top: 50px;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.p-card {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(31, 41, 55, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.p-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(31, 41, 55, 0.08);
}

.p-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.p-head h3 {
  margin: 0;
}

.badge {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #073b1a;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.p-list {
  list-style: none;
  margin: 8px 0 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.55rem 0.65rem;
  border: 1px dashed rgba(31, 41, 55, 0.12);
  border-radius: 10px;
  background: #fafafa;
}

.p-price {
  font-weight: 800;
  color: #0f172a;
}

.p-cta {
  align-self: flex-start;
  margin-top: auto;
}

.section h2 {
  margin: 0;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.card {
  flex: 1 1 300px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 10px rgba(31, 41, 55, 0.04);
}

.card h3 {
  margin: 0.2rem 0 0.4rem;
}

#services .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
}
#services .services-grid .card {
  flex: 0 0 calc(50% - 12px);
}
#services .services-grid .card:last-child {
  flex: 0 0 100%;
}
.services-head {
  text-align: center;
}
.price-rows {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.price-col {
  flex: 1 1 320px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.price-col h3 {
  margin: 0.2rem 0 0.4rem;
}

.price-list {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}

.price-list li {
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(31, 41, 55, 0.1);
}

.center {
  justify-content: center;
}

.about {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.about-photo {
  flex: 2;
  width: 300px;
}

.about-photo img {
  border-radius: 16px;
  border: 1px solid rgba(31, 41, 55, 0.08);
  box-shadow: var(--shadow);
}

.about-text {
  flex: 1 1 420px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery img {
  flex: 1 1 320px;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(31, 41, 55, 0.08);
}

.booking-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.booking-card {
  flex: 1 1 380px;
  background: #fff;
  border: 1px solid rgba(31, 41, 55, 0.08);
  border-radius: 16px;
  padding: 18px;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 55, 0.08);
  margin-top: 8px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(31, 41, 55, 0.12);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.foot-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
/* css za jezike */

.lang-switcher {
  position: relative;
  margin-left: 12px;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor: pointer;
}

.lang-current {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 180px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  display: none;
  z-index: 999;
}

.lang-switcher.is-open .lang-dropdown {
  display: block;
}

.lang-dropdown button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 10px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.lang-dropdown button:hover {
  background: rgba(0,0,0,.05);
}
/* Responsive */
@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }
  #services .services-grid .card {
    flex: 0 0 100%;
  }
  #services .services-grid .card:last-child {
    flex: 0 0 100%;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 720px) {
  .hero-inner {
    flex-direction: column;
  }
  .hero-text{
    flex: 1 1 320px;
  }
  .hero-media{
    flex: 1 1 280px;
    padding: 0 20px;
  }
  .hero-media > img {
    max-width: 100%;
    margin: 0 auto;
  }
  .about-photo{
    display: none;
  }
}

body.no-scroll {
  overflow: hidden;
}
