:root {
  --bg: #0b0f14;
  --surface: #10161d;
  --text: #e8eef6;
  --muted: #a8b3c2;
  --primary: #00c2ff;
  --primary-2: #7cffda;
  --accent: #ffd166;
  --danger: #ff4d4d;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --maxw: 1200px;
  --gap: clamp(16px, 2vw, 28px);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f9fc;
    --surface: #ffffff;
    --text: #11161c;
    --muted: #4b5563;
    --primary: #005bff;
    --primary-2: #00b38f;
    --accent: #ff8c00;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% 10%, rgba(0,194,255,0.15), transparent 60%), var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Header & nav */
.site-header { position: relative; }
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--surface) 60%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gap);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: var(--gap);
  align-items: center;
}
.brand img { display: block; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid color-mix(in oklab, var(--muted) 25%, transparent);
  border-radius: 12px;
  background: color-mix(in oklab, var(--surface) 80%, transparent);
  cursor: pointer;
}
.nav__toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 2px;
}

.nav__menu {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__menu a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 10px;
}
.nav__menu a:hover {
  background: color-mix(in oklab, var(--surface) 40%, transparent);
}

/* CTA buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.cta--phone,
.cta--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow);
}
.cta--secondary {
  border: 1px solid color-mix(in oklab, var(--primary) 35%, transparent);
  color: var(--primary);
  background: color-mix(in oklab, var(--surface) 80%, transparent);
}
.cta--ghost {
  border: 1px dashed color-mix(in oklab, var(--muted) 40%, transparent);
  color: var(--text);
  background: transparent;
}
.cta:hover { transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  place-items: center;
  overflow: clip;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 80% 20%, rgba(255,209,102,0.25), transparent 70%),
    linear-gradient(180deg, color-mix(in oklab, var(--surface) 65%, transparent), transparent 60%),
    url("../images/og-cover.jpg") center/cover no-repeat;
  filter: saturate(105%) contrast(105%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 32px;
  border-radius: 16px;
  max-width: 80%;
  margin: 0 auto;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.hero__content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 10px 0;
}
.hero__content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  margin: 0 0 22px 0;
}
.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero__badges {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--muted);
}

/* Sections */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px var(--gap);
}
.section__header { text-align: center; margin-bottom: 28px; }
.section__lead { color: var(--muted); }

/* Cards */
.section--grid .cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--gap);
}
@media (max-width: 1100px) {
  .section--grid .cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .section--grid .cards { grid-template-columns: 1fr; }
}
.card {
  background: color-mix(in oklab, var(--surface) 96%, transparent);
  border: 1px solid color-mix(in oklab, var(--muted) 18%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.card__body { padding: 18px; }

/* Pricing */
.section--pricing .pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
@media (max-width: 1100px) {
  .section--pricing .pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section--pricing .pricing { grid-template-columns: 1fr; }
}
.price-card {
  background: linear-gradient(180deg, color-mix(in oklab, var(--surface) 86%, transparent), color-mix(in oklab, var(--surface) 96%, transparent));
  border: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.price {
  font-weight: 700;
  font-size: 1.25rem;
}

.note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
}

/* Destinații turistice */
.section--destinations .destinations {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 coloane mari pe desktop */
  gap: var(--gap);
  padding: 20px;
}
@media (max-width: 1100px) {
  .section--destinations .destinations { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section--destinations .destinations { grid-template-columns: 1fr; }
}

.destination {
  background: color-mix(in oklab, var(--surface) 96%, transparent);
  border: 1px solid color-mix(in oklab, var(--muted) 18%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.destination img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.destination img:hover { transform: scale(1.03); }
.destination figcaption {
  padding: 12px 14px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
}

/* Lightbox overlay */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* Booking form */
.section--booking .form {
  background: color-mix(in oklab, var(--surface) 96%, transparent);
  border: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
.form__field--full { grid-column: 1 / -1; }
@media (max-width: 720px) {
  .form__grid { grid-template-columns: 1fr; }
}
label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--muted) 26%, transparent);
  background: color-mix(in oklab, var(--surface) 96%, transparent);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary) 25%, transparent);
}
.form__error {
  display: block;
  min-height: 20px;
  color: var(--danger);
  font-size: 0.9rem;
}
.form__actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.form__note {
  color: var(--muted);
  margin-top: 12px;
}

/* Contact */
.section--contact .contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
@media (max-width: 1100px) {
  .section--contact .contact__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section--contact .contact__grid { grid-template-columns: 1fr; }
}
.contact__card {
  background: color-mix(in oklab, var(--surface) 96%, transparent);
  border: 1px solid color-mix(in oklab, var(--muted) 18%, transparent);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
}
.contact__social {
  margin-top: 16px;
  text-align: center;
}

/* CTA section */
.section--cta .cta__wrap {
  text-align: center;
  background:
    radial-gradient(600px 300px at 20% 50%, rgba(0,194,255,0.18), transparent 70%),
    linear-gradient(180deg, color-mix(in oklab, var(--surface) 90%, transparent), color-mix(in oklab, var(--surface) 98%, transparent));
  border: 1px solid color-mix(in oklab, var(--muted) 18%, transparent);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  border-top: 1px solid color-mix(in oklab, var(--muted) 18%, transparent);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
}
.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gap);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--gap);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li { margin-bottom: 8px; }
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gap) 24px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.brand--footer img { opacity: 0.9; }

/* Accessibility helpers */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav__toggle { display: inline-block; }
  .nav__menu {
    position: fixed;
    inset: 64px 16px auto 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    background: color-mix(in oklab, var(--surface) 95%, transparent);
    border: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
  }
  .nav__menu.is-open { display: flex; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Focus visibility */
:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--primary) 45%, transparent);
  outline-offset: 2px;
}
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.4);
}
.lightbox-prev { left: 5%; }
.lightbox-next { right: 5%; }
.note {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
@font-face {
  font-family: 'Open Sans';
  src: url('fonts/open-sans.woff2') format('woff2');
  font-display: swap;
}
/* Background modern */
body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  background-attachment: fixed;
}

.section {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
} 
.section {
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  margin-bottom: 1em;
}