/* ===================================================== */
/* RESET + ALAPOK */
/* ===================================================== */



:root {
 --gold: #B88B54; /*arany szín beállítása*/
}



html {
overflow-y: scroll;
}


body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.10),
            rgba(0, 0, 0, 0.20)
        ),
        url("hero-livingroom.jpg") center / cover no-repeat;
        filter: saturate(65%) hue-rotate(-5deg) brightness(88%);
}


html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    padding-top: 90px; /* header magassÃ¡ga */
    background: #0b0b0b;
    color: #e5e7eb;
    line-height: 1.6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ===================================================== */
/* NAVIGÃCIÃ“ */
/* ===================================================== */

header.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}



.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  position: relative;
}


.logo img {
    height: clamp(66px, 5vw, 82px);
    width: auto;
    display: block;
    opacity: 1;
    animation: logoFade 0.8s ease-out forwards;
    background-color: #0b0b0b;
    padding: 4px;
    border-radius: 4px;
}

.logo:hover img {
    transform: translateY(-2px);
    opacity: 0.95;
}


.nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    align-items: center;
    margin: 0;
    padding: 0;

    margin-left: auto;   /* 🔥 EZ tolja jobbra */
}


.nav a {
    text-decoration: none;
    color: #e5e7eb;
    font-weight: 500;
    position: relative;
}

.nav a:hover {
    color: var(--gold);
}
.nav a:hover::after {
    width: 100%;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

a.cta {
    display: inline-block;
    padding: 10px 22px;

    border: 1px solid var(--gold);
    border-radius: 999px;

    color: var(--gold);
    text-decoration: none;
    font-weight: 500;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


a.cta:hover {
    background: var(--gold);
    color: #0b0b0b;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}



/* ===================================================== */
/* HERO SZEKCIÃ“ */
/* ===================================================== */


.luxury-hero {


    min-height: calc(100vh - 90px); /* kivonjuk a fix header magasságát */
    padding: 80px 20px 40px; /* alul kisebb padding kell */
    display: flex;
    align-items: center;

}


.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.luxury-hero h1 {
    font-size: 72px;
    letter-spacing: 20px;
    margin-bottom: 12px;
    color: #f8fafc;

    text-shadow:
        0 10px 6px rgba(0, 0, 0, 0.75),
        0 0 18px rgba(255, 214, 150, 0.35);

    animation: fadeUp 0.9s ease-out forwards;
}

.luxury-hero h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.9s ease-out 0.2s forwards;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 56px;
    font-size: 18px;
    line-height: 1.7;
    color: #e5e7eb;
    opacity: 0;
    animation: fadeUp 0.9s ease-out 0.4s forwards;
}

.hero-question {
    font-size: 28px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.9s ease-out 0.6s forwards;
}

.hero-content {
    max-width: 520px;
    text-align: left;

    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);

    z-index: 2;
}


.hero-content a.cta {
    margin-top: 64px;

    opacity: 0;
    animation: fadeUp 0.2s ease-out forwards;
}


.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: 3px;

}

.hero-content h1 span {
    color: var(--gold); /* arany */
    font-weight: 400;
}

.hero-content p {
    margin-top: 48px;
    font-size: 16px;
    line-height: 1.6;
    color: #e5e7eb;

    opacity: 0;
    animation: fadeUp 0.9s ease-out forwards;

}

.hero-content .btn-primary {
    display: inline-block;
    margin-top: 32px;

    padding: 12px 28px;
    background: linear-gradient(135deg, #e6c27a, #b8964a);
    color: #0b0b0b;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
}


/* ===================================================== */
/* ELÅNYÃ–K â€“ BOXOK */
/* ===================================================== */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: auto;
}

.card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    transition: all 0.3s ease;
}

.card:nth-child(1) { animation-delay: 0.8s; }
.card:nth-child(2) { animation-delay: 1s; }
.card:nth-child(3) { animation-delay: 1.2s; }

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--gold);
}


/* ===================================================== */
/* LEÃRÃ“ SZEKCIÃ“ */
/* ===================================================== */

