:root {
    --primary: #102542;
    --primary-light: #2c3e65;
    --primary-dark: #081a30;
    --accent: #ffd700;
    --accent-light: #ffeb7f;
    --accent-dark: #ccac00;
    --bg: #fdfdfd;
    --text: #1a1a1a;
    --muted: #666;
    --white: #ffffff;
}
.hero-places-skeleton {
    min-height: 140px;      /* akkora, mint a végleges kártya */
}
.banner{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 1rem 1rem;
    background: var(--accent);
    gap: 2rem; text-align: center;
}
.flatpickr-mobile{
    width:100% !important;
}
.accent-text {
    color: var(--accent);
}

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

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

.section {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ?? Fejl�c */
.navbar {
    background-color: var(--primary);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-weight: bold;
    font-size: 1.2rem;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

.title {
    font-size: 18px;
    font-weight: bold;
}

.capacity {
    font-size: 16px;
}

.available {
    font-size: 48px;
    font-weight: bold;
}

nav ul li a {
    color: white;
    font-weight: 500;
    transition: color 0.2s;
}

nav ul li a:hover {
    color: var(--accent);
}

/* ?? Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ?? Gombok */
.btn {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn.large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.btn:hover {
    background-color: var(--accent-dark);
    color: var(--primary-dark);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--accent-dark);
}

.container {
    text-align: center;
    background-color: var(--primary-light);
    color: white;
    font-family: Arial, sans-serif;
    padding: 10px;
    margin-top: 20px;
    border-radius: 10px;
}

/* ?? Hero */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--white);
    gap: 2rem;
}

.hero-text {
    flex: 1 1 400px;
    max-width: 500px;
}

.hero-image {
    flex: 1 1 400px;
    max-width: 800px;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
}

.hero-form {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.hero-form .form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 150px;
}

.hero-form label {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.hero-form input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ?? Mi�rt minket */
.why-us {
    background-color: var(--primary);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: var(--primary-light);
    padding: 2rem;
    width: 280px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ?? �raink */
.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--white);
    border-left: 6px solid var(--accent);
    padding: 2rem;
    width: 220px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    border-left-color: var(--accent-dark);
}

.price-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.price-card p {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-dark);
}

/* ?? Szolg�ltat�sok */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.07);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.contact-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.contact-form, .contact-info {
    flex: 1 1 350px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.contact-section {
    padding: 4rem 2rem;
    background: #fff;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-box {
    flex: 1 1 300px;
    color: var(--accent);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.contact-box h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-box p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: space-between;
}

.booking-form {
    flex: 1 1 380px;
    display: grid;
    gap: 1.5rem;
}

.payment-box {
    flex: 1 1 300px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    height: fit-content;
}

.payment-box h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #0ea5e9;
}

.payment-box p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #374151;
}

.payment-box .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* Mobil */
@media (max-width: 768px) {
    .form-layout {
        flex-direction: column;
    }

    .booking-form, .payment-box {
        width: 100%;
    }
}

.contact-box a {
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Mobil optimalizálás */
@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .card {
        width: auto;
    }
}

.has-error {
    border-color: #ff6447 !important;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
}

fieldset {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
}

legend {
    font-weight: bold;
    padding: 0 8px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    flex: 1;
    min-width: 200px;
}

.form-group label {
    margin-bottom: 4px;
    font-weight: 500;
}

