/* --- EGYEDI GÖRGETŐSÁV --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b58b5e;
}

:root {
    --gold: #d4a373;
    --nude: #f4e1d2;
    --dark: #1a1a1a;
    --light: #fffafb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* =========================================
   FEJLÉC ÉS MENÜ ASZTALI NÉZETBEN
   ========================================= */
header {
    background: #fff;
    padding: 15px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* --- HAMBURGER GOMB (Asztali nézetben rejtve) --- */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

/* X animáció nyitott állapotban */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: var(--gold);
    font-weight: 300;
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* EZ HIÁNYZOTT: TÖKÉLETESEN KÖZÉPRE IGAZÍTOTT ASZTALI MENÜ */
nav {
    display: flex;
    justify-content: center; /* Középre húzza a linkeket */
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Egyenletes távolság a menüpontok között */
    margin-top: 10px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold);
}

/* HERO SZEKCIÓ */
.hero {
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
    color: var(--dark);
}

.hero-bg-triptych {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 0;
}

.hero-bg-triptych img {
    width: 33.333%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Szöveg lent */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: transparent;
    padding: 40px 20px;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--dark);
    margin-bottom: 0;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.6);
}

.hero-content p {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    text-transform: uppercase;
    font-style: normal;
    letter-spacing: 3px;
    color: var(--dark);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 0;
}

/* AKCIÓ SÁV */
.hero-action-bar {
    background-color: var(--light);
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid var(--nude);
}

.hero-action-bar .cta-button {
    display: inline-block;
    background-color: #7f8c8d;
    color: white;
    padding: 16px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(127, 140, 141, 0.4);
}

.hero-action-bar .cta-button:hover {
    background-color: #586364;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(88, 99, 100, 0.5);
}

/* RÓLAM */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.profile-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid var(--nude);
}

/* ÁRLISTA KÁRTYÁK */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.price-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
}

.price-card:hover {
    transform: scale(1.1);
    z-index: 100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--gold);
}

.price-card h3 {
    color: var(--gold);
    border-bottom: 2px solid var(--nude);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.price-card table {
    width: 100%;
    border-collapse: collapse;
}

.price-card td {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
    color: #555;
}

.price-card td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.highlight-row td {
    color: var(--dark);
    font-size: 1.05rem;
    padding-bottom: 15px;
    padding-top: 5px;
}

.special-card {
    background-color: var(--light);
    border: 1px dashed var(--gold);
}

.separator-line {
    width: 100%;
    height: 1px;
    background: var(--nude);
    margin: 40px 0;
    opacity: 0.5;
}

/* FIZETÉS SZEKCIÓ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.payment-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--nude);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.payment-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.payment-card p {
    color: #666;
    font-size: 0.9rem;
}

/* GALÉRIA */
.gallery-tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    color: #888;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
    margin: 0 5px;
}

.tab-button:hover {
    color: var(--gold);
}

.tab-button.active {
    color: var(--dark);
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

/* --- MUNKÁIM KÁRTYÁK HOVER EFFEKT --- */
.work-gallery-card {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.work-gallery-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.work-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(26, 26, 26, 0.85);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 4px;
}

.work-gallery-card:hover .work-overlay {
    opacity: 1;
}

.work-overlay h4 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.work-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
}

/* ESZKÖZÖK & INFÓ */
.tools-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* --- ESZKÖZÖK KÁRTYÁK --- */
.tool-item {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #eee;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.tool-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.tool-item:hover .work-overlay {
    opacity: 1;
}

/* INFÓ KÁRTYA */
.info-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    border: 1px solid #eee;
    padding: 0;
    background-color: #fcfcfc;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.info-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.info-card:hover .info-overlay {
    opacity: 1;
    transform: translateY(0);
}

.info-overlay h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 15px;
    border: none;
}

.info-overlay p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* VÉLEMÉNYEK */
.reviews {
    background: var(--light);
    padding-bottom: 80px;
}

.google-reviews-widget {
    min-height: 200px;
    margin-bottom: 50px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.write-review-box {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px;
    border: 1px solid var(--nude);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.write-review-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.write-review-box p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #ffffff;
    color: #333;
    padding: 15px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    background-color: #f9f9f9;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.google-review-btn .g-icon {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #4285F4;
}

/* WEBSHOP */
.shop {
    background: white;
    text-align: center;
}

.product-card {
    background: var(--light);
    border: 1px solid var(--nude);
    padding: 30px;
    display: inline-block;
    border-radius: 5px;
}

/* Gomb a webshop kártyán belül */
.product-card .cta-button {
    background-color: var(--dark);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-card .cta-button:hover {
    background-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* KAPCSOLAT */
.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
}

.contact-left, .contact-right {
    flex: 1;
    min-width: 300px;
}

.social-buttons-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s, opacity 0.3s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.whatsapp {
    background-color: #25D366;
}

.insta {
    background: linear-gradient(45deg, #f09433, #bc1888);
}

.facebook {
    background-color: #3b5998;
}

.tiktok {
    background-color: #000000;
    border: 1px solid #333;
}

.tiktok:hover {
    box-shadow: -2px -2px 0 #00f2ea, 2px 2px 0 #ff0050;
    transform: translateY(-2px);
    border-color: transparent;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--dark);
    border-bottom: 1px solid var(--nude);
    padding-bottom: 10px;
}

.contact-details strong {
    color: var(--gold);
    display: inline-block;
    width: 80px;
}

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
    margin-bottom: 15px;
}

.nav-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    background-color: var(--dark);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: var(--gold);
}

footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* SCROLL REVEAL ANIMÁCIÓ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- SÜTI (COOKIE) SÁV --- */
/* --- PROFI SÜTIKEZELŐ SÁV ÉS MODAL --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    display: none; /* Alapból rejtve */
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
    border-top: 2px solid var(--gold);
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark);
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Felugró ablak háttere */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none; /* Alapból rejtve */
    justify-content: center;
    align-items: center;
}

/* Felugró ablak doboza */
.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Sorok a beállításokon belül */
.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--nude);
    gap: 20px;
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.cookie-text p {
    margin: 5px 0 0 0;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Kapcsoló (Toggle) design */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--gold);
}

input:checked + .slider:before {
    transform: translateX(20px);
}

input:disabled + .slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
}

/* Vélemények

/* --- SAJÁT VÉLEMÉNYEK (REVIEWS) --- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    border-top: 3px solid var(--gold);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.reviewer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0;
    font-weight: 600;
    text-align: right;
}

/* --- PEZSGŐ AKCIÓ GOMB --- */
.promo-bubble-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold), #ffdf73, var(--gold));
    background-size: 200% 200%;
    color: var(--dark) !important;
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    /* Ez adja a "pezsgő" pulzálást a gomb körül */
    animation: pulse-glow 2s infinite, shimmer 3s infinite linear;
    transition: all 0.3s ease;
    border: none;
}

.promo-bubble-btn:hover {
    transform: scale(1.05);
}

/* 1. Animáció: Arany pulzálás (buborékolás) a gomb körül */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* 2. Animáció: Fénylő, csillogó átsuhanás a gombon */
@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* --- ELEGÁNS GOOGLE VÉLEMÉNY GOMB --- */
.google-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--gold);
    border-radius: 50px; /* Ettől lesz elegáns, kapszula formájú */
    background: transparent;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.google-btn:hover {
    background: var(--gold);
    color: white;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); /* Arany derengés */
    transform: translateY(-3px); /* Picit felemelkedik kattintás előtt */
}

/* =========================================
   MOBIL NÉZET JAVÍTÁSA
   ========================================= */
@media (max-width: 768px) {

    /* 1. Fejléc átrendezése (Logó balra, Gomb jobbra) */
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo {
        margin-bottom: 0;
        text-align: left;
    }

    /* 2. Gomb megjelenítése mobilon */
    .menu-toggle {
        display: flex;
    }

    /* 3. Menü elrejtése ALAPBÓL, és lenyíló forma */
    nav {
        display: none; /* Ez oldja meg, hogy ne lógjon be alapból! */
        flex-direction: column;
        width: 100%;
        background-color: white;
        padding: 15px 0;
        margin-top: 15px;
        border-top: 1px solid var(--nude);
        gap: 0;
    }

    /* Amikor rákattintanak a gombra, ezt a szót kapja meg a JS-től */
    nav.active {
        display: flex;
    }

    /* 4. Linkek esztétikus elrendezése mobilon */
    nav a {
        margin: 12px 0;
        text-align: center;
        width: 100%;
        display: block;
        font-size: 1.1rem;
    }

    /* --- TÖBBI MOBILOS BEÁLLÍTÁS --- */
    .about-content {
        flex-direction: column;
    }

    /* --- HERO SZEKCIÓ MOBILON (CSAK KÖZÉPSŐ KÉP, SZÖVEG NÉLKÜL) --- */
    /* 1. Kisebbre vesszük a nyitókép magasságát, hogy a gomb is látszódjon */
    .hero {
        height: 65vh;
    }

    /* 2. Elrejtjük az 1. (bal) és a 3. (jobb) képet */
    .hero-bg-triptych img:nth-child(1),
    .hero-bg-triptych img:nth-child(3) {
        display: none;
    }

    /* 3. A középső képet (2.) kinagyítjuk, hogy kitöltse a helyet */
    .hero-bg-triptych img:nth-child(2) {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 4. A feliratok teljes elrejtése mobilon */
    .hero-content {
        display: none;
    }

    /* Kapcsolat rész marad a régi */
    .contact-content {
        flex-direction: column;
    }

    .social-buttons-grid {
        flex-direction: column;
    }

    /* Mobilon ne nagyítsa a kártyákat */
    .price-card:hover {
        transform: none;
    }
}