.luxury-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(11, 11, 11, 0) 0%,     /* TELJESEN ÃTLÃTSZÃ“ FENT */
        rgba(11, 11, 11, 0) 20%,    /* MÃ‰G SEMMI FEKETE */
        rgba(11, 11, 11, 0.4) 45%,  /* FINOM SÃ–TÃ‰TEDÃ‰S */
        rgba(11, 11, 11, 0.85) 70%, /* ERÅS SÃ–TÃ‰T */
        #0b0b0b 100%                /* TELJES FEKETE LENT */
    );

    z-index: -1;
}


.luxury-section {
    position: relative;
    z-index: 1;

    margin-top: -160px;
    padding: 160px 20px 120px;

    background:
        linear-gradient(
            rgba(11, 11, 11, 0) 0%,
            rgba(11, 11, 11, 0.6) 40%,
            #0b0b0b 70%
        );

    text-align: center;
}

.luxury-section h2 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 32px;

}

.luxury-section p {
    max-width: 740px;
    margin: 0 auto 24px;
    font-size: 18px;
    line-height: 1.7;
}


.luxury-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 35%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.0) 100%
    );
    z-index: 1;
}


/* ===================================================== */
/* FOOTER */
/* ===================================================== */



footer {
    margin-top: auto;          /* ðŸ”‘ EZ tartja lent */
    background: #0b0b0b;
    color: #e5e7eb;
    padding: 24px 20px;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

footer span {
    color: var(--gold);
}


/* ===================================================== */
/* ANIMÃCIÃ“K */
/* ===================================================== */

.fade-transition {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFade {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
   GYIK OLDAL FORMÁZÁS
===================================== */

.container.section {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

/* Cím */
.container.section h1 {
    margin-bottom: 40px;
    font-size: 36px;
    color: var(--gold);
    text-shadow:
        0 6px 6px rgba(0, 0, 0, 0.75),
        0 0 18px rgba(255, 214, 150, 0.35);

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;

}

/* Kérdések */
.container.section h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
    color: #f8fafc;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;

}

/* Szövegek */
.container.section p {
    margin-bottom: 12px;
    font-size: 16px;
    color: #e5e7eb;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;

}


/* Listák */
.container.section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;

}

.container.section ul li {
    margin: 6px 0;
}


.container.section ul::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
}


/* UL – nincs aláhúzás */
.container.section ul.no-line::after {
  display: none;
}


/* kis vizuális elválasztás */
.container.section h3::after {
    display: none;
}

.container.section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 30px;

    /* háttér */
    background: rgba(0, 0, 0, 0.65);

    /* lekerekítés */
    border-radius: 16px;

    /* vékony arany keret */
    border: 1px solid rgba(212, 175, 55, 0.25);

    /* ✨ KIEMELÉS */
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),      /* mély árnyék */
        0 0 0 1px rgba(212, 175, 55, 0.05);  /* finom glow */

    /* kis finom blur (luxus hatás) */
    backdrop-filter: blur(4px);
    outline: 1px solid rgba(255,255,255,0.05);
}

/* VÉKONY ELVÁLASZTÓ VONAL*/
.container.section p::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
}

.container.section p.no-line::after {
  display: none;
}


/* =====================================
ÁRAZÁS TÁBLÁZAT
===================================== */

.pricing-table {
    width: 100%;
    margin: 20px 0 40px;
    border-collapse: collapse;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(212,175,55,0.3);
    table-layout: fixed
}


.pricing-table th,
.pricing-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  text-align: left; /* ← NE center */
}


.pricing-table th {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
}

.pricing-table td:first-child {
    text-align: left;
    color: #f8fafc;
    font-weight: 500;
    width: auto;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table td:last-child {
  width: 150px;      /* fix ár oszlop */
  text-align: left;  /* balra igazított ár */
  white-space: nowrap;

}

/* kis táblák (extra, feltételek stb.) */
.pricing-small {
    max-width: 100%;
    margin: 0 auto 30px;
}


/* =====================================
KÁRTYÁS ÁRAZÁS
===================================== */


.pricing-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
}

