/* ===========================
   ACF DEMO TÉMA – DIZÁJN
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --color-bg: #0e0e0e;
  --color-surface: #161616;
  --color-accent: #c9a96e;
  --color-accent-light: #e8d5b0;
  --color-text: #f0ece4;
  --color-muted: #7a7570;
  --color-border: rgba(201, 169, 110, 0.2);
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ===========================
   NAVBAR
   =========================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.navbar__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  transition: color 0.25s;
}

.navbar__links a:hover {
  color: var(--color-accent);
}

.navbar__cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  transition: all 0.25s;
}

.navbar__cta:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.5s;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.95) 40%, rgba(201,169,110,0.05) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 6rem 0 4rem;
}

.hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-text);
  max-width: 800px;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero__title span {
  color: var(--color-accent);
  font-style: italic;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-muted);
  max-width: 520px;
  margin-top: 1.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s ease 0.45s both;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* ===========================
   FEATURES / SZOLGÁLTATÁSOK
   =========================== */

.features {
  padding: 7rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  max-width: 560px;
  margin-bottom: 4rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--color-border);
}

.feature-card {
  background: var(--color-surface);
  padding: 2.5rem 2rem;
  transition: background 0.25s;
}

.feature-card:hover {
  background: #1e1e1e;
}

.feature-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ===========================
   TEXT + IMAGE SZEKCIÓ
   =========================== */

.about {
  padding: 7rem 2rem;
  background: var(--color-surface);
}

.about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about__image {
  position: relative;
}

.about__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about__image::before {
  content: '';
  position: absolute;
  inset: -1.5rem -1.5rem 1.5rem 1.5rem;
  border: 1px solid var(--color-border);
  z-index: -1;
}

.about__content .section-title {
  margin-bottom: 1.5rem;
}

.about__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ===========================
   CTA SZEKCIÓ
   =========================== */

.cta-section {
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.cta-section__text {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 2.5rem;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-accent);
}

/* ===========================
   ANIMÁCIÓK
   =========================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   RESZPONZÍV
   =========================== */

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__actions { flex-direction: column; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
}
