/* --- FONTY --- */
@font-face {
    font-family: Robuck;
    src: url('RobuckRounded.otf') format('woff2');
}

@font-face {
    font-family: Sanctuary;
    src: url('Sanctuary-4ZL9.ttf') format('truetype');
}

@font-face {
    font-family: Champagne;
    src: url('ChampagneAndLimousines-7KRB.ttf') format('truetype');
}

@font-face {
    font-family: ChampagneBold;
    src: url('ChampagneAndLimousinesBold-myr2.ttf') format('truetype');
}

/* --- ZÁKLADNÍ NASTAVENÍ (BLACKOUT) --- */
.product-page-body {
    background-color: #000 !important;
    color: #fff;
    font-family: 'Champagne', sans-serif;
    margin: 0;
    padding: 4rem 0;
    min-height: 100vh;
}

/* Kontejner dotazníku */
.form-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 5rem;
    background-color: #000;
}

/* --- HLAVIČKA --- */
.form-header {
    margin-bottom: 6rem;
    text-align: center;
}

.product-title {
    font-family: 'Sanctuary', sans-serif;
    font-size: 5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    letter-spacing: 2px;
    font-weight: lighter;
}

.product-title2 {
    font-family: 'ChampagneBold', sans-serif;
    font-size: 3.5rem;
    color: #00EFF8;
    margin-top: 0;
}

.text1 {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* --- FORMULÁŘ A MEZERY --- */
.dark-form {
    display: flex;
    flex-direction: column;
    gap: 5rem; /* Obří mezery mezi sekcemi */
}

/* Skupina otázky */
.input-group, .input-group-radio, .input-group-checkbox {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group label {
    font-family: 'ChampagneBold', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #fff;
}

/* --- STANDARDNÍ INPUTY --- */
.input-group input[type="text"],
.input-group input[type="email"],
.input-group select,
.input-group textarea {
    background: transparent;
    border: 1px solid #333;
    border-radius: 0;
    padding: 1.5rem;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: #00EFF8;
    box-shadow: 0 0 15px rgba(0, 239, 248, 0.2);
    outline: none;
}

/* --- VYLEPŠENÝ VILLAIN INPUT (TEN HEZČÍ) --- */
.villain-input-wrapper {
    position: relative;
    width: 100%;
}

.villain-section input {
    width: 100%;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid #333 !important;
    padding: 1.2rem 0 !important;
    font-size: 1.5rem !important;
    color: #fff;
    font-family: 'ChampagneBold', sans-serif;
    transition: 0.4s;
}

.villain-section input::placeholder {
    color: #555;
    font-style: italic;
    font-size: 1.1rem;
}

.villain-input-wrapper .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00EFF8;
    transition: 0.4s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 239, 248, 0.5);
}

.villain-section input:focus ~ .focus-border {
    width: 100%;
}

.villain-section input:focus {
    color: #00EFF8;
    text-shadow: 0 0 10px rgba(0, 239, 248, 0.3);
    outline: none;
}

/* Šipka u datalistu */
.villain-section input::-webkit-calendar-picker-indicator {
    filter: invert(1) sepia(100%) saturate(10000%) hue-rotate(150deg);
    cursor: pointer;
    opacity: 0.5;
}

/* --- MOŽNOSTI (RADIO/CHECK) --- */
.radio-row, .check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-top: 1rem;
}

.radio-row label, .check-grid label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.1rem;
}

input[type="radio"], input[type="checkbox"] {
    accent-color: #00EFF8;
    width: 1.2rem;
    height: 1.2rem;
}

/* Slider */
input[type="range"] {
    accent-color: #00EFF8;
}

/* --- PRÁVNÍ SEKCE --- */
.legal-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid #222;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

/* --- DĚLÍCÍ ČÁRA --- */
.bb-divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #fff, transparent);
    margin: 4rem 0;
    opacity: 0.2;
}

/* --- TLAČÍTKO --- */
.btn-submit-clean {
    background: transparent;
    border: 2px solid #00EFF8;
    color: #00EFF8;
    padding: 2rem;
    width: 100%;
    font-family: 'Robuck', sans-serif;
    font-size: 2.2rem;
    cursor: pointer;
    transition: 0.5s;
    letter-spacing: 5px;
    margin-top: 3rem;
    text-transform: uppercase;
}

.btn-submit-clean:hover {
    background: #00EFF8;
    color: #000;
    box-shadow: 0 0 50px rgba(0, 239, 248, 0.5);
}

/* Textarea výška */
textarea {
    min-height: 150px;
}