/* --- About Server Maintenance --- */
.about-it-server {
    position: relative;
    width: 100%;
    height: 500px;
    /* po želji */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.background-img-server {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* da slika pokrije celu pozadinu */
    z-index: -1;
    /* da bude iza sadržaja */
    opacity: 0.6;
    /* po želji */
}

.about-server-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    color: white;
}

.about-server-icon {
    width: 80px;
    /* veličina ikonice */
    height: 80px;
    margin-bottom: 15px;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(243, 225, 181, 0.93));
}

.about-server-title {
    color: #F3E1B5;
    /* Yellow title */
    /*font-size: 38px;*/
    margin-bottom: 25px;
    font-weight: 500;
}

.about-server-text {
    color: #dcdcdc;
    /* Slightly darker white */
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}


/* --- SERVER SOLUTIONS --- */
.server-maintenance-section {
    padding: 100px 20px;
    background: #0c0c0c;
    text-align: center;
    position: relative;
}

/*.server-maintenance-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: radial-gradient(circle at center, rgba(243, 225, 181, 0.155) 0%, transparent 70%);
    z-index: 0;
}*/

.server-maintenance-section .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.server-maintenance-section h2 {
    /*font-size: 2.2rem;*/
    color: #F3E1B5;
    margin-bottom: 15px;

}

.server-maintenance-section p {
    color: #dcdcdc;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.05rem;
}

/* === Grid Layout === */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    justify-items: center;
}

.maintenance-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(243, 225, 181, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    max-width: 360px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(243, 225, 181, 0.05);
}

.maintenance-item:hover {
    transform: translateY(-6px);
    border-color: #F3E1B5;
    box-shadow: 0 0 25px rgba(243, 225, 181, 0.25);
}

.maintenance-item.center {
    grid-column: 1 / -1;
}

.maintenance-item h3 {
    color: #F3E1B5;
    margin-bottom: 10px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.maintenance-item p {
    color: #dcdcdc;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* === Icon Styling === */
.maintenance-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
    filter: drop-shadow(0 0 6px rgba(243, 225, 181, 0.654));
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.maintenance-item:hover .maintenance-icon {
    transform: scale(1.1);
    opacity: 1;
}


/* === Benefits === */
.benefits-section {
    background-color: #0f0f10;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.benefits-section h2 {
    /*font-size: 2.5rem;*/
    margin-bottom: 80px;
    letter-spacing: 1px;
}

/* Kontejner */
.benefits-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

/* Stavka (krug + tekst) */
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 5s ease-in-out infinite;
}

/* Krug sa ikonom */
.icon-wrapper {
    background: linear-gradient(145deg, #1c1c1e, #29292b);
    border: 2px solid #3a3a3d;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ikonica unutar kruga */
.icon-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 3px rgba(243, 225, 181, 0.93));
    /* Pretvara tamne SVG u bele */
    transition: transform 0.3s ease;
}

/* Hover efekat */
.icon-wrapper:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.icon-wrapper:hover img {
    transform: scale(1.15);
}

/* Tekst ispod kruga */
.benefit-item p {
    margin-top: 20px;
    font-size: 1rem;
    color: #dcdcdc;
    max-width: 180px;
}

/* Talasasti raspored */
.benefit-item.up {
    animation-delay: 0s;
}

.benefit-item.down {
    animation-delay: 2.5s;
}

/* Animacija plutanja */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* === Responsive === */
@media (max-width: 768px) {

    .IT_main-title {
        font-size: 2.2rem;
    }

    .about-it-server {
        height: auto;
        /* više ne fiksiramo visinu */
        padding: 60px 20px;
        text-align: center;
    }

    .background-img-server {
        opacity: 0.4;
        /* malo tamnija slika radi bolje čitljivosti teksta */
    }

    .about-server-container {
        max-width: 100%;
        padding: 15px;
    }

    .about-server-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .about-server-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-server-text {
        font-size: 1rem;
        line-height: 1.6;
        letter-spacing: 0.2px;
    }

    .about-server-title {
        font-size: 2.2rem;
    }

    .maintenance-grid {
        grid-template-columns: 1fr;
    }

    .maintenance-item.center {
        grid-column: auto;
    }

    .server-maintenance-section h2 {
        font-size: 2rem;
    }

    .benefits-section {
        padding: 60px 15px;
    }

    .benefits-section h2 {
        margin-bottom: 50px;
        font-size: 2rem;
        color: #F3E1B5;
    }

    .benefits-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .benefit-item {
        width: 100%;
        max-width: 250px;
    }

    .icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .icon-wrapper img {
        width: 55px;
        height: 55px;
    }

    .benefit-item p {
        font-size: 0.95rem;
        max-width: 100%;
    }
}