/* Βασικά Μηδενίσματα */


#tour3{
margin:20px;
}
.tour3_container {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
/*SVG start*/
.tour3_map-container {
    background: #fdfefe;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    overflow-x: auto;
}
/* Επικεφαλίδα & Χάρτης SVG */
.tour3_header_svg{
    text-align: center;
    margin-bottom: 40px;
}

.tour3_header_svg h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2rem;
}


.tour3_route-line {
    fill: none;
    stroke: #94a3b8;
    stroke-width: 3;
    stroke-dasharray: 6;
}


.tour3_route-map {
    width: 100%;
    height: auto;
    min-width: 600px;
}

.tour3_point.tour3_active-node{
    fill: cyan;
    stroke: #000;
}

.tour3_active-node.tour3_junction {
    fill: #f59e0b;
    stroke: #d97706;
}


.tour3_active-node:hover {
    fill: #10b981;
    stroke: #047857;

}


    .tour3_point {
    fill: #cbd5e1;
    stroke: #64748b;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.tour3_map-text {
    font-size: 11px;
    fill: #475569;
}

.tour3_map-text1 {
    font-size: 11px;
    stroke-width: 1;
    stroke: #f59506;
}

.tour3_font-bold {
    font-weight: bold;
    fill: #1e293b;
}

/*SVG end*/

.tour3_slider-section {
    position: relative;
    border-top: 2px solid #f1f5f9;
    padding-top: 30px;
}

.tour3_slider {
    position: relative;
    min-height: 400px;
}
/*control every slide block*/
.tour3_slide {
        display: none;
    }



.tour3_slide.tour3_active {
    display: block;
    opacity: 1;
}

.tour3_slide h2 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.6rem;
    border-left: 5px solid #3b82f6;
    padding-left: 10px;
    height: 50px;
}

.tour3_slide-content {
    display: block;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

 /*control every slide block*/
/*image area*/
.tour3_slide-image {
    display: block;
    min-width: 300px;
    height: 350px;
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tour3_slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* description image text*/
.tour3_slide-text {
    display: block;
    min-width: 300px;
    margin-top:80px;
}

.tour3_slide-text h3 {
    color: #475569;
    margin-bottom: 12px;
}

.tour3_slide-text p {
    margin-bottom: 15px;
    color: #4a5568;
    text-align: justify;
}




  .tour3_nested-gallery{
        position: relative;
        overflow: hidden;
        min-height: 300px; /* Ρυθμίστε ανάλογα με το design σας */
    }
    .tour3_gallery-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
    }
    .tour3_gallery-img.tour3_img_active {
        opacity: 1;
        position: relative;
    }

/* Κουμπιά Πλοήγησης */


.tour3_nav-btn {
    position: absolute;
    top: 440px;
    background: rgba(30, 41, 59, 0.8);
    color: #fff;
    border: none;
    width: 80px;
    height: 40px;

    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
    text-align:center;
    line-height:20px;
}

.tour3_nav-btn:hover {
    background: #3b82f6;
}

#tour3_prev-btn{ left: 10px;
    border-radius: 50% 0 0 50%;
}
#tour3_next-btn { right: 10px;
     border-radius: 0 50%  50% 0;
}