/* csak nagy képernyőn legyen 3 oszlop */
@media (min-width: 900px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}


.pricing-card {
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;

}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

.pricing-card h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 20px;
    min-height: 48px;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out forwards;

}

.pricing-price {
    font-size: 28px;
    font-weight: 600;
    margin: 16px 0 20px;
    color: #f8fafc;
    margin-top: 10px;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-card ul li {
    margin: 8px 0;
    font-size: 14px;
}

.pricing-card ul li::before {
    content: "✓ ";
    color: var(--gold);
}

.pricing-card .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    margin-top: auto;
}

.pricing-card .btn:hover {
    background: var(--gold);
    color: #0b0b0b;
}

/* kiemelt csomag */
.pricing-card.highlight {
    border: 1px solid var(--gold);
    transform: scale(1.04);
}

/* kisebb kijelző */
@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}



/* =====================================
   GYIK háttér sötétítés (csak itt!)
===================================== */



.gyik-page::before {
  content: "";
  position: fixed;
  inset: 0;

  background:
    linear-gradient(rgba(0,0,0,0.20), rgba(0,0,0,0.30)),
    url("hero-livingroom.jpg") center/cover no-repeat;

  filter: saturate(70%) brightness(90%);
  z-index: -1;
}



.gyik-page {
  background: none;
}


/* ÁRAZÁS OLDAL SZÉLESÍTÉS */

.arazas-page .container.section {
  max-width: 800px;
  width: 100%;
  padding: 40px 40px;

}

/* ===== MEGRENDELÉS FORM ===== */

.order-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}


.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

/* LABEL */
.form-group label {
    width: 160px;
    font-size: 14px;
    color: #e5e7eb;
}


/* INPUT + TEXTAREA */
.form-group input,
.form-group textarea {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 14px;
}

/* TEXTAREA külön */
.form-group textarea {
    resize: vertical;
}

/* GOMB */

/* ===== Megrendelés gomb (alsó) ===== */

.order-form button {
display: block;
margin: 50px auto;

padding: 12px 26px;

background: transparent;
color: var(--gold);

border: 1px solid var(--gold);
border-radius: 999px; /* ovális */

font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
}

.order-form button:hover {
background: var(--gold);
color: #0b0b0b;
transform: translateY(-1px);
box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* SELECT kinézet */
.form-group select {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 14px;
}

/* checkbox sor */
.form-group input[type="checkbox"] {
    width: auto;
    transform: scale(1.2);
}

/* checkbox külön kezelés */
.checkbox-group {
    justify-content: flex-start;
    align-items: center;
}

.checkbox-group span {
    width: 160px; /* ugyanaz mint a label szélessége!! */
  white-space: nowrap;
    flex-shrink: 0;
}

.checkbox-group label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    flex: none;
    transform: scale(1.2);
}

.total-group div {
    flex: 1;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,0.3);
    background: rgba(0,0,0,0.6);
    color: white;
    font-weight: 600;
}

/* ár mező alap */
.totalPrice {    
   transition: all 0.3s ease;
}

/* villanás effekt */
.price-flash {
    color: var(--gold);
    transform: scale(1.05);
    text-shadow: 0 0 12px rgba(212,175,55,0.6);
}

/* =====================================
MATTERPORT "YouTube" WRAPPER
===================================== */

.mp-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 40px;
  cursor: pointer;
  background: #000;
}

/* Thumbnail kép */
.mp-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sötét overlay */
.mp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.mp-wrapper:hover .mp-overlay {
  background: rgba(0, 0, 0, 0.5);
}


/* Play gomb */
.play-btn {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn::before {
  content: "";
  border-left: 20px solid black;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

/* iframe */
.mp-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  animation: fadeUp 0.5s ease;
  display: block; /* EZ FONTOS */
}


/* háttér sötétítő overlay */
.page-darken {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* indul világos */
  z-index: 0;
  pointer-events: none;
  transition: background 3s ease; /* milyen lassan sötétedjen */
}

/* amikor aktiválódik */
.page-darken.active {
  background: rgba(0, 0, 0, 0.65); /* mennyire sötét */
}

/* nyelvváltó gomb */

.lang-switch {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 6px;
    
    align-items: flex-end;
}


/* ✅ DESKTOP FELÜLÍRÁS */
@media (min-width: 769px) {
  .lang-switch {
    position: static !important;
    top: auto;
    right: auto;
    flex-direction: row;
    margin-left: 20px;
  }

  .nav ul {
    margin-left: auto;
  }
}


.lang-switch button {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.4);
  color: #e5e7eb;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;

  opacity: 0.5; /* 🔥 ez volt a hiány */
}

