body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: #fdfaf6;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */

.header {
    position: sticky;
    top: 0;
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 26px;
    font-weight: 600;
    text-decoration: none;
    color: #000;
}

.nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: 0.2s;
}

.nav a:hover {
    color: #000;
}

.btn-nav {
    padding: 8px 16px;
    background: #000;
    color: #fff !important;
    border-radius: 6px;
}

/* MOBIL MENÜ */

.mobile-menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    font-size: 18px;
}

.mobile-menu.open {
    display: flex;
}

/* HERO */

.hero {
    position: relative;
    height: 85vh;
    background: url('images/ház.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 0 0 12px #000;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #000;
}

.btn-hero {
    padding: 12px 24px;
    background: #f2d3a2;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
}

/* SOFT BÉZS BLOKKOK */

.soft-bg {
    background: #f7efe4;
    border-radius: 18px;
    padding: 50px 30px;
    margin-top: 40px;
}

/* STORY BLOKK */

.story {
    text-align: center;
}

.story h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.story p {
    max-width: 900px;
    margin: 15px auto;
    line-height: 1.7;
    font-size: 18px;
}

/* FEATURES */

.features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.feature h3 {
    margin-bottom: 10px;
}

/* KABIN */

.kabin {
    text-align: center;
}

.kabin h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.kabin p {
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
    font-size: 18px;
}
/* WELLNESS BLOKK */

.wellness {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 30px;
    align-items: center;
}

.wellness-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.wellness-text p {
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 15px;
}

.wellness-text ul {
    padding-left: 18px;
    line-height: 1.7;
    font-size: 16px;
}

.wellness-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* GALÉRIA ELŐNÉZET */

.gallery-preview {
    text-align: center;
}

.gallery-preview h2 {
    font-size: 30px;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.btn-more {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

/* LÁTNIVALÓK */

.latnivalok {
    text-align: center;
}

.latnivalok h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.latnivalok p {
    max-width: 900px;
    margin: auto;
    line-height: 1.7;
    font-size: 18px;
}

/* FOOTER */

.footer {
    background: #111;
    color: #eee;
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin: 6px 0;
    font-size: 14px;
}

.footer h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icons img {
    width: 26px;
    height: 26px;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: 0.2s;
}

.social-icons img:hover {
    opacity: 1;
}

.copy {
    text-align: center;
    margin-top: 40px;
    color: #777;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-menu-icon { display: block; }

    .features {
        flex-direction: column;
    }

    .wellness {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .soft-bg {
        padding: 40px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================
   FOGLALÁSI OLDAL – LAYOUT
============================ */

.booking-page .booking-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    max-width: 1300px;
    margin: auto;
}

.booking-page .calendar-wrapper,
.booking-page .booking-panel {
    flex: 1;
    padding: 30px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.booking-page .foglalas-intro {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

.booking-page .panel-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ============================
   NAPTÁR FEJLÉC
============================ */

.booking-page .calendar-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 20px;
}

.booking-page .calendar-header button {
    background: #f2f2f2;
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.2s;
}

.booking-page .calendar-header button:hover {
    background: #e6e6e6;
}

/* ============================
   NAPTÁR GRID
============================ */

.booking-page .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.booking-page .calendar-day {
    padding: 14px;
    background: #fafafa;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    transition: 0.2s;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.booking-page .calendar-day:hover {
    background: #f0f0f0;
}

.booking-page .calendar-day.booked {
    background: #ffe5e5;
    color: #a00;
    cursor: not-allowed;
}

.booking-page .calendar-day.free {
    background: #e8ffe8;
}

.booking-page .calendar-day.selected {
    background: #fff4c2;
}
/* ============================
   NAPTÁR JELMAGYARÁZAT
============================ */

.booking-page .calendar-legend {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.booking-page .legend {
    width: 18px;
    height: 18px;
    display: inline-block;
    border-radius: 4px;
}

.booking-page .legend.free { background: #e8ffe8; }
.booking-page .legend.booked { background: #ffd4d4; }
.booking-page .legend.selected { background: #fff4c2; }

/* ============================
   NAP POPUP (SVÉD STÍLUS)
============================ */

.booking-page .day-popup {
    position: absolute;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 20;
    width: 240px;
    transform: translate(-50%, -120%);
    animation: fadeIn 0.15s ease-out;
}

.booking-page .hidden {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -110%); }
    to { opacity: 1; transform: translate(-50%, -120%); }
}

.booking-page .day-popup h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.booking-page .day-popup p {
    margin: 4px 0;
    font-size: 14px;
}

.booking-page .day-popup small {
    font-size: 12px;
    color: #777;
}

.booking-page .popup-note {
    margin-top: 10px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* ============================
   JOBB OLDALI PANEL – FORM
============================ */

.booking-page .panel-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-page .panel-form label {
    font-weight: 600;
    margin-top: 12px;
    display: block;
    color: #333;
}

.booking-page .panel-form input,
.booking-page .panel-form textarea,
.booking-page .panel-form select {
    width: 100%;
    padding: 12px 14px;
    margin-top: 6px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 16px;
    transition: 0.25s ease;
}

.booking-page .panel-form input:focus,
.booking-page .panel-form textarea:focus,
.booking-page .panel-form select:focus {
    border-color: #bfa98e;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(191,169,142,0.25);
    outline: none;
}

.booking-page .panel-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* GOMB */

.booking-page .btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    background: #bfa98e;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.25s ease;
    font-weight: 600;
}

.booking-page .btn-submit:hover {
    background: #a89275;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ============================
   MOBIL NÉZET
============================ */

@media (max-width: 900px) {
    .booking-page .booking-container {
        flex-direction: column;
        padding: 20px;
    }
}

/* ============================
   VISSZA GOMB – PRÉMIUM
============================ */

.booking-page .vissza-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 30px 0 20px 0;
    padding: 12px 20px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 500;
    border: 1px solid #e6e2dc;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.booking-page .vissza-btn-premium:hover {
    background: #f7f3ee;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* ============================
   POPUP – KÜLDÉS UTÁN
============================ */

#popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popup-box {
  background: #f5f0e8;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 380px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

#popup-box h2 {
  margin-bottom: 10px;
  font-size: 24px;
  color: #3a2f2a;
}

#popup-box p {
  margin-bottom: 20px;
  color: #4a3f3a;
}

#popup-btn {
  background: #3a2f2a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

#popup-btn:hover {
  background: #5a4a42;
}
/* ============================
   LÁTNIVALÓK OLDAL
============================ */

.latnivalok-hero {
    background: url('images/latnivalok-bg.jpg') center/cover no-repeat;
    height: 300px;
    position: relative;
}

.latnivalok-intro {
    font-size: 17px;
    line-height: 1.7;
    margin: 30px auto;
    padding: 25px;
    border-radius: 16px;
}

.latnivalok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.latnival-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.latnival-img {
    height: 160px;
    background: #eee;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-size: 16px;
    margin-bottom: 15px;
}

.coming-soon {
    background: linear-gradient(135deg, #f0f0f0, #e4e4e4);
}

/* ============================
   GASZTRO BLOKK
============================ */

.gastro-section {
    margin-top: 40px;
}

.gastro-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.gastro-item {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.gastro-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.gastro-item p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* ============================
   GALÉRIA OLDAL
============================ */

.gallery-header {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}

.gallery-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 16px;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.gallery-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.2s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
}

.gallery-card p {
    margin: 0;
    font-size: 14px;
    color: #444;
}

.gallery-card.coming-soon {
    background: #f3f3f3;
    height: 200px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #777;
    font-size: 16px;
}

/* ============================
   KAPCSOLAT OLDAL
============================ */

.contact-hero {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
}

.contact-container {
    max-width: 1100px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info {
    width: 40%;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info a {
    color: #444;
    text-decoration: underline;
}

.contact-map {
    width: 60%;
}

.contact-map iframe {
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* ============================
   JOGI OLDALAK (ÁSZF, ADATVÉDELEM)
============================ */

.page-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.page-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.page-section h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #444;
    font-weight: 500;
}

.page-section p,
.page-section li {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.page-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-section strong {
    color: #222;
}

/* === APARTMAN OLDAL JAVÍTÁS – RÉGI SZÉP MÉRET === */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.room-card img,
.room-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* === WELLNESS BLOKK – KÉTOSZLOPOS, BIZTONSÁGOS === */

.wellness-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fdfaf6;
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.wellness-block .wellness-text {
    text-align: left;
}

.wellness-block .wellness-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.wellness-block .wellness-text p {
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.wellness-block .wellness-text ul {
    padding-left: 18px;
    line-height: 1.7;
    font-size: 16px;
    color: #444;
}

.wellness-block .wellness-image {
    text-align: right;
}

.wellness-block .wellness-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Mobil */
@media (max-width: 900px) {
    .wellness-block {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .wellness-block .wellness-image {
        text-align: center;
    }

    .wellness-block .wellness-image img {
        height: 260px;
    }
}

/* === KÉPNAGYÍTÁS POPUP – MINDEN OLDALON === */

.img-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.img-popup.hidden {
    display: none;
}

.img-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

/* === WELLNESS BLOKK – KÉTOSZLOPOS, SZÉP HÁTTÉRREL === */

.wellness-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #f7efe4;
    border-radius: 18px;
    padding: 50px 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.wellness-block .wellness-text {
    text-align: left;
}

.wellness-block .wellness-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Mobil */
@media (max-width: 900px) {
    .wellness-block {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .wellness-block .wellness-image img {
        height: 260px;
    }
}

/* === KÉPNAGYÍTÁS POPUP – MINDEN OLDALON === */

.img-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.img-popup.hidden {
    display: none;
}

.img-popup img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0,0,0,0.4);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.hidden {
    display: none;
}

/* ============================
   FOGLALÁS SIKER POPUP
============================ */

#success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#success-popup.hidden {
    display: none;
}

#success-popup .popup-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 0 25px rgba(0,0,0,0.3);
}

#success-popup h2 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #3a2f2a;
}

#success-popup p {
    margin-bottom: 20px;
    color: #4a3f3a;
}

#success-close {
    background: #3a2f2a;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}

#success-close:hover {
    background: #5a4a42;
}
@media (max-width: 480px) {
  .booking-page .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    padding: 0 5px;
  }

  .booking-page .calendar-day {
    padding: 6px 0;
    font-size: 12px;
  }

  .booking-page .calendar-header {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .contact-map iframe {
    width: 100% !important;
    height: 300px;
    display: block;
    margin-top: 20px;
  }

  .contact-text {
    padding: 0 10px;
  }
}
.nav a {
    position: relative;
    padding-bottom: 4px;
    text-decoration: none;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #000;
    animation: underline 0.25s ease forwards;
}

@keyframes underline {
    from { width: 0; }
    to { width: 100%; }
}
/* ============================
   GALÉRIA – MASONRY LAYOUT
   ============================ */

.masonry-gallery {
    column-count: 3;
    column-gap: 15px;
}

.masonry-gallery a {
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.masonry-gallery img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform .3s ease, filter .3s ease;
}

.masonry-gallery img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Mobilon 2 oszlop */
@media (max-width: 768px) {
    .masonry-gallery {
        column-count: 2;
    }
}

/* Kis mobilon 1 oszlop */
@media (max-width: 480px) {
    .masonry-gallery {
        column-count: 1;
    }
}
/* ===== Kapcsolat oldal elrendezés javítás ===== */

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 0;
}

/* Bal oldali szöveg */
.contact-info {
    flex: 1;
}

/* Jobb oldali térkép */
.contact-map {
    flex: 1;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    border: 0;
}

/* ===== Mobil nézet ===== */
@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info,
    .contact-map {
        width: 100%;
    }

    .contact-map iframe {
        height: 300px;
    }
}
