/**
 * Front Page Styles
 */


.hero-split {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ITEMS */
.hero-item {
    position: relative;
    flex: 1;
    transition: flex 0.8s ease;
    cursor: pointer;
}

/* BACKGROUND */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

/* OVERLAY */
.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LABEL */
.hero-label {
    padding: 15px 30px;
    letter-spacing: 4px;
    font-size: 20px;
}

.hero-label.light {
    background: #fff;
    color: #000;
}

.hero-label.dark {
    background: #000;
    color: #fff;
}

/* EXPAND BOX */
.hero-content-box {
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
    background: #f5f5f5;
    padding: 40px;
    text-align: center;
    width: 280px;
}

.hero-content-box img {
    filter: invert(1);
    max-width: 180px;
    margin: 0 auto 0;
}

.hero-extra {
    margin-top: 20px;
}

.hero-extra img {
    max-width: 100px;
    margin: 10px auto 0;
}

/* BUTTONS */
.btn-outline {
    display: block;
    color: #000;
    border: 1px solid #000;
    padding: 12px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark:hover, .btn-outline:hover{
    text-decoration: none;
    background: #807C67;
    color: #fff;
    border: 1px solid #807C67;
}

.btn-dark {
    display: block;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    padding: 12px;
    margin-top: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* HOVER ACCORDION */


.hero-item.active {
    flex: 1.5;
}

/* =========================
   TABLET & MOBILE
========================= */
@media (max-width: 1024px) {

    .hero-split {
        flex-direction: column;
        height: auto;
    }

    .hero-item {
        width: 100%;
        height: 50vh; /* κάθε section μισή οθόνη */
        flex: unset; /* 🔥 important */
    }

    /* disable accordion effect */
    .hero-item.active {
        flex: unset;
    }

    /* background fix */
    .hero-bg {
        height: 100%;
    }

}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .hero-item {
        height: 60vh;
    }
	.hero-extra {
	  display:none;
	}
	.hero-content-box img {
    max-width: 130px;
	}
    /* label πιο readable */
    .hero-label {
        font-size: 12px;
        padding: 12px 20px;
    }

    /* content box center better */
    .hero-content-box {
        width: 240px;
        padding: 30px 20px;
    }
	.btn-dark {
    font-size: 12px;
}

}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .hero-item {
        height: 90vh;
    }

    .hero-content-box {
        width: 200px;
        padding: 20px 15px;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

}