
/* Alap reset */

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

body {
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background-color: #f9fafb;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

/* Layout */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #f3f4f6;
}

h1,
h2,
h3 {
  font-weight: 400;
  color: #111827;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

/* Fejléc */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.logo {
  font-size: 1.4rem;
  text-decoration: none;
}

.logo span {
  color: #38bdf8;
}

.main-nav a {
  margin-left: 1.25rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.main-nav a:hover {
  color: #bfdbfe;
}

/* Hero */

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  color: #f9fafb;
  background-image:
    linear-gradient(120deg, rgba(2, 6, 23, 0.85), rgba(15, 23, 42, 0.9)),
    url("assets/f5fedc210f938d1a4c8f711f910558b16a46de79.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.25), transparent 60%);
}

.hero-content {
  position: relative;
  max-width: 560px;
  color: #ffffff !important;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.75rem;
  color: #ffffff !important;
}

.hero p {
  margin-bottom: 1.5rem;
  color: #ffffff !important;
}

.hero a {
  color: #ffffff !important;
}

/* Gombok */

.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.primary {
  background: #38bdf8;
  color: #0b1120;
}

.btn.primary:hover {
  background: #0ea5e9;
}

/* Link listák */

.link-list {
  list-style: none;
  margin-top: 0.75rem;
}

.link-list li {
  margin-bottom: 0.5rem;
}

.link-list a {
  color: #2563eb;
  text-decoration: none;
}

.link-list a:hover {
  text-decoration: underline;
}

/* Kártyák */

.card {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
}

/* Termék layout */

.product-layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.feature-list {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
}

.feature-list li {
  margin-bottom: 0.4rem;
}

.product-images {
  display: grid;
  gap: 0.75rem;
}

.product-images img {
  border-radius: 0.6rem;
}

/* Történetek */

.story-card {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .story-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: center;
  }
}

.story-image-wrapper img {
  border-radius: 0.9rem;
}

.story-text h3 {
  margin-bottom: 0.5rem;
}

/* Galéria */

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-grid img {
  border-radius: 0.6rem;
  object-fit: cover;
  height: 100%;
}

/* Kapcsolat */

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1.1fr;
  }
}

.contact-list {
  list-style: none;
  margin-top: 0.75rem;
}

.contact-list li {
  margin-bottom: 0.35rem;
}

.contact-list a {
  color: #2563eb;
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-form {
  background: #ffffff;
  border-radius: 0.9rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  border: 1px solid #e5e7eb;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}

.form-row label {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-row input,
.form-row textarea {
  border-radius: 0.4rem;
  border: 1px solid #d1d5db;
  padding: 0.45rem 0.6rem;
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.2);
}

.form-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

/* Lábléc */

.site-footer {
  background: #020617;
  color: #9ca3af;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

.footer-inner {
  text-align: center;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* 404 oldal */

.error-page {
  background: #020617;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: "Abel", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.error-wrapper {
  text-align: center;
  padding: 2rem;
}

.error-title {
  font-size: 4rem;
  margin-bottom: 0.75rem;
}

.error-text {
  margin-bottom: 1.5rem;
}

/* Mobil finomhangolás */

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
  }

  .main-nav a {
    margin: 0 0.75rem 0.35rem 0;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
