/* ===================== GLOBAL ===================== */
:root {
  --bg: #0b0b10;
  --bg-alt: #12121a;
  --card: #151524;
  --text: #e9e9ef;
  --muted: #b9b9c6;
  --brand-1: #7c4dff;
  --brand-2: #2ab0ff;
  --ring: rgba(124, 77, 255, 0.35);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 50%) no-repeat, var(--bg);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}
.section {
  padding: 72px 0;
}
.section.alt {
  background-color: var(--bg);
  padding: 72px 0;
  overflow: hidden;
}

/* ===================== NAVIGATION ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(8px);
  background: rgba(11, 11, 16, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
}
.logo {
  display: inline-grid;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  font-weight: 700;
  font-family: Montserrat,Inter,sans-serif;
  box-shadow: 0 8px 20px var(--ring);
  place-items: center;
}
.brand-text {
  letter-spacing: 0.3px;
}
.menu {
  display: flex;
  gap: 18px;
  align-items: center;
}
.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
}
.menu a:hover {
  opacity: 1;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.08s ease, background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
  max-width: 100%;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 10px 24px var(--ring);
  color: white;
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

/* ===================== BURGER MENU ===================== */
.burger {
  display: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

/* ===================== HERO ===================== */
.hero {
  padding: 140px 0 72px;
}
.hero-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
.hero-copy, .hero-art {
  flex: 1 1 300px;
  min-width: 300px;
}
.hero h1 {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 12px;
}
.grad {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 60ch;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: start;
}
.hero-art {
  display: grid;
  place-items: center;
}

/* ===================== CARDS & SECTIONS ===================== */
.section-title {
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 0 0 24px;
}
.grid {
  display: grid;
  gap: 18px;
}
.cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

/* ===================== HOURS ===================== */
.hours {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 520px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 8px;
}

/* ===================== FAQ ===================== */
.faq-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}
.faq-item p {
  color: var(--muted);
  margin: 8px 0 0;
}

/* ===================== BOOKING FORM ===================== */
.booking-form {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 800px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  font-weight: 600;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0e0e16;
  color: var(--text);
  padding: 12px 12px;
  border-radius: 12px;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 4px rgba(42, 176, 255, 0.15);
}

/* ===================== ADMIN & LOGIN ===================== */
body.admin-page {
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}
.login-container {
  background: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.login-logo img {
  width: 140px;
  display: block;
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0 0 8px rgba(79, 70, 229, 0.6));
}
.login-container h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--brand-1);
}
.input-group {
  margin-bottom: 1.2rem;
  text-align: left;
}
.input-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.input-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: #0e0e16;
  color: #fff;
  font-size: 1rem;
  outline: none;
}
.input-group input:focus {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(42, 176, 255, 0.15);
}
.login-container .btn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  cursor: pointer;
  border: none;
}
.login-container .btn:hover {
  opacity: 0.9;
}
.extra-links {
  margin-top: 1rem;
  font-size: 0.85rem;
}
.extra-links a {
  color: #22c55e;
  text-decoration: none;
}
.extra-links a:hover {
  text-decoration: underline;
}

/* ===================== ANIMATIONS ===================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 2.0s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 0.7s; }
.delay-3 { animation-delay: 1.0s; }
.delay-4 { animation-delay: 1.2s; }

/* ===================== PRICING / PACKAGES ===================== */
.packages {
  padding: 4rem 2rem;
  color: var(--text);
  background-color: var(--bg);
}
.packages h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.package-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.package {
  background-color: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.3s ease;
}
.package.active:hover {
  transform: translateY(-5px);
}
.package h3 {
  margin-top: 0;
}
.package ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.package ul li {
  margin-bottom: 0.5rem;
}
.price {
  font-weight: bold;
  margin-bottom: 1rem;
}
.package button {
  background: linear-gradient(to right, var(--brand-1), var(--brand-2));
  border: none;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--radius);
  cursor: pointer;
}
.coming-soon {
  opacity: 0.3;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal.hidden {
  display: none;
}
.modal-content {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  color: var(--text);
}
.close-btn {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
}
.contact-card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.contact-list{
  list-style: none;
  margin: 12px 0 20px;
  padding: 0;
}
.contact-list li{ margin: 6px 0; }
.contact-actions{ display: flex; gap: 12px; flex-wrap: wrap; }

.btn{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  color: #fff; text-decoration: none; font-weight: 600;
}
.btn.btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
}

/*Admin oldal táblázat alsó része */
.table-cell {
  padding: 10px;
  text-align: left;
  white-space: nowrap;
}
	/*Kijelentkezés Gomb*/
.logout-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(90deg, #7c4dff, #2ab0ff);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
  transition: background 0.3s ease;
}
.logout-btn:hover {
  background: linear-gradient(90deg, #6939f9, #199bdc);
}

	/*napok beállítása box */
.admin-box {
  background: #151524;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin: 30px auto;
  max-width: 800px;
  width: 90%;
  color: #e9e9ef;
}
.availability-submit {
  background: linear-gradient(90deg, #7c4dff, #2ab0ff);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 0 15px rgba(124, 77, 255, 0.4);
  transition: background 0.3s ease;
}

.availability-submit:hover {
  background: linear-gradient(90deg, #6939f9, #199bdc);
}

/* ---------------- POWERED BY, FOOTER ---------------- */
footer {
  text-align: center;
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0b0b10;
  display: flex;
  flex-direction: column;
  align-items: center; /* <-- ez középre hozza mindent */
}

.footer-content p {
  margin: 5px 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

.footer-content a {
  color: #b0b0b0;
  text-decoration: none;
}

.footer-content a:hover {
  color: #00bfff;
}

.powered-by {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.powered-by img {
  max-width: 90px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  background: transparent;
}

.powered-by img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .powered-by img {
    max-width: 70px;
  }
}

