/* ============================================================
   ENIX Siófok – Közös stílus
   Szín: #e87722 (narancs), #333 (sötét), #f5f5f5 (világos)
   ============================================================ */

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

:root {
  --narcs: #e87722;
  --narcs-dark: #c85f10;
  --szurke: #666;
  --sotet: #222;
  --vilagos: #f7f7f7;
  --feher: #fff;
  --border: #e0e0e0;
  --font: 'Segoe UI', Arial, Helvetica, sans-serif;
  --shadow: 0 2px 16px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--sotet);
  background: var(--feher);
}

a { color: var(--narcs); text-decoration: none; }
a:hover { color: var(--narcs-dark); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ── Topbar ─────────────────────────────────────────── */
.topbar {
  background: var(--sotet);
  color: #ccc;
  font-size: 13px;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.topbar a { color: #ccc; }
.topbar a:hover { color: var(--narcs); text-decoration: none; }
.topbar .fa { margin-right: 4px; color: var(--narcs); }

/* ── Header / Nav ───────────────────────────────────── */
header {
  background: var(--feher);
  border-bottom: 3px solid var(--narcs);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.logo img { height: 56px; width: auto; }

nav ul { list-style: none; display: flex; gap: 4px; }
nav ul li a {
  display: block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--sotet);
  border-radius: 4px;
  transition: background .2s, color .2s;
  text-transform: uppercase;
  letter-spacing: .5px;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--narcs);
  color: var(--feher);
  text-decoration: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--sotet);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ── Container ──────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ── Hero banner ────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--sotet) 60%, #444 100%);
  color: var(--feher);
  padding: 70px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.hero h1 span { color: var(--narcs); }
.hero p {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 640px;
  margin: 0 auto 28px;
}
.btn {
  display: inline-block;
  background: var(--narcs);
  color: var(--feher);
  padding: 13px 30px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, transform .15s;
  border: 2px solid transparent;
}
.btn:hover { background: var(--narcs-dark); color: var(--feher); text-decoration: none; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--feher);
  margin-left: 10px;
}
.btn-outline:hover { background: var(--feher); color: var(--sotet); }

/* ── Section ────────────────────────────────────────── */
section { padding: 60px 0; }
section:nth-child(even) { background: var(--vilagos); }

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--sotet);
}
.section-title span { color: var(--narcs); }
.section-sub {
  text-align: center;
  color: var(--szurke);
  max-width: 600px;
  margin: 0 auto 40px;
}
.divider {
  width: 60px;
  height: 4px;
  background: var(--narcs);
  margin: 12px auto 30px;
  border-radius: 2px;
}

/* ── Cards / Grid ───────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  background: var(--feher);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 28px rgba(0,0,0,.15); }
.card img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 22px; }
.card-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--sotet); }
.card-body p { color: var(--szurke); font-size: .95rem; }

/* ── Service icon blocks ────────────────────────────── */
.service-block {
  text-align: center;
  padding: 30px 20px;
  background: var(--feher);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.service-block:hover { transform: translateY(-3px); }
.service-block .icon {
  width: 64px;
  height: 64px;
  background: var(--narcs);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--feher);
}
.service-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-block p { color: var(--szurke); font-size: .9rem; }

/* ── Stats bar ──────────────────────────────────────── */
.stats { background: var(--narcs); color: var(--feher); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 20px; }
.stat-num { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.stat-label { font-size: .9rem; opacity: .85; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── Hosting table ──────────────────────────────────── */
.hosting-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hosting-card {
  background: var(--feher);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.hosting-card:hover, .hosting-card.featured {
  border-color: var(--narcs);
  box-shadow: var(--shadow);
}
.hosting-card .plan-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.hosting-card .plan-price { font-size: 2rem; font-weight: 900; color: var(--narcs); }
.hosting-card .plan-period { font-size: .8rem; color: var(--szurke); margin-bottom: 16px; }
.hosting-card ul { list-style: none; text-align: left; font-size: .88rem; color: var(--szurke); margin-bottom: 20px; }
.hosting-card ul li { padding: 5px 0; border-bottom: 1px solid var(--border); }
.hosting-card ul li::before { content: "✓ "; color: var(--narcs); font-weight: 700; }

/* ── Content page ───────────────────────────────────── */
.page-hero {
  background: var(--sotet);
  color: var(--feher);
  padding: 40px 0 32px;
}
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
.breadcrumb { font-size: 13px; opacity: .65; margin-top: 6px; }
.breadcrumb a { color: var(--narcs); }

.content-section { padding: 60px 0; }
.content-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--sotet); margin: 32px 0 12px; }
.content-section h2:first-child { margin-top: 0; }
.content-section p { color: #444; margin-bottom: 14px; }
.content-section ul { padding-left: 22px; margin-bottom: 14px; }
.content-section ul li { color: #444; margin-bottom: 6px; }

/* ── Kapcsolat ──────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--narcs);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--feher); font-size: 18px;
  flex-shrink: 0;
}
.contact-item p { margin: 0; color: var(--szurke); font-size: .95rem; }
.contact-item strong { display: block; color: var(--sotet); font-size: 1rem; }
.contact-map iframe { width: 100%; height: 380px; border: 0; border-radius: 8px; box-shadow: var(--shadow); }

/* ── Footer ─────────────────────────────────────────── */
footer { background: #1a1a1a; color: #aaa; padding-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo img { height: 48px; margin-bottom: 14px; filter: brightness(1.3); }
.footer-logo p { font-size: .9rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--feher);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--narcs);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: #aaa; font-size: .9rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--narcs); text-decoration: none; }
.footer-map { padding: 20px 0 30px; border-top: 1px solid #333; }
.footer-map iframe { width: 100%; height: 220px; border: 0; border-radius: 6px; }
.footer-bottom {
  background: #111;
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  color: #666;
}
.footer-bottom a { color: #888; }

/* ── CTA strip ──────────────────────────────────────── */
.cta-strip { background: var(--narcs); color: var(--feher); padding: 40px 0; text-align: center; }
.cta-strip h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
.cta-strip p { opacity: .9; margin-bottom: 20px; }
.btn-white { background: var(--feher); color: var(--narcs); font-weight: 700; }
.btn-white:hover { background: var(--sotet); color: var(--feher); }

/* ── SEO jellemző lista ─────────────────────────────── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #444;
  border-bottom: 1px solid var(--border);
}
.feature-list li::before {
  content: "▶";
  color: var(--narcs);
  position: absolute;
  left: 0;
  font-size: .75rem;
  top: 11px;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3, .hosting-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--feher);
    border-top: 3px solid var(--narcs);
    box-shadow: var(--shadow);
    z-index: 1000;
  }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  nav ul li a { padding: 12px 20px; border-radius: 0; font-size: 15px; }
  .grid-3, .grid-2, .hosting-grid, .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero { padding: 45px 0 38px; }
  .btn-outline { margin-left: 0; margin-top: 10px; }
  section { padding: 40px 0; }
  .content-section { padding: 36px 0; }
}
