/* =========================
   FONTURI CUSTOM
========================= */

@font-face {
    font-family: 'Regal Display Pro';
    src: url('fonts/PFRegalDisplayPro-Italic.woff2') format('woff2'),
         url('fonts/PFRegalDisplayPro-Italic.woff') format('woff'),
         url('fonts/PFRegalDisplayPro-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'PF Bague Sans Pro';
    src: url('fonts/PFBagueSansPro-Light.woff2') format('woff2'),
         url('fonts/PFBagueSansPro-Light.woff') format('woff'),
         url('fonts/PFBagueSansPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* =========================
   RESET
========================= */

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

html, body {
    height: 100%;
}

/* =========================
   VIDEO BACKGROUND
========================= */

.video-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   OVERLAY
========================= */

.overlay {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   CONTENT BOX
========================= */

.box {
    background: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    width: 92%;
    padding: 56px 52px;
    text-align: center;
}

/* =========================
   LOGO
========================= */

.logo img {
    max-width: 240px;
    margin-bottom: 12px;
}

/* =========================
   SUBTITLE
========================= */

.subtitle {
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 34px;
}

/* =========================
   QUOTE
========================= */

.quote {
    font-family: 'Regal Display Pro', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 20px;
    padding-bottom: 20px;
}

/* =========================
   TEXTS
========================= */

.text {
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.text strong {
    font-weight: 400;
}

/* =========================
   FORM
========================= */

form {
    margin-top: 38px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.row {
    display: flex;
    gap: 14px;
    width: 100%;
}

.phone-row input {
    flex: 1 1 100%;
    width: 100%;
}

.field-group {
    text-align: left;
}

.field-label {
    display: block;
    margin-bottom: 6px;
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 13px;
}

.birthdate-row input {
    text-align: center;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    padding: 15px 16px;
    border: 1px solid #b9b9b9;
    border-radius: 10px;
    background: #fdfdfd;
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 14px;
    outline: none;
}

input::placeholder {
    color: #666;
}

/* =========================
   CHECKBOX
========================= */

.checkbox {
    display: block;
    text-align: left;
    margin: 18px 0;
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 13px;
}

.checkbox a {
    color: #000;
    text-decoration: underline;
}

/* =========================
   RADIO TITLU
========================= */

.title-group {
    order: -1;
}

.title-row {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 8px;
    font-family: 'PF Bague Sans Pro', sans-serif;
}

.radio span {
    font-size: 13px;
    font-weight: 400;
}

.radio input {
    position: relative;
    opacity: 1;
    width: 16px;
    height: 16px;
    accent-color: #000;
}

/* =========================
   BUTTON
========================= */

button {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid #000;
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #000;
    color: #fff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 640px) {
    .row {
        flex-direction: column;
    }

    .box {
        padding: 40px 26px;
    }

    .quote {
        font-size: 20px;
    }

    .text {
        font-size: 18px;
    }
}

/* =========================
   MODAL POLITICA (INLINE)
========================= */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #fff;
    width: 94%;
    max-width: 1000px;
    height: 85vh;
    position: relative;
    padding: 30px 30px 20px;
    overflow: hidden;
}

/* === BUTON BADGE "INCHIDE" === */

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 14px;
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    cursor: pointer;
    z-index: 10001;
    text-transform: uppercase;
    border: 1px solid #000;
    color: #000;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.close-modal:hover {
    background: #f5f5f5;
}

/* =========================
   MODAL SUCCES
========================= */

.modal-content.success-modal {
    width: 90%;
    max-width: 480px;
    height: auto;
    max-height: 90vh;
    padding: 28px 26px 26px;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.25);
    text-align: center;
    position: relative;
}

.success-title {
    font-family: 'Regal Display Pro', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.success-text {
    font-family: 'PF Bague Sans Pro', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.success-btn {
    width: auto;
    min-width: 160px;
}

.success-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.success-actions .success-btn,
.success-actions .success-store {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    text-decoration: none;
    border-radius: 8px;
}

.success-store {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.success-store:hover {
    background: #111;
}

.close-success {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: #f2f2f2;
    border: 1px solid #d4d4d4;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    color: #333;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.close-success:hover {
    background: #e6e6e6;
    border-color: #bfbfbf;
    color: #000;
}

/* =========================
   CONTINUT POLITICA
========================= */

.politica-container {
    padding-top: 40px;
    height: 100%;
    overflow-y: auto;
    padding-right: 12px;
    font-family: 'PF Bague Sans Pro', sans-serif;
}

.politica-container header {
    text-align: center;
    margin-bottom: 30px;
}

.politica-container img {
    max-width: 200px;
    margin-bottom: 12px;
}

.politica-container h1 {
    font-size: 22px;
    margin-bottom: 6px;
}

.politica-container .subtitle {
    font-size: 13px;
    color: #555;
}

.politica-container h2 {
    font-size: 18px;
    margin: 24px 0 10px;
}

.politica-container h3 {
    font-size: 16px;
    margin: 18px 0 8px;
}

.politica-container p,
.politica-container li {
    font-size: 14px;
    line-height: 1.6;
}

.politica-container ul {
    padding-left: 18px;
}
