/* Minimal restoration fixes — preserve original Sitesudo/Richer theme styling */

/* Homepage hero slider (replaces broken Revolution Slider) */
.home-hero {
    position: relative;
    width: 100%;
    height: 525px;
    max-height: 525px;
    overflow: hidden;
    background: #333;
}
.home-hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.home-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
.home-hero__slide--active {
    opacity: 1;
    z-index: 2;
}
.home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}
.home-hero__content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: #fff;
    padding: 0 40px;
    max-width: 600px;
}
.home-hero__content--left {
    left: 0;
    text-align: center;
}
.home-hero__content--right {
    right: 0;
    text-align: center;
}
.home-hero__headline {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    line-height: 52px;
    font-weight: 500;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin: 0 0 30px;
}
.home-hero__buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.home-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.home-hero__arrow:hover {
    background: rgba(219, 52, 52, 0.8);
    border-color: #db3434;
}
.home-hero__arrow--prev { left: 20px; }
.home-hero__arrow--next { right: 20px; }

@media (max-width: 768px) {
    .home-hero { height: 380px; max-height: 380px; }
    .home-hero__headline { font-size: 28px; line-height: 34px; }
    .home-hero__content { padding: 0 20px; max-width: 100%; }
    .home-hero__content--right { left: 0; right: 0; }
    .home-hero__buttons { flex-direction: column; align-items: center; }
}

/* Logo sizing per original theme */
.logo_standard {
    max-height: none;
    width: auto;
}

/* Staff page float images */
.alignright {
    float: right;
    margin: 0 0 15px 20px;
}
.border-grey-5 {
    border: 1px solid #ddd;
}

/* Inner page title bar */
#title {
    background: #2b2b2b;
    color: #fff;
}
#title h2 {
    color: #fff;
    margin: 0;
}

/* Testimonial section background */
section.fullwidth-11 {
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    .alignright {
        float: none;
        margin: 0 auto 15px;
        display: block;
    }
}
