/*
   _____                                    _
  / ____|                                  | |
 | (___  _ __   __ _  ___ ___  ___ ___   __| | ___
  \___ \| '_ \ / _` |/ __/ _ \/ __/ _ \ / _` |/ _ \
  ____) | |_) | (_| | (__  __/ (__ (_) | (_| |  __/
 |_____/| .__/ \__,_|\___\___|\___\___/ \__,_|\___|
        | |
        |_|

    ------------
    Version 0.2.6 - VOUCHER FOOTER COLOR MATCH
*/

/* --- 1. NADPISANIE NAGŁÓWKA --- */
header {
    /* ZMIANA: Kolor stopki (#0f0f0f) zamiast koloru body */
    background: #0f0f0f !important; 
    
    min-height: auto !important;    
    padding-bottom: 20px;           
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}

/* --- 2. KONTENER VOUCHERA --- */
.voucher {
    padding: 50px 0 100px;
    
    /* Dzięki temu stopka jest zawsze na dole */
    min-height: 60vh; 
}

/* Tytuł */
.voucher h1 {
    font-weight: 800;
    color: #ffffff;
    font-size: 42px;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 3px solid #feba01;
    display: inline-block;
    padding-bottom: 5px;
}

/* --- 3. FORMULARZ --- */
.voucher__form {
    padding: 40px 0;
}

.voucher__input {
    display: flex;
    flex-direction: column;
}

/* Etykiety */
.voucher__input label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #feba01;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- 4. INPUTY --- */
input {
    border: 1px solid #333;
    outline: none;
    height: 60px;
    background: #1f1f1f !important;
    color: #ffffff;
    padding-left: 20px;
    margin-bottom: 30px;
    font-weight: 500;
    border-radius: 12px;
    transition: 0.3s;
}

input:focus {
    border-color: #feba01;
    box-shadow: 0 0 15px rgba(254, 186, 1, 0.15);
}

::placeholder {
    color: #555;
}

/* --- 5. PRZYCISK --- */
button {
    margin-top: 20px;
    border: none;
    outline: none;
    background: #feba01 !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px #000000;
    padding: 17px 70px;
    border-radius: 12px !important;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    transition: .3s;
    box-shadow: 0 0 15px rgba(255, 212, 12, 0.4);
    cursor: pointer;
}

button:hover {
    background-color: #feba01;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 212, 12, 0.6);
}

/* Alert */
.alert {
    border: none;
    padding: 20px;
    font-weight: 600;
    border-radius: 12px;
    background: #1f1f1f;
    border: 1px solid #333;
    color: #fff;
    margin-bottom: 30px;
}

/* Responsywność */
@media only screen and (max-width: 1100px) {
    .voucher {
        padding: 50px 7% 80px;
    }
    input {
        width: 100%;
    }
}