/* Venalba — styles translated from the Claude Design source (Venalba.dc.html) */

@keyframes vnFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: #242018;
  background: #f3efe5;
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3 { font-family: Georgia, 'Times New Roman', serif; }

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

/* Top bar */
.topbar {
  background: #0f170e;
  color: #e8e1d2;
  font-size: 14px;
  padding: 7px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(24, 35, 22, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(185, 147, 85, .35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 6vw;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: wrap;
}
.logo-chip { display: flex; align-items: center; cursor: pointer; }
.logo-chip img {
  height: 46px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #f4efe1;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
  flex-wrap: wrap;
}
.nav-links a {
  cursor: pointer;
  opacity: .92;
  color: #f4efe1;
  transition: color .15s;
}
.nav-links a:hover { opacity: 1; color: #b99355; }
.nav-links a.active { color: #b99355; }
.nav-toggle { display: none; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 2; /* after the links on desktop; reset on mobile */
}
.lang-toggle {
  background: transparent;
  border: 1px solid #b99355;
  color: #f4efe1;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 7px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-toggle:hover {
  background: #b99355;
  color: #182316;
}

/* Views */
main { animation: vnFadeUp .4s ease; }
.view { display: none; }
.view.active { display: block; animation: vnFadeUp .4s ease; }

/* Shared layout */
.container { max-width: 1360px; margin: 0 auto; }
.section { padding: 76px 6vw; }
.section.dark { background: #182316; color: #f5eddd; }
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.split-even {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.self-start { align-self: start; }

/* Type */
.eyebrow {
  color: #b99355;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 14px;
  font-family: 'Inter', Arial, sans-serif;
}
h2 { font-size: 30px; margin: 0 0 14px; }
.h2-lg { font-size: 36px; margin: 0 0 16px; }
.section.dark .h2-lg { margin-bottom: 32px; }
.lead { font-size: 21px; color: #3c352b; margin: 0; }
.muted { margin: 0; color: #716b5d; }
p { margin: 0; }
.mb16 { margin-bottom: 16px; }
.mb20 { margin-bottom: 20px; }
.mb28 { margin-bottom: 28px; }
.mb32 { margin-bottom: 32px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 22px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
  border: none;
}
.btn-gold { background: #b99355; color: #17130e; }
.btn-gold:hover { background: #c9a469; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #b99355;
}
.btn-outline:hover { background: rgba(255, 255, 255, .12); }

.link-gold { color: #b99355; cursor: pointer; font-weight: 600; }
.link-gold:hover { color: #dcb877; }
.link-gold-dk:hover { color: #8a6c3a; }

/* Hero */
.hero {
  position: relative;
  box-sizing: border-box;
  min-height: calc(100svh - 102px);
  display: grid;
  align-items: center;
  padding: 8vw 6vw;
  color: #fff;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: opacity .8s ease;
  opacity: 0;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12, 18, 11, .86), rgba(12, 18, 11, .32));
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-content .eyebrow { margin-bottom: 14px; }
.hero-content h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: .98;
  margin: 0 0 18px;
  max-width: 850px;
}
.hero-text { max-width: 680px; font-size: 18px; margin: 0 0 8px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 18px; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.hero-arrow:hover { background: rgba(0, 0, 0, .55); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, .45);
  transition: background .2s;
  padding: 0;
}
.hero-dots button.active { background: #b99355; }

/* Panels (cream cards) */
.panel {
  background: #fffaf0;
  padding: 38px;
  box-shadow: 0 22px 60px rgba(47, 39, 22, .11);
  border-top: 4px solid #b99355;
}
.panel h3 { margin: 0 0 14px; font-size: 22px; }
.panel .panel-h2 { margin: 0 0 14px; font-size: 26px; }
.panel ul { padding: 0; margin: 0; list-style: none; }
.panel li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(185, 147, 85, .28);
}
.panel li:last-child { border-bottom: none; }

/* Cards */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
/* Destinazioni cards: fixed image height (matched to the Macedonia photo so it fills cleanly),
   both cards equal. Albania is biased to the top so the hunter stays in frame. */
.cards-2 .card img { height: 290px; object-fit: cover; }
.cards-2 .card:first-child img { object-position: top; }
.card { overflow: hidden; }
.card-dark {
  background: #202d1d;
  border: 1px solid #39462b;
  box-shadow: 0 18px 42px rgba(43, 35, 20, .2);
}
.card-light {
  background: #fff;
  border: 1px solid #e3d8c2;
  box-shadow: 0 18px 42px rgba(43, 35, 20, .08);
}
.card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.card-body h3 { font-size: 26px; margin: 0 0 8px; }
.card-body p { margin: 0 0 10px; }

/* Page headers */
.page-header {
  position: relative;
  color: #fff;
  padding: 100px 6vw 80px;
  overflow: hidden;
}
.page-header > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 35, 22, .88), rgba(24, 35, 22, .4));
}
.page-header-content { position: relative; z-index: 2; }
.page-header-content h1 { font-size: 58px; margin: 0; }
.page-header-sub { margin: 12px 0 0; font-size: 20px; color: #e8e1d2; }
/* Servizi header: show the whole image, centered, uncropped (no crop, no bars) */
.page-header--contain {
  aspect-ratio: 1428 / 1069;   /* == image5 ratio -> cover fills exactly */
  padding: 0 6vw;
  display: flex;
  align-items: flex-end;
}
.page-header--contain .page-header-content { padding-bottom: 48px; }
/* Chi siamo banner: bias the crop upward so the hunter's face stays in frame */
.page-header--top > img { object-position: center 22%; }
.back-link {
  color: #b99355;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.back-link:hover { color: #dcb877; }

/* Tables */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.price-table th {
  padding: 15px;
  border-bottom: 1px solid #e1d6bf;
  text-align: left;
  background: #efe5cf;
}
.price-table td {
  padding: 15px;
  border-bottom: 1px solid #e1d6bf;
}
.price-table tr:last-child td { border-bottom: none; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  border: 8px solid #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .13);
  cursor: pointer;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  cursor: zoom-out;
  opacity: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity .25s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border: 8px solid #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  transform: scale(.92);
  transition: transform .25s ease;
}
.lightbox.open .lightbox-img {
  transform: scale(1);
}

/* Contact form */
.panel input,
.panel textarea {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border: 1px solid #d6c8ab;
  font-family: inherit;
  font-size: 15px;
  box-sizing: border-box;
}
.panel textarea { min-height: 130px; }
.panel button[type="submit"] { margin-top: 10px; }
.form-success {
  background: #e9f1e1;
  border: 1px solid #536033;
  color: #2f3f1f;
  padding: 16px;
  margin: 0 0 8px;
  font-size: 15px;
}
.form-error { color: #a33; margin: 4px 0 8px; font-size: 14px; }

/* CTA band */
.cta-band {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 76px 6vw;
  overflow: hidden;
}
.cta-band > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(24, 35, 22, .95), rgba(83, 96, 51, .82));
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: 36px; margin: 0 0 24px; }

/* Footer */
.footer {
  background: #10170f;
  color: #d8d0c0;
  padding: 48px 6vw 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.footer h3 { color: #f5eddd; margin: 0 0 10px; font-size: 20px; }
.footer a { cursor: pointer; }
.footer a:hover { color: #b99355; }
.footer-note { font-size: 13px; color: #aaa18f; margin-top: 36px; }

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

  /* Top bar */
  .topbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    font-size: 12px;
  }

  /* Nav / hamburger */
  .nav-inner { padding: 10px 5vw; gap: 12px; }
  .logo-chip img { height: 44px; }
  .nav-right { order: 0; gap: 8px; }
  .lang-toggle { padding: 6px 10px; font-size: 12px; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 10px 6px;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #f4efe1;
    border-radius: 2px;
  }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    flex-basis: 100%;
    gap: 0;
    padding-bottom: 8px;
  }
  .nav-links.open a {
    padding: 13px 4px;
    border-top: 1px solid rgba(185, 147, 85, .25);
  }

  /* Hero */
  .hero { min-height: calc(100svh - 120px); padding: 16vw 8vw; }
  .hero-text { font-size: 17px; }
  .hero-arrow { width: 36px; height: 36px; font-size: 15px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .btn { padding: 12px 18px; font-size: 12px; }

  /* Grids collapse to one column */
  .split,
  .split-even,
  .cards3,
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Sections & panels */
  .section { padding: 48px 5vw; }
  .panel { padding: 24px; }

  /* Typography */
  h2 { font-size: 24px; }
  .h2-lg { font-size: 28px; }
  .lead { font-size: 18px; }
  .page-header { padding: 64px 5vw 48px; }
  .page-header-content h1 { font-size: 34px; }
  .page-header-sub { font-size: 16px; }
  .cta-content h2 { font-size: 26px; }

  /* Tables */
  .price-table th,
  .price-table td { padding: 10px; font-size: 14px; }

  /* Gallery */
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery img { border-width: 4px; }
}
