/* ─── Olneo.uk — Landing page ─── */

:root {
  --brand:     #14b8a6;
  --brand-dk:  #0d9488;
  --brand-dkr: #0f766e;
  --brand-lt:  #2dd4bf;
  --teal-bg:   rgba(20,184,166,.1);
  --teal-bd:   rgba(20,184,166,.25);
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #fff;
  color: var(--slate-800);
  line-height: 1.65;
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 64px;
}
.navbar-logo {
  font-family: 'Outfit','Inter',sans-serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--brand); text-decoration: none; letter-spacing: -.5px;
}
.navbar-logo span { color: var(--slate-800); }
.nav-links { display: flex; gap: .25rem; align-items: center; }
.nav-links a {
  padding: .4rem .75rem; border-radius: .5rem;
  color: var(--slate-600); text-decoration: none;
  font-size: .85rem; font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta { display: flex; gap: .5rem; align-items: center; }
.btn-ghost {
  padding: .5rem 1rem; border-radius: .75rem;
  color: var(--slate-600); text-decoration: none;
  font-weight: 600; font-size: .9rem; transition: color .2s;
}
.btn-ghost:hover { color: var(--brand); }
.btn-primary {
  padding: .5rem 1.25rem; border-radius: .75rem;
  background: var(--brand); color: #fff;
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: background .2s;
  box-shadow: 0 2px 8px rgba(20,184,166,.35);
}
.btn-primary:hover { background: var(--brand-dk); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://olneo.uk/theme/travel-friends-online-6.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.5) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 820px; margin: 0 auto; padding: 7rem 1.5rem 5rem;
}
.hero-content h1 {
  font-family: 'Outfit','Inter',sans-serif;
  font-size: clamp(2.2rem,6vw,4rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: .75rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-content .hero-sub {
  font-size: clamp(1rem,2.5vw,1.2rem); color: rgba(255,255,255,.88);
  max-width: 560px; margin: 0 auto 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.search-card {
  background: rgba(255,255,255,.12); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 1.25rem;
  padding: 1.5rem 2rem; max-width: 580px; margin: 0 auto;
}
.search-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.search-wrap { flex: 1; position: relative; min-width: 200px; }
.search-wrap i {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--brand);
}
.search-input {
  width: 100%; padding: 1rem 1.25rem 1rem 3rem;
  border-radius: .875rem; border: 2px solid #e2e8f0;
  font-size: 1rem; background: #fff; outline: none; transition: border-color .2s;
}
.search-input:focus { border-color: var(--brand); }
.btn-search {
  padding: 1rem 2rem; background: var(--brand); color: #fff;
  border: none; border-radius: .875rem; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.btn-search:hover { background: var(--brand-dk); }
.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.6rem; font-weight: 900; color: #fff; }
.hero-stat-lbl { font-size: .8rem; color: rgba(255,255,255,.7); margin-top: .1rem; }
.hero-legal { font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 1.2rem; }
.hero-legal a { color: rgba(255,255,255,.8); }

/* wave — flipped vertically so it peaks up into the hero */
.wave-sep {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3;
  line-height: 0; overflow: hidden;
  transform: scaleY(-1);
}
.wave-sep svg { display: block; width: 100%; }

/* ── Common ── */
section { padding: 5rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .35rem .9rem; margin-bottom: 1rem;
  background: var(--teal-bg); color: var(--brand-dk);
  border: 1px solid var(--teal-bd); border-radius: 999px;
  font-size: .8rem; font-weight: 600;
}
.section-h2 {
  font-family: 'Outfit','Inter',sans-serif;
  font-size: clamp(1.6rem,4vw,2.25rem); font-weight: 900;
  line-height: 1.2; margin-bottom: .75rem;
}
.section-sub { color: var(--slate-500); font-size: 1rem; max-width: 580px; }
.cta-center { text-align: center; margin-top: 2.5rem; }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 2rem; border-radius: .875rem;
  border: 2px solid var(--brand); color: var(--brand);
  font-weight: 700; font-size: .95rem; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--brand); color: #fff; }
.btn-teal {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .875rem 2.5rem; background: var(--brand); color: #fff;
  border-radius: .875rem; text-decoration: none; font-weight: 700;
  font-size: 1rem; transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(20,184,166,.35);
}
.btn-teal:hover { background: var(--brand-dk); transform: translateY(-2px); }

/* ── Value props ── */
.value-section { background: var(--slate-50); }
.value-box {
  background: #fff; border-radius: 1.25rem; padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06); text-align: center;
  max-width: 920px; margin: 0 auto;
}
.value-box h2 { font-family: 'Outfit','Inter',sans-serif; font-size: clamp(1.4rem,3vw,2rem); font-weight: 900; margin-bottom: .75rem; }
.value-box h2 span { color: var(--brand); }
.value-box .lead { font-size: 1.05rem; color: var(--slate-600); margin-bottom: .5rem; font-weight: 600; }
.value-box p { color: var(--slate-500); max-width: 600px; margin: 0 auto 2rem; }
.avatars-row { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.avatars-row a img { width: 80px; height: 80px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: transform .2s; }
.avatars-row a:hover img { transform: scale(1.06); }
.icons-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--slate-100); }
.icon-item { text-align: center; max-width: 160px; }
.icon-item img { width: 80px; height: auto; margin-bottom: .75rem; }
.icon-item p { font-size: .85rem; color: var(--slate-600); font-weight: 500; }

/* ── Destinations ── */
.dest-section { background: #fff; }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.dest-card {
  position: relative; border-radius: 1.25rem; overflow: hidden;
  aspect-ratio: 16/9; text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transition: transform .25s, box-shadow .25s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 60%); }
.dest-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem 1.25rem; display: flex; align-items: flex-end; justify-content: space-between; }
.dest-name { color: #fff; font-weight: 800; font-size: 1.1rem; font-family: 'Outfit','Inter',sans-serif; }
.dest-count { color: rgba(255,255,255,.85); font-size: .85rem; font-weight: 700; }

/* ── Mid banner ── */
.mid-banner {
  position: relative; overflow: hidden;
  background: url('https://olneo.uk/theme/Group_21e.jpg') center/cover no-repeat;
  min-height: 300px; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 1.5rem;
}
.mid-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}
.mid-banner-inner { position: relative; z-index: 1; max-width: 700px; }
.mid-banner h2 { font-family: 'Outfit','Inter',sans-serif; font-size: clamp(1.5rem,3.5vw,2.1rem); font-weight: 900; color: #fff; margin-bottom: .75rem; }
.mid-banner h2 span { color: var(--brand-lt); }
.mid-banner p { color: rgba(255,255,255,.85); font-size: 1rem; }

/* ── Two-col feature ── */
.feature-section { background: var(--slate-50); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; align-items: start; }
.feature-card { background: #fff; border-radius: 1.25rem; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.feature-card img { width: 100%; display: block; }
.feature-card-body { padding: 1.5rem 2rem 2rem; }
.feature-card-body h3 { font-family: 'Outfit','Inter',sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: .75rem; }
.feature-card-body p { color: var(--slate-500); font-size: .9rem; margin-bottom: .75rem; }
.mini-profiles { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.mini-profile { text-align: center; width: 30%; }
.mini-profile a img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,.1); }
.mini-profile .mp-name { font-size: .7rem; font-weight: 700; margin-top: .25rem; }
.mini-profile .mp-loc { font-size: .65rem; color: var(--slate-500); }
.mini-profile .mp-loc i { color: var(--brand); }

/* ── Travel styles ── */
.styles-section { background: #fff; }
.styles-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }
.style-pill {
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem; padding: .75rem 1rem; border-radius: 1rem;
  background: var(--slate-50); border: 1px solid var(--slate-100);
  text-decoration: none; color: var(--slate-800);
  transition: background .2s, transform .2s;
  min-width: 110px; text-align: center;
}
.style-pill:hover { background: var(--teal-bg); border-color: var(--teal-bd); transform: translateY(-2px); }
.style-pill img { width: 64px; height: auto; }
.style-pill span { font-size: .8rem; font-weight: 600; color: var(--brand-dk); }

/* ── Forum ── */
.forum-section { background: var(--slate-50); }
.forum-grid { display: flex; flex-direction: column; gap: .875rem; margin-top: 2rem; }
.forum-card {
  background: #fff; border-radius: 1rem; padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  text-decoration: none; color: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,.05); border: 1px solid var(--slate-100);
  transition: transform .2s, box-shadow .2s;
}
.forum-card:hover { transform: translateX(4px); box-shadow: 0 4px 16px rgba(0,0,0,.09); }
.fc-avatar { flex-shrink: 0; }
.fc-avatar img { width: 50px; height: 50px; border-radius: 50%; }
.fc-body { flex: 1; }
.fc-author { font-size: .8rem; color: var(--slate-500); margin-bottom: .2rem; }
.fc-title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; color: var(--slate-800); }
.fc-excerpt { font-size: .82rem; color: var(--slate-500); margin-bottom: .4rem; }
.fc-meta { display: flex; align-items: center; justify-content: space-between; }
.fc-badge {
  font-size: .68rem; padding: .25rem .5rem; border-radius: .375rem;
  color: #fff; font-weight: 600;
}
.fc-badge.last-minute { background: #dc2626; }
.fc-badge.organising { background: #16a34a; }
.fc-date { font-size: .75rem; color: #94a3b8; }

/* ── Albums ── */
.albums-section {
  background: linear-gradient(135deg, var(--brand), var(--brand-dk));
  padding: 4rem 1.5rem; text-align: center;
}
.albums-section h2 { font-family: 'Outfit','Inter',sans-serif; font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 900; color: #fff; margin-bottom: .75rem; }
.albums-section h2 span { color: rgba(255,255,255,.75); text-decoration: underline; text-decoration-color: rgba(255,255,255,.4); }
.albums-section p { color: rgba(255,255,255,.82); margin-bottom: 2rem; font-size: 1rem; }
.btn-white {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .875rem 2.5rem; background: #fff; color: var(--brand-dkr);
  border-radius: .875rem; text-decoration: none; font-weight: 800;
  font-size: 1rem; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }

/* ── Testimonials ── */
.testimonials-section {
  position: relative; overflow: hidden;
  background: url('https://olneo.uk/theme/opinie.jpg') center/cover no-repeat;
  padding: 5rem 1.5rem;
}
.testimonials-section::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.55);
}
.testimonials-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.testimonials-inner h2 { font-family: 'Outfit','Inter',sans-serif; color: #fff; font-size: 1.4rem; font-weight: 900; margin-bottom: 2rem; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; }
.testimonial-quote { font-size: 3rem; color: var(--brand-lt); line-height: 1; margin-bottom: .75rem; }
.testimonial-text { color: #fff; font-size: 1.05rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { color: rgba(255,255,255,.65); font-size: .85rem; }
.testimonial-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35);
  cursor: pointer; transition: background .2s;
}
.t-dot.active { background: var(--brand-lt); }

/* ── Travelblog ── */
.blog-section { background: var(--slate-50); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2rem; }
.blog-card { background: #fff; border-radius: 1rem; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.blog-thumb { height: 140px; background-size: cover; background-position: center; }
.blog-body { padding: 1.25rem; }
.blog-title { font-weight: 700; font-size: .9rem; color: var(--slate-800); margin-bottom: .5rem; text-decoration: none; display: block; }
.blog-title:hover { color: var(--brand); }
.blog-excerpt { font-size: .8rem; color: var(--slate-500); margin-bottom: .75rem; }
.blog-read { color: var(--brand); font-size: .82rem; font-weight: 700; text-decoration: none; }
.blog-read:hover { color: var(--brand-dk); }

/* ── Footer ── */
footer { background: var(--slate-900); color: #94a3b8; padding: 3rem 1.5rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
  padding-bottom: 2rem; border-bottom: 1px solid #1e293b;
}
.footer-brand { font-family: 'Outfit','Inter',sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--brand-lt); }
.footer-tagline { font-size: .83rem; color: #64748b; margin-top: .3rem; }
.footer-col h4 { color: #e2e8f0; font-weight: 700; font-size: .85rem; margin-bottom: .875rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul a { color: #64748b; text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--brand-lt); }
.footer-bottom {
  max-width: 1200px; margin: 1.5rem auto 0;
  display: flex; flex-wrap: wrap; gap: .75rem;
  justify-content: space-between; align-items: center; font-size: .8rem; color: #475569;
}
.footer-bottom a { color: #475569; text-decoration: none; }
.footer-bottom a:hover { color: var(--brand-lt); }

/* ── Cookie banner ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #1e293b; color: #e2e8f0;
  padding: .875rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.cookie-bar p { font-size: .85rem; margin: 0; }
.cookie-bar a { color: var(--brand-lt); }
.cookie-close {
  background: var(--brand); color: #fff; border: none; border-radius: .5rem;
  padding: .4rem 1.2rem; font-weight: 700; cursor: pointer; white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
}
@media (max-width: 768px) {
  .btn-ghost { display: none; }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
  .game-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .search-row { flex-direction: column; }
  .btn-search { width: 100%; justify-content: center; }
  .dest-grid { grid-template-columns: 1fr; }
}
