/* =========================================================
   ===============  GLOBAL SETTINGS / BASICS  ===============
   ========================================================= */

body {
    margin: 5px;
    background-color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

.unselectable {
    user-select: none;
    color: #cc0000;
}

/* =========================================================
   =====================  NAVIGATION BAR  ===================
   ========================================================= */

.topnav {
    overflow: hidden;
    background-color: #007095;
}

.topnav a {
    font-family: Verdana;
    font-size: 14px;
    float: right;
    display: block;
    font-weight: 650;
    color: #DCA200;
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
}

.topnav a:hover {
    color: #DCA200;
    text-decoration: underline overline;
}

nav a {
    padding: 10px 15px;
    color: #007095;
    font-weight: bold;
}

nav a:hover {
    color: #DCA200;
}

/* =========================================================
   =====================  TYPOGRAPHY  =======================
   ========================================================= */

h1, h2, h3 {
    font-family: Arial, Helvetica, sans-serif, Verdana;
    font-size: 26px;
    color: #007095 !important;
    font-weight: 600;
    text-align: center;
}

p {
    font-family: sans-serif;
    font-size: 16px;
    color: #007095 !important;
    text-align: left;
}

/* =========================================================
   =====================  LAYOUT / TABLE  ===================
   ========================================================= */

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 20px;
    vertical-align: top;
}

/* =========================================================
   ======================  HEADER AREA  =====================
   ========================================================= */

header {
    background: #eee;
    padding: 10px;
    margin-bottom: 20px;
}

/* =========================================================
   ======================  FOOTER AREA  =====================
   ========================================================= */

footer {
    background: #eee;
    padding: 10px;
    margin-top: 20px;
    text-align: center;
}

/* =========================================================
   ======================  CAROUSEL AREA  ===================
   ========================================================= */

.carousel-inner img {
    width: 100%;
    height: auto;
}


     .carousel-inner .item img {
        width: 100%;
        height: 450px; /* Μπορείς να το αλλάξεις */
        object-fit: cover; /* Κάνει την εικόνα να γεμίζει τον χώρο */
    }



/* =========================================================
   =====================  SERVICES PAGE  ====================
   ========================================================= */

/* ----- Hover Overlay Effect ----- */
.service-box {
    position: relative;
    width: 300px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px;
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.service-box:hover img {
    transform: scale(1.1);
    filter: brightness(60%);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 112, 149, 0.75);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: 0.4s ease;
    padding: 10px;
    font-size: 16px;
}

.service-box:hover .service-overlay {
    opacity: 1;
}

/* =========================================================
   ======================   CAROUSEL   =====================
   ========================================================= */


#myCarousel {
    height: 350px; /* ή όσο θέλεις */
    overflow: hidden;
}

#myCarousel .item img {
    width: 100%;
    height: 350px; /* ίδιο με το container */
    /*object-fit: cover;*/
    object-fit: contain;
    background: #000; /* προαιρετικό */
}



/* =========================================================
   =====================  CONTACT PAGE  =====================
   ========================================================= */

form {
    padding-bottom: 35px;
}

/* Περισσότερο κενό ανάμεσα στα πεδία */
input, textarea {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 18px; /* αυξημένο */
}

/* Δύο πεδία ανά σειρά */
.input-half {
    width: 48%;
    float: left;
    margin-right: 4%;
}

/* Πλήρους πλάτους πεδία */
.input-full {
    width: 100%;
    float: none;
}

/* Submit button */
input[type="submit"] {
    background: #5ca830;
    height: 45px;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

/* Responsive */
@media(max-width: 640px){
  .input-half {
    width: 100%;
    margin-right: 0;
  }
}

/* =========================================================
   ======================  RESPONSIVE FIXES  ================
   ========================================================= */

@media (max-width: 768px) {
    .service-box {
        width: 100%;
        height: 180px;
    }
}

/* =========================================================
   ======================  END OF FILE  =====================
   ========================================================= */


