.tholos-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 550px;
    overflow: hidden;
}

.tholos-hero__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.tholos-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.tholos-hero__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.tholos-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 70%);
    z-index: 1;
}

.tholos-hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 0 5%;
    color: #fff;
}

.tholos-hero__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px;
}

.tholos-hero__title em {
    font-style: italic;
}

.tholos-hero__text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 420px;
    margin: 0 0 28px;
    opacity: 0.95;
}

/* --- Button: ένα χρώμα, χωρίς hover effect --- */
.tholos-hero__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px;
    width: auto !important;
    max-width: max-content !important;
    height: auto !important;
    background: #1f4d4d !important;
    background-image: none !important;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1 !important;
    padding: 17px 28px !important;
    box-sizing: border-box;
    border: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.tholos-hero__btn-text,
.tholos-hero__btn-arrow {
    display: inline-block;
    line-height: 1;
    color: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

.tholos-hero__btn-arrow {
    font-size: 1.1rem;
    transform: translateY(-1px);
}

/* --- Arrows (prev/next) --- */
.tholos-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tholos-hero__arrow--prev { left: 20px; }
.tholos-hero__arrow--next { right: 20px; }

/* --- Dots --- */
.tholos-hero__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.tholos-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.tholos-hero__dot.is-active {
    background: #fff;
}

@media (max-width: 768px) {
    .tholos-hero { height: 75vh; min-height: 480px; }
    .tholos-hero__arrow { display: none; }
}