.form-group input {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.form-sections-side-by-side {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.available-small {
    font-size: 22px;
!important;
    font-weight: bold;
}

/* --- Responsive styles --- */
@media (max-width: 768px) {
    .form-row, .form-sections-side-by-side {
        flex-direction: column;
    }

    .form-group {
        min-width: 100%;
    }
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.summary-table td {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
}

.summary-table td.label {
    text-align: right;
    font-weight: 500;
    color: #333;
    width: 50%;
    background-color: #f9f9f9;
}

.summary-table td:last-child {
    text-align: right;
    font-weight: bold;
    color: #ff6447;
}

.summary-table td:first-child {
    text-align: right;
    font-weight: bold;
    color: #111;
}

span.error {
    color: #ff6447;
    font-size: 11px;
}
.color-danger{
    color: #ff6447;
}

#reservation h1 {
    background: var(--primary-light);
    color: var(--accent);
    padding: 1.5rem;
}

#reservation {
    padding: 1rem 2rem;
}

.dtpicker-header {
    padding: 0.2em 1em;
    background-color: var(--primary) !important;
}

.dtpicker-components .dtpicker-comp > * {
    color: #1a1a1a !important;
}

.dtpicker-buttonCont .dtpicker-button {
    background: var(--accent) !important;
    color: var(--primary-light) !important;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-btn img {
    width: 24px;
    height: 16px;
}

.language-dropdown {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    top: 100%;
    right: 0;
    width: 120px;
}

.language-dropdown a {
    display: flex;
    align-items: center;
    padding: 10px;
    color: #1f3b50;
    text-decoration: none;
    gap: 5px;
}

.language-dropdown a img {
    width: 24px;
    height: 16px;
}

.language-dropdown a:hover {
    background: #f0f0f0;
}

.language-selector:hover .language-dropdown {
    display: block;
}

/* ?? CTA */
.cta {
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

/* ?? L�bl�c */
.footer {
    background: #e9ecef;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #555;
}

/* ?? Foglal�s oldal �rlap */
.form-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.booking-form {
    display: grid;
    gap: 1.5rem;
}

.booking-form .form-group {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.booking-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.booking-form input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* ?? Mobil reszponzivit�s */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .hero {
        display: block !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 1rem 1rem !important;
        background: var(--white);
    }

    nav {
        position: absolute;
        top: 74px;
        right: 0;
        background: var(--primary);
        width: 100%;
        text-align: center;
        display: none;
        flex-direction: column;
        padding: 1rem 0;
    }

    .navbar {
        padding: 0.5rem 2rem;
    }

    nav.active {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul li a {
        color: white;
        font-size: 1rem;
        padding: 0.75rem;
        display: block;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-image {
        max-width: 100%;
    }

    .cards, .pricing, .service-grid {
        flex-direction: column;
        align-items: center;
    }
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 2rem;
}

.hero-form-card {
    flex: 1 1 40%;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    max-width: 400px;
}

.hero-form {
    display: grid;
    gap: 1rem;
}

.hero-form h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    text-align: center;
}

.hero-form .form-group {
    display: flex;
    flex-direction: column;
}

.hero-form label {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.hero-form input {
    padding: 0.6rem;
    border: 1px solid #333;
    color: var(--text);
    border-radius: 6px;
    font-size: 1rem;
}

.hero-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.hero-form button {
    margin-top: 1rem;
    width: 100%;
}

.hero-text {
    flex: 1 1 60%;
    max-width: 800px;
}

.hero-text h1 {
    font-size: 2.0rem;
}

.hero-text p {
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Mobil */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-form-card, .hero-text {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

.payment-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin-top: 10px;
}

.payment-option {
    flex: 1;
    text-align: center;
    border: 2px solid #1f3b50;
    border-radius: 10px;
}

.payment-option i {
    font-size: 40px;
    color: #1f3b50;
}

.price-tables {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

#services h2 {
    background: var(--primary-light);
    color: var(--accent);
    padding: 1.5rem;
}

#prices h2 {
    color: var(--primary-light);
    background-color: var(--accent);
    padding: 1.5rem;
}

.price-table {
    border-collapse: collapse;
    min-width: 320px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.price-table th, .price-table td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background-color: var(--primary-light);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.contact-section {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    max-width: 960px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #2b2b2b;
}

.contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-section li {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #444;
}
section p {
    text-align: justify;
}
    .hero-text h1 {
        font-size: 1.6rem !important;
    }
.contact-section li strong {
    display: inline-block;
    min-width: 140px;
    color: #111;
}

.contact-section p {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-section {
        padding: 1.25rem;
    }
    #reservation {
        padding: 1rem 0.5rem;
    }

    .contact-section li strong {
        min-width: 100px;
        font-size: 0.95rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-section li {
        font-size: 0.95rem;
    }
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.payment-button {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary-light);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 240px;
    text-align: center;
}

.payment-button:hover {
    background: var(--primary-light);
    color: var(--accent);
}

.payment-button.active {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent-dark);
}

.form-group select {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #fff;
    color: #333;
}
#faq {
    padding: 4rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

#faq h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #0f3557; /* text-dark-blue */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-align: center;
}

#faq > p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    text-align: justify;
}

/* GYIK kérdés-válasz elemek */
.faq-item {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background-color: #f9f9f9;
    border-left: 4px solid #0f3557;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f3557;
    margin-top: 0.5rem;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.faq-item p {
    font-size: 1rem;
    font-weight: 400;
    color: #444;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}
.footer-menu li {
    display: inline-block;
    margin-left: 15px;
}

.footer-menu li:first-child {
    margin-left: 0;
}

.footer-menu a:hover {
    text-decoration: underline;
}
.center-p{max-width: 1200px;margin:0 auto}
.blog-comparison {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.7;
    color: #222;
    background-color: #fff;
}

.blog-comparison h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: #111;
}

.blog-comparison p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.blog-comparison strong {
    font-weight: 600;
    color: #0057b8; /* kék kiemelés */
}

.blog-comparison section {
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e1e1;
}

.blog-comparison section:last-child {
    border-bottom: none;
}

.blog-comparison .section-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
}

@media (min-width: 768px) {
    .blog-comparison {
        padding: 3rem;
    }

    .blog-comparison h1 {
        font-size: 2.5rem;
    }
}
