/* Poczik Hajnalka – finom női spirituális one-page */

:root {
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --sage: #7a9e8e;
  --sage-deep: #5a8070;
  --sage-light: #a8c4b8;
  --rose: #c9a88a;
  --rose-soft: #dcc4b0;
  --gold: #b8956a;
  --plum: #3d3548;
  --plum-soft: #5c5268;
  --white: #ffffff;
  --shadow: rgba(61, 53, 72, 0.08);
  --shadow-deep: rgba(61, 53, 72, 0.14);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --radius: 1.25rem;
  --nav-h: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--plum-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold);
}

.container {
  width: min(68rem, 92vw);
  margin-inline: auto;
}

/* ── Navigation ── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(122, 158, 142, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum-soft);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--plum);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      165deg,
      rgba(35, 28, 45, 0.79) 0%,
      rgba(55, 82, 70, 0.65) 45%,
      rgba(35, 28, 45, 0.9) 100%
    ),
    url("../assets/hero-poczik-hajnalka-02-dob-hegyteto.jpg") center / cover no-repeat;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
  max-width: 44rem;
}

.hero__content::before {
  content: "";
  position: absolute;
  inset: -2.5rem -3rem;
  background: radial-gradient(
    ellipse at center,
    rgba(25, 20, 32, 0.42) 0%,
    transparent 72%
  );
  z-index: -1;
  pointer-events: none;
}

.hero__eyebrow {
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.66),
    0 2px 20px rgba(0, 0, 0, 0.42);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.9rem, 7.3vw, 4.54rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  color: #ffffff;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.66),
    0 4px 32px rgba(0, 0, 0, 0.54);
}

.hero__subtitle {
  font-size: clamp(1.27rem, 3.03vw, 1.51rem);
  font-weight: 600;
  line-height: 1.65;
  color: #ffffff;
  margin-bottom: 2.5rem;
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.6),
    0 2px 24px rgba(0, 0, 0, 0.42);
}

.hero__cta {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: rgba(255, 255, 255, 0.28);
  border: 2px solid #ffffff;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.09rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.42);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.hero__cta:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  opacity: 0.7;
}

.hero__scroll::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 999px;
  animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ── Sections shared ── */

.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--cream-dark);
}

.section__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--plum);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__lead {
  font-size: 1.1rem;
  color: var(--plum-soft);
}

/* ── Bemutatkozás ── */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.about__images {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__img-main {
  border-radius: var(--radius);
  box-shadow: 0 20px 50px var(--shadow-deep);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.about__img-secondary {
  border-radius: var(--radius);
  box-shadow: 0 12px 32px var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 78%;
  margin-left: auto;
  border: 4px solid var(--white);
}

.about__text h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--plum);
  margin: 2rem 0 0.75rem;
}

.about__text h3:first-child {
  margin-top: 0;
}

.about__text p {
  margin-bottom: 1rem;
}

.about__quote {
  margin: 2rem 0;
  padding: 1.75rem 2rem;
  background: var(--white);
  border-left: 3px solid var(--rose);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--plum);
  box-shadow: 0 8px 24px var(--shadow);
}

.about__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.about__badge {
  padding: 0.45rem 1rem;
  background: var(--white);
  border: 1px solid rgba(122, 158, 142, 0.25);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-deep);
}

/* ── Tevékenységek ── */

.activities__banner {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 16px 40px var(--shadow-deep);
}

.activities__banner img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
}

.activities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 28px var(--shadow);
  border: 1px solid rgba(122, 158, 142, 0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--shadow-deep);
}

.activity-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.activity-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.activity-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.activity-card__meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-deep);
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  line-height: 1.5;
}

/* ── Kapcsolat ── */

.contact {
  text-align: center;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}

.contact__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 28px var(--shadow);
  border: 1px solid rgba(201, 168, 138, 0.2);
}

.contact__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.6rem;
}

.contact__card a,
.contact__card span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--plum);
  word-break: break-word;
}

.contact__card a:hover {
  color: var(--sage-deep);
}

.contact__note {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: var(--plum-soft);
  font-style: italic;
}

/* ── Footer ── */

.footer {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(122, 158, 142, 0.15);
  font-size: 0.88rem;
  color: var(--plum-soft);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--plum);
  margin-bottom: 0.35rem;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(122, 158, 142, 0.15);
    padding: 1rem 0;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links li a {
    display: block;
    padding: 0.85rem 1.5rem;
  }

  .nav__toggle {
    display: block;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__img-secondary {
    width: 65%;
  }

  .section {
    padding: 4rem 0;
  }
}

/* ── Coming soon ── */

.coming-soon {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.coming-soon .hero {
  flex: 1;
  min-height: auto;
  color: var(--plum);
}

.coming-soon .hero__bg {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream-dark) 28%,
    rgba(220, 196, 176, 0.28) 50%,
    var(--cream-dark) 72%,
    var(--cream) 100%
  );
}

.coming-soon .hero__content::before {
  display: none;
}

.coming-soon .hero__content {
  max-width: min(72rem, 94vw);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  text-align: left;
}

.coming-soon__photo {
  flex: 0 0 30%;
  max-width: 30%;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.coming-soon__photo img {
  width: 60%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px var(--shadow-deep);
}

.coming-soon__text {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.coming-soon .hero__title {
  margin-bottom: 0;
  color: var(--plum);
  text-shadow: none;
  font-size: 3.5rem;
  white-space: nowrap;
  max-width: none;
  width: 100%;
}

.coming-soon__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  color: var(--sage);
  opacity: 0.9;
}

.coming-soon__ornament::before,
.coming-soon__ornament::after {
  content: "";
  width: clamp(2.5rem, 8vw, 4.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-soft) 40%, var(--sage-light) 100%);
}

.coming-soon__ornament::after {
  background: linear-gradient(90deg, var(--sage-light) 0%, var(--rose-soft) 60%, transparent);
}

@media (max-width: 640px) {
  .coming-soon .hero__content {
    flex-direction: column;
    text-align: center;
  }

  .coming-soon__photo,
  .coming-soon__text {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .coming-soon__photo {
    max-width: 9rem;
  }

  .coming-soon__photo img {
    width: 100%;
  }

  .coming-soon .hero__title {
    white-space: normal;
  }
}

.coming-soon .footer {
  border-top-color: rgba(122, 158, 142, 0.08);
}

.coming-soon .nav__inner {
  justify-content: flex-start;
}
