/* === Alapbeállítások === */
:root {
  --bg: #0a0a0a;
  --card: #141414;
  --gold: #c9a34a;
  --text: #ffffff;
  --muted: #cccccc;
  --maxw: 1200px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* === Fejléc és navigáció === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(201, 163, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav a {
  text-decoration: none;
  color: var(--gold);
  font-weight: bold;
  transition: 0.3s;
}

.nav a {
  text-decoration: none;
  color: var(--gold);
  font-weight: bold;
  transition: 0.3s;
}

/* csak hover állapotban legyen fehér */
.nav a:hover {
  color: var(--text);
}

/* az active osztály ne változtassa meg a színt */
.nav a.active {
  color: var(--gold);
}

/* === Logók === */
.big-logo {
  width: 320px;
  max-width: 80%;
  margin-top: 160px;
  transition: 0.3s;
}

.small-logo {
  position: absolute;
  left: 18px;
  top: 8px;
  height: 50px;
  opacity: 0;
  transition: 0.3s;
}

/* === Tartalom === */
.page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}

.content {
  padding: 110px 20px 60px;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
}

.page-heading {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

/* === Dobozok === */
.box {
  background: var(--card);
  border: 1px solid rgba(201, 163, 74, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 25px auto;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.box-title {
  color: var(--gold);
  margin-bottom: 12px;
}

/* === Táblázatok === */
.table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text);
}

.price-table th,
.price-table td {
  border: 1px solid rgba(201, 163, 74, 0.3);
  padding: 10px;
  text-align: center;
  font-size: 15px;
}

.price-table th {
  background: #1b1b1b;
  color: var(--gold);
  font-weight: 700;
}

/* === Kapcsolat térkép === */
.map-wrap {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  filter: invert(92%) hue-rotate(180deg) brightness(1.05) contrast(0.95);
}

/* === Footer / Telefonszám === */
footer {
  text-align: center;
  padding: 25px 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
  border-top: 1px solid rgba(201, 163, 74, 0.2);
}

.phone a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.phone a:hover {
  color: var(--text);
}

/* === Hamburger menü (mobil) === */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--gold);
  position: absolute;
  right: 20px;
  top: 12px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(201, 163, 74, 0.3);
  }

  .nav ul {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open {
    display: flex;
  }

  .price-table th,
  .price-table td {
    font-size: 13px;
    padding: 8px;
  }

  .big-logo {
    width: 220px;
    margin-top: 120px;
  }

  .small-logo {
    height: 40px;
    top: 10px;
  }
}
footer {
  background: #0a0a0a;
  text-align: center;
  padding: 35px 15px;
  color: var(--gold);
  border-top: 1px solid rgba(201, 163, 74, 0.3);
  margin-top: 40px;
}

.footer-content p {
  margin: 6px 0;
  font-size: 15px;
}

.footer-content a {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.footer-content a:hover {
  color: var(--text);
}

.reserved {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}
/* === Kapcsolat űrlap === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form label {
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(201, 163, 74, 0.4);
  border-radius: 5px;
  background: #0e0e0e;
  color: var(--text);
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 5px rgba(201, 163, 74, 0.5);
}

.contact-form button {
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e5c36a;
  transform: scale(1.02);
}
/* === Sikerüzenet === */
.success-message {
  margin-top: 15px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  animation: fadeIn 0.6s ease forwards;
}

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