﻿/*
    ------------------------------------------------
    FONT
    ------------------------------------------------
*/

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300,400,500,600,700,800,900;
    font-style: normal;
}

/*
    ------------------------------------------------
    ELEMENTS
    ------------------------------------------------
*/

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1.4em !important;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: #520f20;
}

a {
    text-decoration: none;
    color: #ffe49e;
}

a:hover {
    color: #fff;
    transition: color 0.3s ease;
}

main {
    background-color: #9b0033;
    padding: 0;
    margin: 0 auto;
    width: 100%;
}

.text-content {
    background-color: #520f20;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

/* Navbar Styles */
#navbar {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: #500f1e;
    transition: height 0.3s ease;
    overflow: hidden;
    border-bottom: solid 1px #ffe49e;
}

#navbar .container-fluid {
    max-width: 90%; /* Smanjena širina */
}

#navbar a {
    color: #ffe49e;
    padding: 5px 15px;
    font-size: 1.2rem;
    line-height: 60px;
}

#navbar .navbar-brand {
    color: #ffe49e;
    padding: 5px 15px;
    font-size: 1.2rem;
    line-height: 60px;
    background-color: transparent;
}

/* Navbar toggler dugme (hamburger meni) */

.navbar-toggler {
    border: 2px solid #ffe49e;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: transparent;
    color: #ffe49e;
    outline: none;
    box-shadow: none;
}

/* Uklonimo fokus obrub */
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

/* Ikonica u žutoj boji */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,228,158, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
}

/* Hover – sve belo */
.navbar-toggler:hover {
    border-color: #fff;
}

/* Klik efekat – sve zuto */
.navbar-toggler:focus,
.navbar-toggler:active {
    border-color: #ffe49e;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus .navbar-toggler-icon,
.navbar-toggler:active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,228,158, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown meni kad je toggler aktiviran */
.navbar-collapse {
    padding: 10px 0;
}

.navbar-nav .nav-link {
    color: #ffe49e;
    padding: 1rem;
    transition: color 0.3s ease, background-color 0.3s ease;
    background-color: transparent;
}

.navbar-nav .nav-link.active {
    color: white;
    background-color: transparent;
}

.navbar-nav .nav-link:hover,
#navbar .navbar-brand:hover {
    color: #500f1e !important;
    background-color: #ffe49e;
}

@media (max-width: 479px) {
    #navbar .container-fluid {
        max-width: 98%; /* Smanjena širina */
    }

    #navbar a {
        font-size: 1.0rem;
        line-height: 30px;
    }

    #navbar .navbar-brand {
        font-size: 1.0rem;
        line-height: 30px;
    }

    .navbar-toggler-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 375px) {
    #navbar .container-fluid {
        max-width: 98%; /* Smanjena širina */
    }

    #navbar a {
        font-size: 1rem;
        line-height: 20px;
    }

    #navbar .navbar-brand {
        font-size: 0.8rem;
        line-height: 20px;
    }

    .navbar-toggler-icon {
        width: 16px;
        height: 16px;
    }
}

/* Footer Styles */
.footer {
    background-color: #9b0033;
    padding: 30px 0;
    border-top: solid 1px #ffe49e;
}

.footer .footer-left img {
    max-width: 70px;
    height: auto;
    margin-right: 20px;
}

.footer-right {
    float: right;
}

.footer-right a {
    color: #ffe49e;
    padding: 15px;
    font-size: 1.2rem;
    line-height: 40px;
}

.footer-right a:hover {
    color: #500f1e !important;
    background-color: #ffe49e;
}

@media (max-width: 479px) {
    .footer .footer-left img {
        max-width: 40px;
        margin-right: 5px;
    }

    .footer-right {
        float: right;
    }
}

/* Back to top button */
#btn-back-to-top {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 30px;
    background-color: #500f1e;
    color: #ffe49e;
    border: solid 1px #ffe49e;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
    text-align: center;
    z-index: 9999;
}

#btn-back-to-top.show {
    display: block;
}

