@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;1,400&family=Nunito:wght@400;500;600;700&display=swap');

/* =============================================
   BALATONIVITORLAZAS.HU – Stíluslap
   ============================================= */

:root {
  --kek:       #0e6fa0;
  --sotet-kek: #0d2e4a;
  --vilag-kek: #e4f4fc;
  --akcent:    #5ec8f0;
  --szoveg:    #1a3a52;
  --masod:     #4a6878;
  --hatter:    #f5fbff;
  --feher:     #ffffff;
  --border:    #d0e8f5;
  --font-cim:  'Lora', Georgia, serif;
  --font-test: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-test); font-size: 17px; color: var(--szoveg); background: var(--feher); line-height: 1.8; }
img { max-width: 100%; display: block; }
a { color: var(--kek); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4,h5 { font-family: var(--font-cim); line-height: 1.3; color: var(--sotet-kek); }

/* --- NAVIGÁCIÓ --- */
#site-header {
  background: var(--feher);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 1px 8px rgba(14,111,160,0.07);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 96px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 2px; }
.nav-menu a {
  display: block; font-size: 15px; font-weight: 600; color: var(--sotet-kek);
  padding: 8px 16px; border-radius: 4px; border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-menu a:hover, .nav-menu a.aktiv { color: var(--kek); border-bottom-color: var(--kek); text-decoration: none; }
.nav-logo svg { width: 360px; height: 76px; }
@media (max-width: 768px) {
  .nav-logo svg { width: 220px; height: 52px; }
  .nav-logo .logo-subtext { display: none; }
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--sotet-kek); border-radius: 2px; }

.hero { position: relative; height: 480px; overflow: visible; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 2; }
.hero-wave svg { width: 100%; height: 50px; display: block; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,30,55,0.78) 0%, rgba(10,30,55,0.40) 55%, rgba(10,30,55,0.10) 100%); }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 60px; max-width: 640px; }
.hero-content h1 { font-size: 38px; color: var(--feher); margin-bottom: 14px; }
.hero-content p { font-size: 15px; color: rgba(255,255,255,0.85); max-width: 380px; margin-bottom: 28px; line-height: 1.75; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- GOMBOK --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-test); font-size: 13px; font-weight: 700;
  padding: 12px 28px; border-radius: 30px; cursor: pointer;
  transition: all 0.2s; border: none; text-decoration: none;
  letter-spacing: 0.02em; width: auto;
}
.btn-primary {
  background: linear-gradient(135deg, var(--kek) 0%, #0a4f7a 100%);
  color: var(--feher);
  box-shadow: 0 4px 14px rgba(14,111,160,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14,111,160,0.4);
  text-decoration: none; color: var(--feher);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--feher);
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  text-decoration: none; color: var(--feher);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--kek);
  border: 2px solid var(--kek);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--kek) 0%, #0a4f7a 100%);
  color: var(--feher); text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(14,111,160,0.25);
}
.btn-primary::after { content: '⛵'; font-size: 14px; }
.btn-ghost::after { content: '→'; }
.btn-outline::after { content: '→'; }

/* --- GYORS NAV SÁV --- */
.quicknav { background: var(--sotet-kek); display: flex; position: relative; }
.quicknav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--akcent), var(--kek), var(--akcent));
  opacity: 0.4;
}
.quicknav-item { flex: 1; display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-right: 1px solid rgba(255,255,255,0.07); text-decoration: none; transition: all 0.2s; }
.quicknav-item:last-child { border-right: none; }
.quicknav-item:hover { background: rgba(94,200,240,0.12); text-decoration: none; transform: translateY(-1px); }
.qn-icon { font-size: 24px; flex-shrink: 0; transition: transform 0.2s; }
.quicknav-item:hover .qn-icon { transform: scale(1.2); }
.qn-label { font-size: 12px; font-weight: 700; color: var(--feher); }
.qn-sub { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 1px; }

/* --- ELRENDEZÉS --- */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.content-grid { display: grid; grid-template-columns: 1fr 260px; gap: 32px; padding: 36px 0; }
.main-col { min-width: 0; }
.section { padding: 48px 0; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--kek); margin-bottom: 8px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: linear-gradient(90deg, var(--akcent), var(--kek));
  border-radius: 2px;
}
.section h2 { font-size: 26px; margin-bottom: 24px; }
.section-bg { background: var(--hatter); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* --- KÁRTYÁK --- */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card { background: var(--feher); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s; }
.card:hover { box-shadow: 0 8px 32px rgba(14,111,160,0.14); transform: translateY(-4px); border-color: var(--akcent); }
.card-img { height: 180px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 18px; }
.card-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--kek); margin-bottom: 6px; }
.card h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.4; }
.card p { font-size: 13px; color: var(--masod); line-height: 1.65; }
.card-link { display: inline-block; margin-top: 12px; font-size: 12px; font-weight: 700; color: var(--kek); }

