/* ================================= */
/* OSNOVNI STILOVI */
/* ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #3b3b3b;
    color: #fff;
    line-height: 1.6;
}

/* ================================= */
/* GLAVNI SADRZAJ */
/* ================================= */
.glavni-sadrzaj {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
}

/* ================================= */
/* VRH SAJTA */
/* ================================= */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: #3b3b3b;
    flex-wrap: wrap;
}

.logo img {
    height: 220px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 95px;
        width: auto;
    }
}

.top-menu {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ================================= */
/* GLOBAL BUTTON STYLE */
/* ================================= */
.top-menu a,
.top-button,
button,
.back-btn {
    background-color: #92b0dc;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.top-menu a:hover,
.top-button:hover,
button:hover,
.back-btn:hover {
    background-color: #7a97c0;
}

.top-button {
    display: block;
    width: fit-content;
    margin: 40px auto;
    text-align: center;
    color: #ffffff !important;
}

/* ================================= */
/* NASLOVI */
/* ================================= */
.top-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
    color: #3b3b3b;
    -webkit-text-stroke: 1px black;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #ffd200;
    margin-bottom: 30px;
    text-align: center;
}

/* ================================= */
/* O NAMA */
/* ================================= */
.o-nama {
    max-width: 900px;
    margin: 50px auto;
    text-align: justify;
}

.o-nama h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.o-nama p {
    color: #fff;
    line-height: 2;
    margin-bottom: 20px;
}

.o-nama p::first-letter {
    color: #fff;
    font-weight: bold;
}

.highlight {
    color: #ffd200;
    font-weight: bold;
    -webkit-text-stroke: 1px black;
}

.highlight-no-stroke {
    color: #ffd200;
    font-weight: bold;
    -webkit-text-stroke: 0px;
}

.signature {
    margin-top: 30px;
    text-align: center;
    font-weight: bold;
}

.signature .boost {
    color: #89d957;
    -webkit-text-stroke: 1px black;
}

.signature .agency {
    color: #92b0dc;
    -webkit-text-stroke: 1px black;
}

.signature .since {
    color: #ffd200;
    -webkit-text-stroke: 1px black;
}

/* ================================= */
/* ACCORDION */
/* ================================= */
.accordion {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;

}

.accordion-btn {
    width: 110%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: bold;
    background-color: #92b0dc;
    color: #ffffff;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.accordion-btn:hover {
    background-color: #7a97c0;
    transform: translateY(-2px);
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
    background-color: #3b3b3b;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0 20px;
}

.accordion-content p {
    margin: 15px 0;
    color: #fff;
}

.accordion-content.active {
    padding: 20px;
}

/* ================================= */
/* PAKETI */
/* ================================= */
.paket-box {
    background-color: #3b3b3b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.paket-title {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    color: #92b0dc;
    -webkit-text-stroke: 1px black;
    margin-bottom: 15px;
}

.paket-lista {
    list-style: none;
    padding-left: 0;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    line-height: 2;
}

.paket-cena {
    font-size: 20px;
    font-weight: bold;
    color: #ffd200;
    -webkit-text-stroke: 1px black;
    margin-top: 10px;
}

/* ================================= */
/* SEO BOX */
/* ================================= */
.seo-box {
    background-color: #3b3b3b;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    color: #ffffff;
}

.seo-box a {
    color: #92b0dc;
    text-decoration: none;
    font-weight: bold;
}

.seo-box a:hover {
    text-decoration: underline;
}

/* ================================= */
/* FOOTER */
/* ================================= */
.site-footer {
    background-color: #dfdfd8;
    padding: 15px 30px;
    text-align: left;
    font-size: 14px;
    margin-top: 50px;
}

.site-footer p {
    margin: 0;
    color: #3b3b3b;
    -webkit-text-stroke: 1px black;
}

.big-footer {
    font-size: 45px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-top: 30px;
    line-height: 1.2;
}

.big-footer .boost {
    color: #89d957;
    -webkit-text-stroke: 1px black;
}

.big-footer .agency {
    color: #92b0dc;
    -webkit-text-stroke: 1px black;
}

.big-footer .since {
    color: #ffd200;
    -webkit-text-stroke: 1px black;
}

/* ================================= */
/* COOKIE BANNER */
/* ================================= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #92b0dc;
    color: #000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#cookie-banner button {
    background-color: #3b3b3b;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

#cookie-banner button:hover {
    background-color: #e6c200;
}

/* ================================= */
/* MOBILE RESPONSIVE */
/* ================================= */
@media (max-width: 768px) {

    body {
        padding: 0 15px;
    }

    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .logo img {
        width: 120px;
        margin-bottom: 10px;
    }

    .top-menu {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    .top-menu a,
    .top-button,
    button,
    .back-btn {
        width: 90%;
        max-width: 280px;
        padding: 10px 16px;
        font-size: 16px;
    }

    h1,
    .top-title {
        font-size: 26px;
    }

    h2,
    .section-title {
        font-size: 24px;
    }

    .o-nama {
        margin: 30px auto;
        padding: 0 10px;
    }

    .o-nama p {
        line-height: 1.8;
        font-size: 16px;
    }

    .accordion-btn {
        font-size: 16px;
        padding: 14px 16px;
    }

    .accordion-content {
        padding: 15px;
    }

    .paket-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .paket-title {
        font-size: 20px;
    }

    .paket-lista {
        font-size: 14px;
        line-height: 1.6;
    }

    .paket-cena {
        font-size: 18px;
    }

    .seo-box {
        padding: 20px;
    }

    .site-footer {
        padding: 15px;
        font-size: 13px;
    }

    .big-footer {
        font-size: 36px;
        line-height: 1.2;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
        width: auto;
    }
}