@import url("../fonts/nunito-sans.css");

:root {
  --magenta: #ef149a;
  --magenta-dark: #bd0878;
  --sky: #18a7df;
  --green: #88c928;
  --ink: #171923;
  --muted: #626b7a;
  --line: #e7edf2;
  --soft: #f7fbfd;
  --white: #fff;
  --shadow: 0 18px 45px rgba(20, 36, 52, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  background: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 6px clamp(14px, 3.6vw, 48px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(231,237,242,.9);
  backdrop-filter: blur(14px);
}

.brand img { width: 280px; height: 82px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 16px; color: #2a3340; font-size: 13px; }
.main-nav a { padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--magenta-dark); border-color: var(--magenta); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  min-height: clamp(340px, 46vh, 440px);
  display: grid;
  align-items: center;
  padding: clamp(24px, 4vw, 42px) clamp(14px, 3.6vw, 48px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.85) 42%, rgba(255,255,255,.24) 74%),
    url("../img/hero-travel.jpg") center right / cover no-repeat;
}

.hero-content { max-width: 520px; }
.eyebrow { margin: 0 0 7px; color: var(--magenta-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0; font-size: 11px; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: 0; }
h1 { font-size: clamp(30px, 4.2vw, 48px); max-width: 580px; }
h2 { font-size: clamp(22px, 2.5vw, 32px); }
h3 { font-size: 17px; }
.lead { max-width: 520px; margin: 12px 0 0; color: #394454; font-size: clamp(14px, 1.4vw, 16px); }

.actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}
.btn-primary { color: var(--white); background: var(--magenta); box-shadow: 0 12px 24px rgba(239,20,154,.22); }
.btn-primary:hover { background: var(--magenta-dark); }
.btn-secondary { border-color: var(--line); background: var(--white); }

.section { padding: clamp(32px, 4.8vw, 54px) clamp(14px, 3.6vw, 48px); }
.section-soft { background: var(--soft); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 18px; }
.section-head p { max-width: 560px; margin: 7px 0 0; color: var(--muted); }

.grid { display: grid; gap: 14px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.service, .offer-card, .contact-box, .admin-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(20,36,52,.06);
}

.service { padding: 16px; }
.service-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky), var(--green));
  font-weight: 900;
}
.service p, .offer-card p { color: var(--muted); }

.offer-card { overflow: hidden; }
.offer-media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  padding: 10px;
  background: linear-gradient(135deg, #eaf8ff, #fff0fa);
  border-bottom: 1px solid var(--line);
}
.offer-media img { width: 100%; height: 100%; object-fit: contain; }
.offer-media-detail { min-height: 420px; }
.pdf-badge { color: var(--magenta-dark); font-weight: 900; font-size: 32px; }
.offer-body { padding: 14px; }
.offer-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 10px; }
.pill { padding: 4px 8px; border-radius: 999px; background: #eef8fd; color: #126c91; font-size: 12px; font-weight: 800; }
.price { margin-top: 10px; color: var(--magenta-dark); font-size: 17px; font-weight: 900; }

.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px, 3.4vw, 42px); align-items: center; }
.check-list { padding: 0; margin: 14px 0 0; list-style: none; }
.check-list li { margin: 6px 0; padding-left: 22px; position: relative; }
.check-list li::before { content: "+"; position: absolute; left: 0; color: var(--green); font-weight: 900; }

.page-hero { padding: 36px clamp(14px, 3.6vw, 48px) 26px; background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 680px; color: var(--muted); font-size: 15px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filters a { padding: 7px 10px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.filters a.is-active { color: var(--white); background: var(--ink); border-color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; }
.contact-box { padding: 16px; }
.contact-box a { color: var(--magenta-dark); font-weight: 800; }
.contact-box form, .contact-box { min-width: 0; }
.contact-box label { display: grid; gap: 7px; margin-bottom: 14px; font-weight: 800; }
.contact-box input, .contact-box textarea {
  width: 100%;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #d8e2ea;
  border-radius: var(--radius);
  font: inherit;
}
.contact-box textarea { resize: vertical; }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr;
  gap: 22px;
  padding: 28px clamp(14px, 3.6vw, 48px);
  color: #d9edf7;
  background: #111821;
}
.site-footer a { color: #fff; }
.footer-logo { width: 150px; height: 54px; object-fit: contain; background: #fff; border-radius: var(--radius); margin-bottom: 10px; }
.footer-links { display: grid; align-content: start; gap: 10px; }

.empty { padding: 28px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--white); color: var(--muted); }

@media (max-width: 900px) {
  .grid-3, .grid-4, .split, .contact-grid, .site-footer { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .hero { min-height: auto; background-position: center; }
}

@media (max-width: 720px) {
  .site-header { min-height: 58px; }
  .brand img { width: 156px; height: 54px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    inset: 58px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px; }
  .hero {
    min-height: 320px;
    padding-top: 28px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
      url("../img/hero-travel.jpg") center / cover no-repeat;
  }
}