#btn-back-to-top:hover {
    background-color: #400a17; /* Darken on hover */
    color: #fff;
}

/* ----------------------------------------- */
/* --------------  - DOBITNICI   ----------- */
/* ----------------------------------------- */

#dobitnici {
    min-height: 800px;
}

/* Dobitnici Table Styles */
.dobitnici-container {
    margin-top: 0 auto;
    padding: 0 20px;
    background-color: #520f20;
}

.dobitnici-container h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 400;
    color: #ffe49e;
    padding: 80px;
    text-align: center;
}

table {
    width: 80%;
    margin-bottom: 20px;
    border-collapse: collapse;
}

table th, .table td {
    padding: 2px 4px;
    text-align: left;
    border: 1px solid #ffe49e;
    color: navajowhite;
}

table th {
    background-color: #500f1e;
    color: #ffe49e;
}

table tbody tr:nth-child(odd) {
    background-color: #961420;
    color: navajowhite;
}

table tbody tr:hover {
    background-color: #9b0033;
}

/* Paginacija */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination li {
    list-style-type: none;
    margin: 0 5px;
}

.pagination a {
    color: #ffe49e;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #ffe49e;
    border-radius: 5px;
    background-color: transparent;
}

.pagination a:hover {
    background-color: #9b0033;
    color: #ffe49e;
}

/* Pagination active link */
.pagination .active a {
    background-color: #500f1e;
    color: #fff;
    border-color: #500f1e;
}

/* Mobile table responsiveness */
@media (max-width: 768px) {
    .table-container {
        padding: 0 10px;
    }

    table th, .table td {
        font-size: 14px;
    }

    .footer {
        text-align: center;
    }

    .footer-left, .footer-right {
        display: block;
        text-align: center;
    }

    .footer-left img {
        margin: 0 auto;
        width: 80px;
        margin-bottom: 10px;
    }

    .footer-right a {
        display: block;
        margin-top: 10px;
    }
}

/* ----------------------------------------- */
/* ----------------- HOME ------------------ */
/* ----------------------------------------- */

/* HOME sekcija */
#home {
    margin-top: 0;/*calc(-100vw * 130 / 1920); /* dinamička visina navbar-a */
    width: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

/* Wrapper za slike */
.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
}

/* POZADINSKA slika */
.background-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative; /* važno da ne bude absolute */
    z-index: 1;
}

/* GORNJA slika preko pozadine */
.top-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

/* Dugme "PRIJAVI SE" */
.btn-prijavi-se {
    position: absolute;
    top: 58.6%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffe49e;
    color: #500f1e;
    font-weight: bold;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 8px;
    border: none;
    z-index: 3;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
    text-decoration: none;
    /* Dodato za pulsiranje */
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(255, 228, 158, 0.6);
}

.btn-prijavi-se:hover {
    background-color: #fff;
    color: #9b0033;
}

/* Animacija pulsiranja */
@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 8px rgba(255, 228, 158, 0.6);
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 16px rgba(255, 228, 158, 0.9);
    }

    100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 8px rgba(255, 228, 158, 0.6);
    }
}


@media (min-width: 769px) {
    .image-wrapper {
        height: calc(100vw * 1820 / 1920); /* proporcionalna visina slike */
    }
}

@media (max-width: 768px) {
    .btn-prijavi-se {
        padding: 4px 10px;
        font-size: clamp(0.8rem, 3vw, 1.2rem);
        border-radius: 6px;
        top: 60%;
    }
}


/* ----------------------------------------- */
/* --------------- MEHANIZAM --------------- */
/* ----------------------------------------- */

#mehanizam {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 20;
    padding-bottom: 20px;
    background-color: #9b0033;
}

#mehanizam h1 {
    /*font-size: 2.5rem;*/
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #ffe49e;
    font-weight: bold;
    z-index:21;
}

#mehanizam h3 {
    /*font-size: 2.5rem;*/
    font-size: clamp(1.0rem, 2vw, 2.0rem);
    color: #ffffff;
    margin-bottom: 30px;
}

