@font-face {
  font-family: 'calibri';
  <link rel="stylesheet"
  href="https://fonts.googleapis.com/css?family=calibri">
  font-weight: normal;
  font-style: normal;
}

/* Alapvető stílusok */
body {
  font-family: 'calibri', sans-serif;
  line-height: 1.1;
  background-color: #f4f4f4;
  color: #333;
}

.container {
  width: 80%;
  margin: auto;
  overflow: hidden;
  padding: 5px 0;
}

/* Hero szekció */
.hero {
  /*background-image: url("képek/Plalya111.jpeg");*/
  background-size: 100% 100%;
  color: #f2f2f2;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  text-shadow: 1px 1px 0.5px rgba(0,0,0,0.7);
}
.hero h2 {
  font-size: 2.6em;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.6em;
  margin-bottom: 30px;
}

/* Gombok */
.btn {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  background: #77aaff;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.5s ease;
  cursor: pointer;
  border: none;
  font-size: 0.9em;
}
.btn:hover {
  background: #5588cc;
  border: 1.5px solid black;
}
.btn.booked-btn {
  background: #f7a4a4;
  padding: 5px 20px;
  cursor: not-allowed;
}

/* Szekciók */
.section {
  background-image: url("képek/Arena-4.jpeg");
  padding: 0px;
  text-align: center;
}
.section h2 {
  font-size: 2.2em;
  color: #fff;
  text-shadow: 1px 1px 0.5px rgba(0, 0, 0, 0.7);
}
.section p {
  max-width: 800px;
  color: #797979;
  text-shadow: 1px 1px 0.5px rgba(0, 0, 0, 0.7);  
  margin: 0 auto 20px auto;
}

/* Pricing szekció */
.pricing {
  background-image: url("../css/képek/mar.jpeg");
  background-size:100% 100%;
  color: #fff;
  padding: 10px 0;
  text-align: center;
}
.pricing h2 {
  font-size: 2.2em;
  text-shadow: 1px 1px 0.5px rgba(0, 0, 0, 0.7);
}
.pricing p {
  font-size: 1.6em;
  text-shadow: 1px 1px 0.5px rgba(0, 0, 0, 0.7);
}
.pricing-table {
  background-image: url("képek/Plalya-palmeras.jpeg");
  background-size: 100% 100%;	  
  display: inline-flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 5px;
}
.price-card {

  background-size:100% 100%;	
  background: #ffffffd4;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: auto;
}
.price-card h2 {
  color: #77aaff;
  font-size: 2em;
  margin-bottom: 15px;
}
.price-card h3 {
  color: #77aaff;
  font-size: 1.5em;
  margin-bottom: 15px;
}
.price-card .price {
  font-size: 2.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}
.price-card ul li {
  margin-bottom: 10px;
  font-size: 1em;
  display: flex;
  align-items: center;
}
.price-card ul li::before {
  content: '✔️';
  margin-right: 8px;
  color: #77aaff;
}

/* Turnus táblázat */
.tour-table-section {

  padding: 10px 20px;
  margin-top: 2px;
}
.tour-table-section h1 {
  color: #333;
  margin-bottom: 20px;
  font-size: 2em;
}
table {
  color: #333;
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  table-layout: auto;
}
td, th {
  border: 1px solid #ddd;
  text-align: center;
  padding: 4px;
}
th {
  background-color: #e6e6e6;
  font-weight: bold;
  color: #555;
}
tr:nth-child(odd) {
  background-color: #dddddda3;
}
tr:nth-child(even) {
  background-color: #ffffffa8;
}
tr:hover {
  background-color: #c7c7c7;
}
.table-btn-cell {
  text-align: center;
  vertical-align: middle;
}
.table-btn-cell .btn {
  padding: 7px 10px;
  font-size: 0.8em;
}

/* Modalok */
.modal-overlay {
  display:none;
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.7);
  z-index:9999;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background:#fff;
  width:90%;
  max-width:500px;
  padding:30px;
  border-radius:10px;
  position:relative;
  text-align: left;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-close {
  position:absolute;
  top:10px;
  right:20px;
  cursor:pointer;
  font-size:1.5em;
  color: #333;
}
.modal-content h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #77aaff;
}
.modal-content label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #555;
}
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="tel"],
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
}
.modal-content button[type="submit"] {
  background:#77aaff;
  color:#fff;
  padding:12px 25px;
  border:none;
  border-radius:5px;
  cursor:pointer;
  font-size: 1em;
  display: block;
  margin: 20px auto 0;
  transition: background 0.3s ease;
}
.modal-content button[type="submit"]:hover {
  background: #5588cc;
}
.modal-content .checkbox-container {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.modal-content .checkbox-container input[type="checkbox"] {
  margin-right: 10px;
}
.modal-content .link-item {
  cursor: pointer;
  color: #77aaff;
  text-decoration: underline;
}
.modal-content p.small-text {
  font-size: 0.85em;
  margin-top: 15px;
  color: #777;
  text-align: center;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 3px;
}
footer .contact-info p {
  margin: 5px 0;
}
footer .contact-info a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
footer .contact-info a:hover {
  text-decoration: underline;
}

/* Reszponzív */
@media (max-width: 768px) {
  .container { width: 95%; padding: 0px 0; }
  .hero h2 { font-size: 2em; margin-bottom: 5px; }
  .hero p { font-size: 1.2em; padding: 0 10px; }
  .hero { height: auto; padding: 40px 0; }
  .features, .how-it-works .steps, .pricing-table {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .feature-item, .how-it-works .step {
    flex-basis: 100%;
    width: 100%;
    margin: 0;
    max-width: 350px;
    padding: 20px;
    box-sizing: border-box;
  }
  .price-card {
    flex-basis: 100%;
    max-width: 350px;
    padding: 15px;
  }
  .modal-content {
    margin: 10% auto;
    width: 95%;
    padding: 20px;
  }
  .table-wrapper { overflow-x: hidden; }
  thead { display: none; }
  tr {
    border: 1px solid #ddd;
    display: block;
    margin-bottom: 15px;
    border-radius: 8px;
  }
  td {
    border: none;
    display: block;
    text-align: center;
    padding-left: 0%;
    position: relative;
  }
  td::before {
    content: attr(data-label);
    position: absolute;
    left: 6px;
    width: 45%;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
    color: #77aaff;
  }
  .table-btn-cell { text-align: center; padding-left: 0; }
  .table-btn-cell::before { content: none; }
}
.embedded-table-section {
  margin-top: 0px;
  padding-top: 15px;
  border-top: 2px solid #e5e7eb;
}

.embedded-table-section h3 {
  text-align: center;
  color: #0055DE;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.embedded-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.embedded-table thead {
  background: #f3f4f6;
}

.embedded-table th {
  padding: 10px 8px;
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
  font-size: 0.85rem;
}

.embedded-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.embedded-table tbody tr:hover {
  background: #f9fafb;
}

.embedded-table .btn {
  padding: 6px 12px;
  font-size: 0.85rem;
}

/* Scroll a táblázathoz ha sok turnus van */
.embedded-table-section .table-wrapper {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}


  }
}

