 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

    .simple-header {
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 1px;
      border-bottom: 1px solid #e5e5e5;
    }
    .simple-header a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  letter-spacing: 1px;
}

    main {
      position: relative;
      height: calc(100vh - 180px);
      background: url("Imperial.png") center / cover no-repeat;
    }

    .booking-button {
      position: absolute;

      top: 80%;
      left: 50%;
      transform: translateX(-50%);

      padding: 14px 36px;
      border: 1px solid #000;
      background: transparent;
      color: #000;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 2px;
      transition: all 0.3s ease;
    }

    .booking-button:hover {
      background: #fff;
      color: #000;
    }

    /* ===== FOOTER ===== */
    /* ===== Footer ===== */
.footer {
  background: #f4f4f4;
  border-top: 1px solid #ddd;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-center a {
  font-weight: 500;
  text-decoration: none;
  color: #333;
}

.footer-center a:hover {
  text-decoration: underline;
}

.legal-page {
  background: #ffffff;
  padding: 80px 20px;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

.legal-container h2 {
  font-size: 24px;
  margin: 40px 0 20px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.legal-block strong {
  font-weight: 600;
}

.legal-container hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 50px 0;
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 14px 20px;
  border-radius: 6px;
  z-index: 9999;
  font-size: 14px;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

#cookie-banner button {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 13px;
  border-radius: 3px;
}

#cookie-banner button:hover {
  opacity: 0.85;
}
/* ===== HEADER (mint a képen) ===== */
.simple-header {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
}

/* ===== OLDAL HÁTTERE ===== */
.policy-page {
  min-height: calc(100vh - 90px);
  background: #f2f2f2;
  padding: 60px 20px;
}

/* ===== KÁRTYA – EZ ADJA A SALONIC FEELINGET ===== */
.policy-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px 56px;
  border-radius: 6px;

  box-shadow:
    0 2px 6px rgba(0,0,0,0.05),
    0 12px 24px rgba(0,0,0,0.08);
}

/* ===== CÍM ===== */
.policy-card h1 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #111;
}

/* ===== SZÖVEG ===== */
.policy-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

/* ===== MOBIL ===== */
    @media (max-width: 768px) {
      header {
        font-size: 18px;
      }

      .booking-button {
        top: 70%;
        padding: 12px 28px;
      }
       main {
        height: 60vh; /* vagy amekkora legyen a mobilon */
        background-size: contain; /* a kép teljesen látszódjon a szélességhez igazítva */
        background-position: center center; /* mindig középen legyen */
    }

     .footer-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

        .footer-left,
        .footer-center,
        .footer-right {
            text-align: center;
    }
        .legal-page {
        padding: 50px 16px;
    }

        .legal-container h1 {
            font-size: 26px;
    }

        .legal-container h2 {
            font-size: 20px;
    }

        .legal-block {
            font-size: 14px;
    }
    .policy-card {
    padding: 28px;
  }

  .policy-card h1 {
    font-size: 20px;
  }
}