#mehanizam h3 span {
    color: #ffffff;
    font-weight: bold;
    font-size: clamp(1.2rem, 2vw, 2.1rem);
}

#mehanizam .img-fluid {
    width: 100%;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    #mehanizam .img-fluid {
        width: 60%;
        margin-bottom: 40px;
    }
}


/* ------------------------------ */
/* ----------- PRIJAVA ---------- */
/* ------------------------------ */

#prijava {
    background-color: #9b0033;
    padding: 0 20px;
    color: #ffe49e;
    text-align: center;
}

#prijava h1 {
    /*font-size: 2.5rem;*/
    font-size: clamp(1.6rem, 4vw, 3rem);
    color: #ffe49e;
    font-weight: bold;
    z-index: 21;
}

#prijava h2 {
    /*font-size: 2.5rem;*/
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    color: #ffe49e;
    margin-bottom: 30px;
}

#prijava h2 span {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: #ffffff;
    font-weight: bold;
    word-break:break-word;
}

#prijava .form {
    max-width: 800px;
    margin: 0 auto;
}

    #prijava .horizontal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
    }

    #prijava .input-field,
    #prijava .input-field1 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    #prijava .input-field1 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    #prijava .form-control {
        min-width: 8ch;
        padding: 6px 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        font-size: 1rem;
        color: #333;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

        #prijava .form-control::placeholder {
            color: #aaa;
        }

    #prijava .control-label {
        display: block;
        margin-top: 5px;
        font-size: 0.9rem;
        color: #ffe49e;
    }

    #prijava .text-danger {
        color: red;
        font-size: 0.85rem;
    }

    #prijava .check-label {
        color: #ffe49e;
        font-size: 0.9rem;
        margin-left: 5px;
    }

        #prijava .check-label a {
            color: #ffffff;
            text-decoration: underline;
        }

#prijaviButton {
    padding: 10px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #85002c;
    border: none;
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.btn {
    --bs-btn-bg: #85002c;
}

#prijaviButton:enabled {
    background-color: #85002c;
}

#prijaviButton:enabled:hover {
    background-color: #520f20;
}

#prijaviButton:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    color: #666;
}

#prijava .note {
    font-size: 0.85rem;
    color: #ffe49e;
    margin-top: 20px;
    line-height: 1.5;
}

#prijava .input-field1 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 1 100%;
    max-width: 100%;
}

#prijava .input-field1 span {
    color: #ffe49e;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 5px;
}

#prijava .fiscal-input {
    text-transform: uppercase; /* Prikazuje unos kao velika slova */
    min-width: 8ch;
    max-width: 240px;
    padding: 6px 10px;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    flex-shrink: 1;
}

#prijava .phone-input {
    text-align: center;
}

#submitBtn.active-pulse:hover {
    background-color: #500f1e;
    color: #ffe49e;
    border: 1px solid #ffe49e;
}

#form-messages {
    z-index: 1000;
    background-color: rgba(255, 228, 158, 0.4);
    border: 1px solid #a94442;
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #500f1e;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(169, 68, 66, 0.3);
    text-align: center;
    display: block;
}

#form-messages .show {
    display: block;
}

.pulse {
    animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.85;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.green-flash {
    animation: greenFlashAnim 0.6s ease forwards;
}

@keyframes greenFlashAnim {
    0% {
        background-color: #198754; /* Bootstrap zelena */
        transform: scale(1);
    }

    50% {
        background-color: #28a745;
        transform: scale(1.05);
    }

    100% {
        background-color: #0d6efd; /* Vrati na osnovnu plavu */
        transform: scale(1);
    }
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 0 3px #ffe49e;
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 12px #ffe49e;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 3px #ffe49e;
    }
}

.active-pulse {
    animation: pulseButton 2.5s infinite;
}

@keyframes pulse-message {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

#form-messages.pulse {
    animation: pulse-message 2.5s ease-in-out infinite;
}

