/* /Pages/Contact.razor.rz.scp.css */
button:disabled[b-igly2oedds], button:disabled:hover[b-igly2oedds]{
    background-color:gray;
}

/*#region CONTACT BUTTON SPINNER*/
.loader-container[b-igly2oedds] {
    position: relative;
    display: flex;
    margin-top:1rem;
    justify-content: center; /* horizontal center */
    align-items: center; /* vertical center */
    flex-direction: column; /* spinner on top, text below (optional) */
}

/* Spinner size */
.loader[b-igly2oedds] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border-top: 3px solid white;
    border-right: 3px solid transparent;
    animation: rotation-b-igly2oedds 1s linear infinite, colorChange-b-igly2oedds 1s linear infinite;
}

@keyframes rotation-b-igly2oedds {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes colorChange-b-igly2oedds {
    0% {
        border-top-color: white;
    }

    33% {
        border-top-color: #5199AE;
    }
}
/*#endregion*/
/* /Pages/Home.razor.rz.scp.css */
/* ===== Global Page Section ===== */
.page-section[b-0kcgf0xbuv] {
    width: 95%; /* full-width background */
    position: relative;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem; /* space around content */
}

/* ===== Inner content wrapper ===== */
.page-section[b-0kcgf0xbuv],
.services-grid-wrapper[b-0kcgf0xbuv],
.contact-section-wrapper[b-0kcgf0xbuv] {
    max-width: 1100px; /* content width */
    margin: 0 auto; /* center horizontally */
    padding: 2rem; /* inner spacing */
    border-radius: 1rem; /* rounded corners */
    opacity: 1;
}

.m-6[b-0kcgf0xbuv] {
    margin-top: 10rem;
}

/*#region ABOUT*/

.about-container[b-0kcgf0xbuv] {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
    margin-top: -3rem;
    height:100%;
}

.about-section[b-0kcgf0xbuv] {
    width: 100%;
    background-color: rgba(0,0,0,0.9);
    border-radius: 1rem;
    box-shadow: 0 0 15px #0a8cb4;
    padding: 2rem;
    opacity: 0;
    animation: flyInFromRight-b-0kcgf0xbuv 1s ease-out forwards;
    animation-play-state: paused;
    flex: 1 1 300px; /* responsive grow/shrink */
    perspective: 1000px;
}

.about-image[b-0kcgf0xbuv] {
    width: 20rem;
    height: 20rem;
    box-shadow: 0 0 15px #0a8cb4;
    object-fit: cover;
    opacity: 0;
    animation: flyInFromLeft-b-0kcgf0xbuv 1s ease-out forwards;
    animation-play-state: paused;
    flex: 0 1 auto;
    align-self: center;
}

/* Animations only move elements in from off-screen */
@keyframes flyInFromRight-b-0kcgf0xbuv {
    from {
        opacity: 0;
        transform: translateX(100vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes flyInFromLeft-b-0kcgf0xbuv {
    from {
        opacity: 0;
        transform: translateX(-100vw);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Ansicht Portrait Modus*/
@media (max-width: 768px) and (orientation:portrait) {
    .about-container[b-0kcgf0xbuv]{
        flex-direction:column-reverse;
    }

    .about-section[b-0kcgf0xbuv]{
        height:auto;
        width:auto;
        align-self:center;
    }

    .about-image[b-0kcgf0xbuv] {
        width: 100%;
        height: 100%;
        align-self:center;
    }
}

/* Tablet Ansicht Portrait Modus*/
@media (min-width:768px) and (max-width:1024px) and (orientation:portrait) {
    .about-container[b-0kcgf0xbuv] {
        flex-direction: column-reverse;
    }

    .about-section[b-0kcgf0xbuv] {
        height: auto;
        width: auto;
        align-self: center;
    }

    .about-image[b-0kcgf0xbuv] {
        width: 50%;
        height: 50%;
        align-self: center;
    }
}

@media (max-width:1000px) and (orientation:landscape) {
    .about-container[b-0kcgf0xbuv]{
        flex-direction:column-reverse;
    }
    .about-section[b-0kcgf0xbuv] {
        width: 100%;
    }

    .about-image[b-0kcgf0xbuv] {
        width: 50%;
        height: 50%;
        align-self: center;
    }
}

/*#endregion*/

.page-section h2[b-0kcgf0xbuv] {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #fff;
}

#contactAllies[b-0kcgf0xbuv] {
    background-color: rgba(0, 0, 0, 0.9);
}
/* Full-width section wrapper with background */
.section[b-0kcgf0xbuv] {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* optional for parallax */
}

    /* Inner content box centered */
    .section .page-section[b-0kcgf0xbuv] {
        max-width: 1100px; /* center content */
        margin: 0 auto; /* horizontal centering */
        padding: 2rem; /* space inside content */
        background: rgba(0, 0, 0, 0.6); /* semi-transparent overlay */
        color: #fff;
        text-align: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        border-radius: 1rem; /* only on inner content, not section */
    }

    /* Remove extra spacing on top/bottom of section */
    .section + .section[b-0kcgf0xbuv] {
        margin-top: 0; /* let the full-width background touch the next section */
    }

/* Optional: add padding inside sections if needed */
#about[b-0kcgf0xbuv], #services[b-0kcgf0xbuv], #meetAllies[b-0kcgf0xbuv], #contactAllies[b-0kcgf0xbuv] {
    padding: 3rem 1rem; /* keeps inner content away from edges */
    scroll-margin-top:5rem;
}

#meetAllies[b-0kcgf0xbuv]{
    scroll-margin:-1rem!important;
}

#services[b-0kcgf0xbuv]{
    scroll-margin:2rem;
}

/* ===== Services Grid ===== */
.services-grid[b-0kcgf0xbuv] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-items:center;
}

    /* ServiceCard styling */
    .services-grid > *[b-0kcgf0xbuv] {
        padding: 1.5rem;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .services-grid > *:hover[b-0kcgf0xbuv] {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.5);
        }

/* ===== Responsive Layout ===== */
@media (max-width: 1000px) {
    .services-grid[b-0kcgf0xbuv] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .services-grid[b-0kcgf0xbuv] {
        grid-template-columns: 1fr;
    }
}

/* ===== Optional: Section-specific tweaks ===== */
#services[b-0kcgf0xbuv] {
    padding: 3rem 1rem;
}

    #services h2[b-0kcgf0xbuv] {
        text-align: center;
        margin-bottom: 2rem;
    }
/* /Pages/Portfolio.razor.rz.scp.css */

.partner-block[b-ptbm07obuf] {
    margin-bottom: 3rem;
}
