/* NLE Foglalás — Frontend stílusok
   Illeszkedik a noilelkiero.hu White Blush Pink arculatához */

/* ── ALAP ───────────────────────────────────────────────────── */
.nle-app {
    font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    color: #2e1a12;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── BETÖLTÉS ───────────────────────────────────────────────── */
.nle-state { text-align: center; padding: 48px 24px; color: #8a6858; }
.nle-spinner {
    width: 32px; height: 32px;
    border: 2px solid #f2dfe1;
    border-top-color: #c4788a;
    border-radius: 50%;
    animation: nle-spin 0.8s linear infinite;
    margin: 0 auto 16px;
}
@keyframes nle-spin { to { transform: rotate(360deg); } }
.nle-empty-msg { font-size: 16px; color: #8a6858; line-height: 1.75; }

/* ── ALKALMAK RÁCS ───────────────────────────────────────────── */
.nle-alkalmak-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.nle-alkalom-kartya {
    border: 1px solid rgba(196,120,138,0.2);
    background: #fff;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.nle-alkalom-kartya:hover {
    box-shadow: 0 6px 24px rgba(196,120,138,0.15);
    transform: translateY(-2px);
}
.nle-alkalom-kartya.nle-betelt { opacity: 0.65; }

.nle-alkalom-datum {
    background: #c4788a;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.nle-datum-ev {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
}
.nle-datum-honap {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
}
.nle-datum-idopont {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.nle-alkalom-info { padding: 20px; }
.nle-alkalom-tema {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 19px;
    font-weight: 400;
    color: #2e1a12;
    line-height: 1.3;
    margin: 0 0 8px;
}
.nle-alkalom-leiras {
    font-size: 14px;
    color: #8a6858;
    line-height: 1.65;
    margin: 0 0 14px;
}

/* ── HELYEK SÁV ─────────────────────────────────────────────── */
.nle-helyek { margin-bottom: 16px; }
.nle-helyek-bar {
    height: 4px;
    background: #f2dfe1;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}
.nle-helyek-fill {
    height: 100%;
    background: #c4788a;
    border-radius: 2px;
    transition: width 0.4s ease;
}
.nle-helyek-szoveg { font-size: 12px; color: #8a6858; }
.nle-betelt-szoveg { color: #c0392b; font-weight: 500; }

/* ── GOMBOK ─────────────────────────────────────────────────── */
.nle-btn-primary {
    display: block;
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: #c4788a;
    border: none;
    padding: 13px 24px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}
.nle-btn-primary:hover:not(:disabled) {
    background: #a85e72;
    transform: translateY(-1px);
}
.nle-btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}
.nle-btn-secondary {
    display: block;
    width: 100%;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b09080;
    background: #f5f0eb;
    border: 1px solid rgba(196,120,138,0.2);
    padding: 12px 24px;
    cursor: not-allowed;
}

/* ── BACK GOMB ──────────────────────────────────────────────── */
.nle-back-btn {
    background: none;
    border: none;
    color: #c4788a;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    transition: color 0.2s;
}
.nle-back-btn:hover { color: #a85e72; }

/* ── ŰRLAP FEJLÉC ───────────────────────────────────────────── */
.nle-urlap-header {
    border-bottom: 1px solid rgba(196,120,138,0.15);
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.nle-urlap-cim {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #2e1a12;
    margin: 0 0 8px;
}
.nle-urlap-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.nle-info-datum, .nle-info-tema {
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 2px;
}
.nle-info-datum { background: #faf0f1; color: #c4788a; font-weight: 500; }
.nle-info-tema  { background: #f5f0eb; color: #6b4f3a; }

/* ── MEZŐK ──────────────────────────────────────────────────── */
.nle-field { margin-bottom: 20px; }
.nle-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a3828;
    margin-bottom: 6px;
}
.nle-field input[type="text"],
.nle-field input[type="email"],
.nle-field input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(196,120,138,0.3);
    background: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #2e1a12;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.nle-field input:focus {
    border-color: #c4788a;
    box-shadow: 0 0 0 3px rgba(196,120,138,0.1);
}
.nle-hint {
    display: block;
    font-size: 12px;
    color: #9a7a6a;
    margin-top: 5px;
    line-height: 1.5;
}
.nle-error {
    display: none;
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
}

/* ── FIZETÉSI MÓD ───────────────────────────────────────────── */
.nle-fizetes-valaszto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.nle-fizetes-option { cursor: pointer; }
.nle-fizetes-option input { display: none; }
.nle-fizetes-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    border: 1.5px solid rgba(196,120,138,0.2);
    background: #fff;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}
.nle-fizetes-option.nle-selected .nle-fizetes-box {
    border-color: #c4788a;
    background: #faf0f1;
}
.nle-fizetes-icon   { font-size: 22px; }
.nle-fizetes-label  { font-size: 13px; font-weight: 500; color: #2e1a12; }
.nle-fizetes-desc   { font-size: 11px; color: #9a7a6a; }

/* ── ÖSSZEG ─────────────────────────────────────────────────── */
.nle-osszeg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #faf7f4;
    border: 1px solid rgba(196,120,138,0.15);
    margin-bottom: 20px;
    font-size: 15px;
    color: #5a3828;
}
.nle-osszeg strong {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: #2e1a12;
}

/* ── GDPR ───────────────────────────────────────────────────── */
.nle-gdpr { }
.nle-checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px !important;
    font-weight: 300 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: #6b4f3a !important;
}
.nle-checkbox-label input { margin-top: 3px; flex-shrink: 0; accent-color: #c4788a; }
.nle-checkbox-label a { color: #c4788a; text-decoration: none; }
.nle-checkbox-label a:hover { text-decoration: underline; }

/* ── FORM HIBA ──────────────────────────────────────────────── */
.nle-form-error {
    background: #fdf5f0;
    border-left: 3px solid #c0392b;
    padding: 12px 16px;
    font-size: 14px;
    color: #8a2a1a;
    margin-bottom: 16px;
    line-height: 1.65;
}

/* ── SIKERES FOGLALÁS ───────────────────────────────────────── */
.nle-siker-box {
    text-align: center;
    padding: 48px 32px;
    border: 1px solid rgba(196,120,138,0.2);
    background: #fff;
}
.nle-siker-ikon   { font-size: 48px; margin-bottom: 16px; }
.nle-siker-box h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 26px;
    font-weight: 400;
    color: #2e1a12;
    margin: 0 0 12px;
}
.nle-siker-box p  { font-size: 16px; color: #5a3828; line-height: 1.75; margin: 0 0 10px; }
.nle-siker-sub    { font-size: 14px !important; color: #9a7a6a !important; }

/* ── MOBIL ──────────────────────────────────────────────────── */
@media (max-width: 580px) {
    .nle-alkalmak-grid       { grid-template-columns: 1fr; }
    .nle-fizetes-valaszto    { grid-template-columns: 1fr; }
    .nle-siker-box           { padding: 32px 20px; }
}

/* ── BETELT JELZŐ ───────────────────────────────────────── */
.nle-betelt-jelzo {
    font-size: 12px;
    font-weight: 500;
    color: #c0392b;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
}

/* ── ÜRES ÁLLAPOT KÁRTYA ────────────────────────────────── */
.nle-empty-card {
    text-align: center;
    padding: 56px 32px;
    border: 1px solid rgba(196,120,138,0.2);
    background: #fff;
    max-width: 480px;
    margin: 0 auto;
}
.nle-empty-deco {
    font-size: 48px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.nle-empty-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #2e1a12;
    margin: 0 0 14px;
}
.nle-empty-szoveg {
    font-size: 15px;
    color: #8a6858;
    line-height: 1.75;
    margin: 0 0 24px;
}
.nle-empty-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #c4788a;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 28px;
}
.nle-empty-btn:hover { background: #a85e72; color: #fff; }
.nle-empty-idezet {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px;
    font-style: italic;
    color: #b09080;
    margin: 0;
    border-top: 1px solid rgba(196,120,138,0.15);
    padding-top: 20px;
}