@media (max-width: 768px) {
    #prijava .horizontal {
        flex-direction: column;
        align-items: center;
    }

    #prijava .form-control {
        max-width: 100%;
    }

    #prijava .input-field1 {
        flex-direction: column;
        gap: 8px;
    }

    #prijava .input-field1 span {
        font-size: 1.2rem;
        margin: 0;
    }

    .fiscal-input {
        max-width: 100%;
    }
}

.input-error {
    border: 2px solid #a94442;
    background-color: #f8d7da;
}

.input-valid {
    border: 2px solid #388e3c;
    background-color: #e8f5e9;
}

/* ----------------------------------------- */
/* --------------- ESCAPE --------------- */
/* ----------------------------------------- */

#escape {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #9b0033;
    z-index: 8;
    margin-top: 140px;
}

/* Za king_products.png */
#escape .kako-king-products {
    width: 100%; /* Slika se prilagođava širini svog roditelja */
    height: auto; /* Visina proporcionalno */
    padding-bottom: 0;
    margin-top:-50px;
}

/* Za escape.png */
#escape .kako-escape {
    margin: 0 auto;
    width: 80%; /* Slika se prilagođava širini svog roditelja */
    max-width: 760px; /* Maksimalna širina slike */
    height: auto; /* Visina proporcionalno */
    display: block; /* Centriraj sliku */
}

#escape .figure-img {
    margin: 0 auto; /* Centriranje slike */
    display: block; /* Da bi se slika ponašala kao blok element i centrirala */
    padding-bottom: 50px;
}

@media (max-width: 768px) {
    #escape .kako-img {
        max-width: 50%;
    }
}

/* ------------------------------ */
/* ----------- NAGRADE ---------- */
/* ------------------------------ */

#nagrade {
    padding: 60px 0 0 0;
    color: #ffe49e;
    text-align: center;
    width: 100%;
}

#nagrade h1 { 
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffe49e;
    font-weight: bold;
    padding-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

#nagrade h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 400;
    color: #ffe49e;
    padding-bottom: 80px;
    text-align: center;
}

#nagrade h3 {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 400;
    color: #fff;
    padding-bottom: 20px;
    text-align: center;
}

#nagrade .glavna-nagrada {
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    z-index: 101;
}

.nagrada-img {
    width: 100%;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.slajfna-container {
    width: 100vw;
    margin-top: 0; /* gura sliku malo gore ispod Audi-ja */
    overflow: hidden;
    z-index: -1;
}

/* ------------------------------ */
/* ----------- KONTAKT ---------- */
/* ------------------------------ */

#kontakt {
    background-color: #500f1e;
    padding: 60px 20px;
    color: #ffe49e;
    text-align: center;
    width: 100%;
    margin-top: 0;
}

#kontakt h1 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight:bold;
    color: #ffe49e;
    text-transform: uppercase;
    z-index:33;
    padding-bottom: 120px;
    word-break:break-word;
}

.divKontakt {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;    
    z-index:35;
}

/* Kontakt slike da ne budu prevelike */
.divKontakt img {
    max-width: 100%;
    height: auto;
}

.kontakt-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    #kontakt {
        margin-top: 0;
    }

    .kontakt-img {
        max-width: 60%;
        margin: 0 auto;
        display: block;
    }

    .row.mt-6.justify-content-center,
    .divKontakt {
        flex-direction: column !important;
        align-items: center;
    }

    .nagrada-img {
        max-width: 50%;
    }

    .divKontakt img {
        max-width: 50%;
    }
}

/* Na desktopu smanjujemo prostor između sekcija */
@media (min-width: 992px) {
    #kontakt {
        margin-top: -40px; /* Podesi vrednost prema potrebi */
    }
}

/* Ako želite da kontakt sekcija bude ispod nagrada sekcije */
#nagrade {
    position: relative;
    z-index: 1;
}

#kontakt {
    position: relative;
    z-index: 0; /* Kontakt sekcija bude ispod nagrada sekcije */
}

/* -------PRAVILNIK --------- */
#pravilnik {
    min-height: 800px;
}

.container-pravilnik {
    margin-top: 0 auto;
    padding: 0 20px;
    background-color: #520f20;
    color: #ffe49e;
}

