/* ============================================================= */
/* GLOBAL */
/* ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;700&display=swap');

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

/* Wrapper 650px centriran */
.wrapper {
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
}

/* Čišćenje bootstrap default obruba i zaobljenja */
* {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* ============================================================= */
/* TIPOGRAFIJA */
/* ============================================================= */

h1, h2, h3, h4, h5 {
    font-weight: 600;
    letter-spacing: -0.3px;
}

p, label, select, input {
    font-size: 15px;
    line-height: 1.55;
}

/* ============================================================= */
/* BUTTONS */
/* ============================================================= */

.btn {
    font-size: 16px;
    padding: 14px 18px;
    font-weight: 600;
}

/* EU PLAVA */
.btn-primary {
    background-color: #003399 !important;
    border: none !important;
    color: #FFFFFF !important;
}

/* EU ŽUTA */
.btn-secondary {
    background-color: #F7D600 !important;
    border: none !important;
    color: #000000 !important;
}

/* Hover efekti minimalni */
.btn-primary:hover {
    background-color: #002266 !important;
}

.btn-secondary:hover {
    background-color: #E5C200 !important;
}

/* ============================================================= */
/* ALERT/INFO BOXES */
/* ============================================================= */

.eu-info {
    background-color: #003399;
    color: #FFFFFF;
    border-left: 6px solid #3366CC;
    padding: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.55;
}

/* EU žuti info */
.eu-yellow {
    background-color: #F7D600;
    border-left: 6px solid #FFE766;
    padding: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.55;
}

/* EU crveni error */
.eu-error {
    background-color: #CC0000;
    color: #FFFFFF;
    border-left: 6px solid #990000;
    padding: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.55;
}

/* ============================================================= */
/* FORM ELEMENTS */
/* ============================================================= */

input.form-control,
select.form-select {
    border: 1px solid #999 !important;
    padding: 12px 10px;
    font-size: 15px;
    height: auto;
}

input.form-control:focus,
select.form-select:focus {
    border-color: #003399 !important;
    outline: none !important;
}

/* ============================================================= */
/* IMAGES */
/* ============================================================= */

.hero-img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* ============================================================= */
/* CONSENT BOX */
/* ============================================================= */

.consent-box {
    background: #FFFFFF;
    border-left: 6px solid #003399;
    padding: 16px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.55;
}

/* ============================================================= */
/* INLINE REJECTION MODAL */
/* ============================================================= */

.reject-inline-modal {
    max-width: 650px;
    margin: 30px auto;
    padding: 20px;
    background: #FFFFFF;
    border-left: 6px solid #990000;
    color: #000000;
}

.eu-yellow-btn {
    background-color: #F7D600 !important;
    color: #000 !important;
    border: none !important;
    padding: 14px;
    font-weight: 600;
}

/* ============================================================= */
/* MOBILE OPTIMIZATION */
/* ============================================================= */

@media (max-width: 768px) {
    .wrapper {
        padding: 12px;
    }

    .btn {
        font-size: 15px;
        padding: 12px;
    }

    p, label, input, select {
        font-size: 14px;
    }
}
