/* Page-owned styles for privat-esemenyek */

.privat-hero {
  padding-block: 4rem;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.08) 0%, rgba(240, 244, 248, 0) 100%);
}

.privat-hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.privat-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

.privat-hero__content h1 {
  margin-block-end: 0;
}

.privat-hero__content p {
  margin-block-end: 0;
  color: #475569;
}

.privat-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.privat-hero__list li {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #0891B2;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

.privat-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.privat-hero__actions .btn {
  flex: 1 1 auto;
  min-width: 160px;
}

.privat-hero__media {
  width: 100%;
  min-width: 0;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
}

.privat-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.2) 0%, transparent 100%);
  pointer-events: none;
}

.privat-hero__media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

@media (min-width: 48rem) {
  .privat-hero {
    padding-block: 6rem;
  }

  .privat-hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .privat-hero__content {
    align-items: flex-start;
    text-align: left;
    margin-inline: 0;
  }

  .privat-hero__list {
    justify-content: flex-start;
  }

  .privat-hero__actions {
    justify-content: flex-start;
  }

  .privat-hero__media img {
    height: 100%;
    min-height: 420px;
  }
}

.privat-section-title {
  text-align: center;
  margin-block-end: 2.5rem;
}

/* Why section */
.privat-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.privat-why__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.privat-why__card h3 {
  margin-block-end: 0;
}

.privat-why__card p {
  margin-block-end: 0;
  color: #475569;
  max-width: 300px;
}

.privat-why__card .content-list {
  margin-block-end: 0;
}

.privat-why__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 1rem;
  color: #0891B2;
}

.privat-why__icon svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 48rem) {
  .privat-why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

/* Event types */
.privat-types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.privat-types__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  padding: 0;
  overflow: hidden;
}

.privat-types__media {
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 4 / 3;
  width: 100%;
}

.privat-types__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.privat-types__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.privat-types__body h3 {
  margin-block-end: 0;
}

.privat-types__body p {
  margin-block-end: 0;
  color: #475569;
  max-width: 280px;
}

.privat-types__body .content-list {
  margin-block-end: 0;
}

@media (min-width: 48rem) {
  .privat-types__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .privat-types__body {
    padding: 2rem;
  }
}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
  .privat-types__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* Process */
.privat-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: privat-step;
}

.privat-process__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  position: relative;
  counter-increment: privat-step;
}

.privat-process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 1rem;
  color: #0891B2;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: Georgia, serif;
}

.privat-process__step h3 {
  margin-block-end: 0;
}

.privat-process__step p {
  margin-block-end: 0;
  color: #475569;
  max-width: 300px;
}

.privat-process__step .content-list {
  margin-block-end: 0;
}

@media (min-width: 48rem) {
  .privat-process__steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
  .privat-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* Poker */
.privat-poker__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.privat-poker__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  max-width: 500px;
}

.privat-poker__content h2 {
  margin-block-end: 0;
}

.privat-poker__content p {
  margin-block-end: 0;
  color: #475569;
}

.privat-poker__content .content-list {
  margin-block-end: 0;
}

.privat-poker__media {
  width: 100%;
  min-width: 0;
  aspect-ratio: 4 / 3;
}

.privat-poker__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 48rem) {
  .privat-poker__container {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 2.5rem;
  }
}

/* Testimonials */
.privat-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.privat-testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  margin-block-end: 0;
  padding: 1.5rem;
  border-inline-start: 3px solid #06B6D4;
}

.privat-testimonial__quote {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: #06B6D4;
  height: 2rem;
  display: block;
}

.privat-testimonial p {
  margin-block-end: 0;
  color: #475569;
  max-width: 300px;
}

.privat-testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-block-start: auto;
}

.privat-testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: #1E293B;
}

.privat-testimonial footer span {
  font-size: 0.875rem;
  color: #475569;
}

@media (min-width: 48rem) {
  .privat-testimonials__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .privat-testimonial {
    padding: 2.5rem;
  }
}

@media (min-width: 36rem) and (max-width: 47.9375rem) {
  .privat-testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* FAQ */
.privat-faq__container {
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privat-faq__item {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid #E2E8F0;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.1), 0 2px 4px -2px rgba(30, 41, 59, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.privat-faq__item h3 {
  margin-block-end: 0;
}

.privat-faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 44px;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1E293B;
  transition: color 200ms ease-in-out;
}

.privat-faq__trigger:hover {
  color: #0891B2;
}

.privat-faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 200ms ease-in-out;
}

.privat-faq__icon::before,
.privat-faq__icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.privat-faq__icon::before {
  width: 12px;
  height: 2px;
}

.privat-faq__icon::after {
  width: 2px;
  height: 12px;
  transition: opacity 200ms ease-in-out;
}

.privat-faq__trigger[aria-expanded="true"] .privat-faq__icon {
  transform: rotate(180deg);
}

.privat-faq__trigger[aria-expanded="true"] .privat-faq__icon::after {
  opacity: 0;
}

.privat-faq__panel {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
}

.privat-faq__panel p {
  margin-block-end: 0;
}

/* Contact */
.privat-contact__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.privat-contact__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 400px;
  min-width: 0;
}

.privat-contact__content h2 {
  margin-block-end: 0;
}

.privat-contact__content p {
  margin-block-end: 0;
  color: #475569;
}

.privat-contact__content .content-list {
  margin-block-end: 0;
}

.privat-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
  width: 100%;
}

.privat-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.privat-contact__field label {
  margin-block-end: 0;
}

.privat-contact__error {
  margin-block-end: 0;
  color: #DC2626;
  font-size: 0.875rem;
}

.privat-contact__submit {
  align-self: flex-start;
  min-width: 160px;
}

.privat-contact__success {
  margin-block-end: 0;
  padding: 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 1rem;
  color: #0891B2;
  font-weight: 600;
}

@media (min-width: 48rem) {
  .privat-contact__container {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 2.5rem;
  }
}

/* Final CTA */
.privat-cta {
  background: rgba(6, 182, 212, 0.08);
}

.privat-cta__content {
  max-width: 500px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.privat-cta__content h2 {
  margin-block-end: 0;
}

.privat-cta__content p {
  margin-block-end: 0;
  color: #475569;
}

.privat-cta__content .btn {
  min-width: 200px;
}

@media (max-width: 47.9375rem) {
  .privat-cta__content .btn {
    width: 100%;
  }
}