.lang-switch button.active {
    opacity: 1;
    font-weight: bold; 
    color: var(--gold);   /* ← arany szöveg */
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.5);
}


.lang-switch button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.menu-toggle {

  position: absolute;
  top: 20px;
  right: 90px;
  z-index: 2001;

  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}


/* ===================================================== */
/* RESZPONZÃV */
/* ===================================================== */

@media (max-width: 900px) {
    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards {
        grid-template-columns: 1fr;
    }

    .luxury-hero h1 {
        font-size: 48px;
    }

    .luxury-hero h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    body::before {
        position: absolute;
    }

    .luxury-section {
        margin-top: 0;
        background: #0b0b0b;
    }
}

@media (max-width: 768px) {
    header.luxury-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(0, 0, 0, 0.85);
    }

    header.luxury-header::after {
        display: none;
    }
}


@media (max-width: 768px) {
  .hero-content {
    position: relative;
    left: 0;
    top: auto;
    transform: none;
    padding: 40px 24px 60px;
    max-width: 100%;
  }
}

    .hero-content h1 {
        font-size: 36px;
    }
}


@media (max-width: 768px) {
  .gyik-page::before {
    background-position: 70% center !important;
    background-size: cover !important;
  }
}


@media (max-width: 768px) {
  .luxury-hero {
    background-position: 70% center !important;
    background-size: cover !important;
  }
}

@media (max-width: 768px) {
  body::before {
    background-position: 70% center !important;
    background-size: cover !important;
  }
}

@media (max-width: 768px) {

  .nav ul {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav ul li {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.2);
  }


.nav ul {
  transition: all 0.3s ease;
}


  .menu-toggle {
    display: block;
  }


  .menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 25%;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 40px;
  }

  .hero-content {
    padding: 20px 24px 60px !important;
    transform: translateY(-20px);
  }
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.nav {
  position: relative;
  justify-content: flex-start !important;
}


@media (max-width: 768px) {
  .nav ul {
    box-sizing: border-box;
    left: 0;
    width: 100%;
  }
}


body::before {
  width: 100vw;
  height: 100vh;
}

@media (max-width: 768px) {

  body.lang-de .hero-content h1 {
    font-size: 32px;  /* kisebb */
    letter-spacing: 2px;
  }

}

@media (max-width: 768px) {

  .container.section {
    margin: 110px 16px 20px !important;
    padding: 30px 20px !important;
    border-radius: 12px;
  }

}


@media (max-width: 768px) {

  .arazas-page .container.section {
    margin: 110px 16px 20px !important;
    padding: 30px 20px !important;
    width: auto !important;
  }

}
/* =========================
MOBIL FIXEK – MEGRENDELÉS FORM
========================= */
@media (max-width: 768px) {

  /* minden mező egymás alá */
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .form-group label {
    width: 100%;
    margin-bottom: 6px;
    font-size: 13px;
    opacity: 0.85;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
  }

  /* checkbox fix */
  .checkbox-group {
    align-items: flex-start;
  }


.checkbox-group > span {
  display: none;
}

.order-form button {
  font-size: 14px;
}


  .checkbox-group label {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  /* dátum + idő egymás alatt */
  #date,
  #time {
    width: 100%;
    margin-top: 6px;
  }

}
@media (min-width: 769px) {

  .nav ul {
    margin-left: auto;
  }

  .lang-switch {
    position: static;
    display: flex;
    flex-direction: row;
    margin-left: 20px;
  }

}

.nav *,
header.luxury-header * {
animation: none !important;
opacity: 1 !important;
transform: none !important;
}