/* Nagy kiemelt kártya */
.card-featured { display: grid; grid-template-columns: 1fr 1fr; background: var(--feher); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.card-featured .card-img { height: 100%; min-height: 240px; }
.card-featured .card-body { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.card-featured h2 { font-size: 22px; margin-bottom: 10px; }
.card-featured p { font-size: 14px; color: var(--masod); }

/* --- KÉT OSZLOPOS --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; }
.two-col-img { overflow: hidden; min-height: 320px; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-text { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.two-col-text h2 { font-size: 24px; margin-bottom: 14px; }
.two-col-text p { font-size: 14px; color: var(--masod); line-height: 1.8; margin-bottom: 20px; }
.two-col-bg { background: var(--hatter); }

/* --- OLDALSÁV --- */
.sidebar-widget { background: var(--feher); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-bottom: 24px; }
.widget-title { font-family: var(--font-test); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--feher); background: var(--sotet-kek); padding: 10px 16px; }
.widget-body { padding: 14px 16px; }
.widget-item { padding: 10px 0; border-bottom: 1px solid var(--vilag-kek); }
.widget-item:last-child { border-bottom: none; }
.widget-item-tag { font-size: 10px; font-weight: 700; color: var(--kek); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.widget-item a { font-size: 12px; font-weight: 600; color: var(--szoveg); line-height: 1.45; }
.widget-item a:hover { color: var(--kek); text-decoration: none; }

/* --- BANNER --- */
.banner-widget { border: 2px dashed var(--border); border-radius: 8px; padding: 20px 16px; text-align: center; background: var(--vilag-kek); margin-bottom: 24px; min-height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.banner-widget .banner-label { font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; color: #8ab0c4; font-weight: 700; }
.banner-widget .banner-text { font-size: 12px; color: var(--masod); }
.banner-widget .banner-size { font-size: 10px; color: #a0c0d4; }

/* --- OLDAL FEJLÉC --- */
.page-hero { background: var(--sotet-kek); padding: 48px 24px; text-align: center; }
.page-hero h1 { color: var(--feher); font-size: 34px; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 520px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb { max-width: 1100px; margin: 0 auto; padding: 12px 24px; font-size: 12px; color: var(--masod); border-bottom: 1px solid var(--border); }
.breadcrumb a { color: var(--kek); }
.breadcrumb span { margin: 0 6px; }

/* --- CIKK --- */
.article-body { max-width: 720px; }
.article-body h2 { font-size: 22px; margin: 32px 0 12px; }
.article-body h3 { font-size: 18px; margin: 24px 0 10px; }
.article-body p { margin-bottom: 16px; color: var(--masod); line-height: 1.85; }
.article-body ul, .article-body ol { margin: 0 0 16px 20px; color: var(--masod); line-height: 1.85; }
.article-body li { margin-bottom: 6px; }

/* --- FOOTER --- */
#site-footer { background: var(--sotet-kek); padding: 44px 24px 0; margin-top: 60px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 40px; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 220px; }
.footer-col h4 { font-family: var(--font-test); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: var(--akcent); text-decoration: none; }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 16px 0; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.25); }

/* --- VÍZSZINTES BANNER --- */
.banner-vizszintes { background: var(--hatter); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.banner-vizszintes-belso { max-width: 728px; margin: 0 auto; height: 90px; background: #e8eef2; border-radius: 4px; border: 1px solid #cddae2; }

/* --- COOKIE BANNER --- */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--sotet-kek); border-top: 3px solid var(--akcent); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; z-index: 9999; box-shadow: 0 -4px 24px rgba(0,0,0,0.2); flex-wrap: wrap; }
#cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.8); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--akcent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--kek); color: var(--feher); border: none; padding: 9px 22px; border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: var(--font-test); }
.cookie-reject { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); padding: 9px 22px; border-radius: 4px; font-size: 13px; cursor: pointer; font-family: var(--font-test); }

/* --- RESZPONZÍV --- */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .two-col { grid-template-columns: 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .quicknav { flex-wrap: wrap; }
  .quicknav-item { flex: 1 0 33%; }
}
@media (max-width: 600px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--feher); border-bottom: 1px solid var(--border); padding: 12px 0; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { height: 340px; }
  .hero-content { padding: 0 24px; }
  .hero-content h1 { font-size: 26px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .two-col-text { padding: 28px 24px; }
  .page-hero h1 { font-size: 24px; }
}