.container-pravilnik h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 400;
    color: #ffe49e;
    padding: 80px;
    text-align: center;
}

#pravilnik .text-content {
    padding-bottom:80px;
}

#pravilnik p {
    word-break: break-all;
}

#pravilnik a {
    word-break: break-all;
    text-decoration: underline;
}

#pravilnik table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    margin: 0 auto;
}

#pravilnik table th, #pravilnik table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5c06e;
    font-size: clamp(0.8rem, 0.8vw, 1.2rem);
    font-weight: 400;
    word-break:break-all;
}

#pravilnik table th {
    background-color: #85002c;
    color: #e5c06e;
}

/* Na desktopu smanjujemo prostor između sekcija */
@media (min-width: 992px) {
    #pravilnik .container-pravilnik {
        width: 94%; /* Podesi vrednost prema potrebi */
    }
    #pravilnik h2 {
        padding-top: 20px !important;
    }
}

/* -------PRIVATNOST --------- */

#privatnost {
    min-height: 800px;
}

.container-privatnost {
    margin-top: 0 auto;
    padding: 0 20px;
    background-color: #520f20;
    color: #ffe49e;
}

.container-privatnost h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 400;
    color: #ffe49e;
    padding: 80px;
    text-align: center;
}

#privatnost .text-content {
    padding-bottom:80px;
}

#privatnost p {
    word-break:break-all;
}

#privatnost a {
    word-break:break-all;
    text-decoration: underline;
}

#privatnost table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    margin: 0 auto;
}

#privatnost table th, #pravilnik table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #e5c06e;
    font-size: clamp(0.8rem, 0.8vw, 1.2rem);
    font-weight: 400;
    word-break: break-all;
}

#privatnost table th {
    background-color: #85002c;
    color: #e5c06e;
}

.policy-link.clicked {
    color: #28a745 !important; /* zelena ili bilo koja boja koja se uklapa */
    font-weight: bold;
    text-decoration: underline;
}

.policy-link.error {
    color: #dc3545 !important; /* Bootstrap crvena */
    font-weight: bold;
    text-decoration: underline;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Na desktopu smanjujemo prostor između sekcija */
@media (min-width: 992px) {
    #privatnost .container-privatnost {
        width: 94%; /* Podesi vrednost prema potrebi */
    }

    #privatnost h2 {
        padding-top: 20px !important;
    }
}

/* ----------------------------------------- */
/* ------------------  FAQ   --------------- */
/* ----------------------------------------- */

#faq {
    min-height: 800px;
}

.faq-container {
    margin-top: 0 auto;
    padding: 0 20px;
    background-color: #520f20;
    color: #ffe49e;
}

.faq-container h2 {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    font-weight: 400;
    color: #ffe49e;
    padding: 80px;
    text-align: center;
}

.accordion {
    --bs-border-color: #ffe49e;
    --bs-accordion-color: #ffe49e;
    --bs-accordion-bg: #85002c;
    --bs-accordion-body-padding-x: 1.25rem;
    --bs-accordion-body-padding-y: 1rem;
    --bs-accordion-border-color: var(--bs-border-color);
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e5c06e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-active-color: #2c0811;
    --bs-accordion-active-bg: #ffe49e;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2385002c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-color: #ffe49e;
    --bs-accordion-btn-bg: ##85002c;
    --bs-accordion-btn-color: #2c0811;
    --bs-accordion-btn-focus-border-color: #85002c;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(133, 0, 44, 0.25);
    --bs-accordion-btn-padding-y: 0.5rem;
    --bs-accordion-btn-padding-x:1rem;
}

.accordion h2 {
    font-size: clamp(0.675rem, 1vw + 0.5rem, 1.025rem); /* od 14px do 18px */
    font-weight: 400;
    color: #ffe49e;
    padding: 5px 10px;
    text-align: center;
}

.accordion-button {
    font-size: 1.2rem;
    color: #ffe49e;
}

#faq .text-content {
    padding-bottom: 80px;
}

