@charset "utf-8";

@font-face {
    font-family: "RobotoCondLight";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoCondensed-Light.woff") format("woff");
}
@font-face {
    font-family: "RobotoCondReg";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoCondensed-Regular.woff") format("woff");
}
@font-face {
    font-family: "RobotoCondBold";
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/RobotoCondensed-Bold.woff") format("woff");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --darkBlue: #094565;
    --blue: #0675b1;
    --lightBlue: #79d0ff;
    --extraLightBlue: #e4f6ff;
    --black: #121212;
    --white: #f8fdff;
}

body {
    max-width: 1920px;
    height: 100%;
    margin: 0px auto;
    padding: 0px;
    font-family: RobotoCondReg;
    font-size: 18px;
    letter-spacing: -1px;
}
.innerBlock{
    max-width: 1280px;
    margin: 0 auto;
    border-bottom: 0;
    padding: 0 20px;
}
a {
    color: var(--darkBlue);
    text-decoration: none;
    transition: all .3s ease;
}
a:hover {
    color: var(--blue);
}
/* Base Typography */
h1 {
    font-family: "RobotoCondBold";
    font-size: clamp(1.8em, 4vw, 2.5em);
}
h2 {
    font-size: clamp(1.5em, 3.5vw, 2em);
}
h3 {
    font-size: clamp(1.2em, 3vw, 1.5em);
}
h4{
    font-size: clamp(1em, 2.5vw, 1.2em);
}
/* Base Typography */


/* Buttons */
.button, .contactFormCont button {
    display: inline-block;
    padding: 10px 25px;
    color: var(--white);
    background-color: var(--darkBlue);
    transition: all .3s ease;
    margin-top: 10px;
    border: none;
}
.contactFormCont button {
    border: 1px solid var(--white)!important;
}
.button:hover {
    background-color: var(--blue);
    color: var(--white);
}
.buttonCont {
    text-align: center;
    padding: 10px 0;
}
/* /Buttons */


/* Social Icons */
.socialIcons {
    display: flex;
    gap: 20px;
}
.socialIcons i {

}
.socialIcons a {
    
}
.socialIcons a:hover {

}
/* /Social Icons */


/* Header */
.header {
    display: flex;
    flex-direction: column;
}
.headerTop {
    background-color: var(--darkBlue);
    color: var(--white);
}
.social a {
    color: var(--white);
}
.headerPhone {
    font-size: 18px;
}
.headerBlocks, .headerTop {
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.headerBlocks {
    position: sticky;
    top: 0;
    background-color: rgba(251, 250, 250, 1);
    z-index: 10;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);
}
/* Logo */
.logo img {
    max-width: 300px;
}
/* /Logo */


/* Main Menu */
.mainMenuWrapper {
    position: relative;
}
.menuToggle {
    display: none;
    font-size: 34px;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
}
.mainMenu ul {
    display: flex;
    flex-direction: row;
    padding: 10px 0;
}
.mainMenu ul li {
    padding: 10px;
}
.mainMenu ul li a {
    color: var(--darkBlue);
}
@media (max-width: 1024px) {
    .menuToggle {
        display: block;
    }
    .mainMenu {
        position: absolute;
        bottom: 140px;
        background: var(--darkBlue);
        z-index: 1000;
        padding: 10px 40px;
        transition: all .5s ease;
        opacity: 0;
        width: 110vw;
        left: 50%;
        transform: translateX(-50%);
    }
    .mainMenu ul {
        flex-direction: column;
        align-items: center;
    }
    .mainMenu ul li {
        text-align: right;
    }
    .mainMenu.active ul li a {
        color: var(--white);
    }
    .mainMenu.active {
        transition: all .5s ease;
        bottom: -320px;
        opacity: 1;
    }
}
/* /Main Menu */
/* /Header */


/* Hero */
.heroCont {
    background-image: url(../images/heroBg.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 100%;
}
.heroInfo {
    color: var(--darkBlue);
    width: 100%;
    opacity: 0;
    animation: slideup .5s ease .5s forwards;
}
@keyframes slideup {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.heroInfo h1 {
    margin-bottom: -2px;
    position: relative;
}
.heroInfo h1:before {
    content: '';
    background-color: var(--darkBlue);
    position: absolute;
    top: -20px;
    left: 0;
    width: 100px;
    height: 5px;
}
.heroInfo h4 {
    font-family: "RobotoCondBold";
}
.heroText {
    padding: 10px 0;
    max-width: 800px;
    font-size: 1.1em;
}
/* /Hero */


/* Top Positions */
/* Top 1 About */
.aboutCont {
    display: flex;
    align-items: center;
    padding: 50px 0;
    min-height: 100vh;
}
.aboutBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.aboutBlock {
    position: relative;
    flex: 1 400px;
}
.aboutImageBlock {
    background-color: var(--darkBlue);
    padding: 40px;
    margin-right: -20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.aboutBlockBgImage {
    position: absolute;
    z-index: -1;
    bottom: -160px;
    left: -150px;
}
.aboutBlockBgImage img {
    opacity: .3;
}
.aboutBlock:nth-child(1) {
    flex: 0 400px;
}
.aboutBlock:nth-child(2) {
    margin-top: 100px;
    flex: 2 400px;
}
.aboutInfoBlock {
    background-color: var(--extraLightBlue);
    padding: 60px;
}
.aboutBlock .aboutImageBlock img {
    width: 100%;
}
.aboutBlock:nth-child(3) {
    margin-top: 50px;
    z-index: 0;
    flex: 1 250px;
}
.aboutOpeningBlock {
    position: relative;
    border: 3px solid var(--blue);
    padding: 40px 20px 20px;
    margin-left: -30px;
    background-color: var(--white);
}
.aboutOpeningHeader {
    text-align: center;
    padding: 10px 0;
    background-color: var(--blue);
    color: var(--white);
    display: inline-block;
    width: 100%;
}
.aboutOpeningHeader i {
    margin-right: 10px;
    font-size: 1.5em;
    vertical-align: middle;
}
.dayTimeBlock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid var(--lightBlue);
}
.dayTimeBlock.odd {
    background-color: var(--extraLightBlue);
}
.aboutOpeningText {
    padding: 10px 0;
}
.aboutOpeningText {
    text-align: center;
}
.aboutOpeningContact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.aboutOpeningContact i {
    margin-right: 5px;
}
.aboutOpeningPhone, .aboutOpeningMobile {
    font-size: 1.1em;
}
@media (max-width: 1024px) {
    .aboutBlock:nth-child(3) {
        flex: 0 400px;
        margin: 50px auto;
    }
}
@media (max-width: 768px) {
    .aboutBlocks {
        padding: 0 20px;
    }
    .aboutBlock {
        flex: 1;
        margin: 0 auto;
    }
    .aboutBlock:nth-child(1) {
        flex: 0 400px;
    }
    .aboutBlock:nth-child(2) {
        margin-top: 50px;
    }
    .aboutImageBlock {
        margin-right: 0;
    }
    .aboutOpeningBlock {
        margin-left: 0;
    }
}
/* /Top 1 About */

/* Top 2 Services */
.servicesCont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    /*background-color: var(--extraLightBlue);*/
    background-image: url(../images/servicesBg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.servicesBlocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.servicesBlock {
    color: var(--white);
    text-align: center;
    background-color: var(--darkBlue);
    flex: 0 250px;
    padding: 30px;
    margin: 40px;
    position: relative;
    overflow: hidden;
    min-height: 195px;
}
.servicesBlock img {
    position: absolute;
    top: 50px;
    left: -170px;
    opacity: .3;
    width: 140%;
}
.servicesBlock i {
    font-size: 2.2em;
    z-index: 2;
}
.servicesBlock p {
    font-size: 1.1em;
}
/* /Top 2 Services */

/* Top 3 Testimonials */
.testiCont {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 90vh;
    padding: 50px 0;
}
.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
    width: 95%;
}
.viewport {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    /* Δημιουργεί ένα "σβήσιμο" αριστερά και δεξιά */
    /*-webkit-mask-image: linear-gradient(to right, 
        transparent, 
        black 15%, 
        black 85%, 
        transparent);
    mask-image: linear-gradient(to right, 
        transparent, 
        black 15%, 
        black 85%, 
        transparent);*/
}
.track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

/* FIX: Απενεργοποίηση transition κατά το jump για αποφυγή του zoom glitch */
.track.no-transition, 
.track.no-transition .item {
    transition: none !important;
}
.item {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 35px 5px;
    background-color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    
    /* Τα πλάγια στοιχεία είναι πιο διαφανή και μικρά */
    transform: scale(0.85);
    opacity: 0.3; 
    /*filter: blur(1px);*/
}
.item.active {
    opacity: 1;
    transform: scale(1.1);
    filter: blur(0px);
    z-index: 2;
    background-color: var(--extraLightBlue);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.item.active .testiIcon { color: var(--blue); }


/* RESPONSIVE LOGIC */
@media (min-width: 768px) { .item { flex: 0 0 50%; } } /* Tablets: 2 items */
@media (min-width: 1024px) { .item { flex: 0 0 33.3333%; } } /* Desktop: 3 items */

/* DOTS STYLING */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background-color: var(--blue);
    transform: scale(1.2);
}
/* DOTS STYLING */

.testiBlock {
    position: relative;
    padding: 0px 40px;
    text-align: center;
}
.testiIcon {
    position: absolute;
    top: -70px;
    left: 20px;
    font-size: 3em;
    color: #ddd;
    transition: all .3s ease;
}
.testiPhoto img {
    width: 50px;
}
.testiText {
    font-size: .8em;
    padding: 20px 0;
}
.testiStars i {
    color: var(--blue, #007bff);
}
.testiName {
    font-size: .9em;
}
/* /Top 3 Testimonials */
/* /Top Positions */


/* Main Content */
.mainLayout {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: start;
}
/* Μονή στήλη όταν υπάρχει μόνο main content */
.mainLayout:not(:has(.sidebarLeft)):not(:has(.sidebarRight)) {
    grid-template-columns: 1fr;
}
/* Δύο στήλες: left sidebar + content */
.mainLayout:has(.sidebarLeft):not(:has(.sidebarRight)) {
    grid-template-columns: 280px 1fr;
}
/* Δύο στήλες: content + right sidebar */
.mainLayout:not(:has(.sidebarLeft)):has(.sidebarRight) {
    grid-template-columns: 1fr 280px;
}
.contentArea {
    width: 100%;
}
/* /Main Content */

/* Side Bars */
.sidebarLeft,
.sidebarRight {
    width: 100%;
}
/* /Side Bars */

/* Item View Generic    */
.itemView {
    padding: 50px 0;
}
/* /Item View Generic    */

/* Item View */
.itemBodyIntro {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}
.itemBodyImageBlock, .itemBodyInfo {
    flex: 0 48%;
}
.itemBodyIntro .aboutImageBlock img {
    width: 100%;
}
.itemBodyInfo .servicesBlock {
    flex: 0 220px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.itemBodyInfo .itemBodyTagLine h4 {
    margin-top: -5px;
}
.itemBodyInfo .servicesBlocks {
    margin: 20px 0;
}
.itemBodytitle {
    border-bottom: 1px solid var(--darkBlue);
    margin-bottom: 20px;
}
.bioTabsCont button.nav-link {
    text-align: left;
    border: unset !important;
    border-bottom: 1px solid #ddd!important;
    padding: 20px 10px;
    color: var(--blue);
    border-radius: 0;
    background: transparent;
}
.bioTabsCont button.nav-link.active {
    color: var(--darkBlue);
}
.bioTabsCont .nav-link.active {
    background: transparent;
}
.nav-tabs {
    border-bottom: 0;
    min-width: 200px;
}
.tab-pane {
    padding: 20px;
}

/* Contact Form */
.formBlock input, .formBlock textarea {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    border: none;
}
.formBlock textarea {
    min-height: 130px;
}
/* /Contact Form */

.mapCont {
    position: relative;
    margin: 40px auto 0;
    display: block;
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.mapCont iframe {
    width: 100%;
    border: none;
    pointer-events: none;
    position: relative;
    top: -70px;
    margin-bottom: -70px;
}
.map-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 400px;
    background: transparent;
    cursor: pointer; /* Δείχνει ότι μπορείς να κλικάρεις */
}

@media (max-width: 1024px) {
    .itemBodyInfo .servicesBlock {
      flex: 0 210px;
      margin: 10px;
    }
}
@media (max-width: 800px) {
    .itemBodyImageBlock, .itemBodyInfo {
        flex: 1 100%;
    }
    .aboutImageBlock {
        margin-bottom: 20px;
    }
    .itemBodyInfo .servicesBlock {
        flex: 0 230px;
    }
}

/* FAQ */

.accordion-item {
    margin-bottom: 20px;
}
.accordion-item:last-child {
    margin-bottom: 0;
}
.accordion-header {
    font-family: "RobotoCondBold";
}
.accordion-button {
    font-size: 0.55em;
}
.accordion-button:focus {
    box-shadow: unset;!important;
}
/* /FAQ */
/* /Item View */


/* Bottom Positions */

/* /Bottom Positions */


/* Footer */
.footerCont {

}
.footerBlock {

}
.copyright {

}
/* /Footer */




/* Responsive styles */
@media (max-width: 900px) {
    
}
