@charset "utf-8";
/* CSS Document */


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    max-width: 1280px;
    margin: 0 auto;
}
.header_logo{
    width:250px;
    height:auto;
}

h3 {
    color: black;
    margin: 0;
}

.header-right {
    display: flex;
    align-items: center;
}

.language-switch span, .social-icons img {
    margin-left: 15px;
}

.language-switch a{
    color:black;
    text-decoration:none;
    font-weight: bold;
}

.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: calc(100vw * 0.3646); /* Κρατά την αναλογία 16:9 (1920x1080) */
    max-height: 1080px; /* Για να μην υπερβαίνει τα 1080px */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Προσαρμόζει την εικόνα ώστε να μην κόβονται οι πληροφορίες */
}

.slide.active {
    opacity: 1;
}


main .product {
    display: flex;
    /*
    padding: 20px;
    border-bottom: 1px solid #ddd;
    */
    padding: 20px;
    gap: 20px;
    /*align-items: center;*/
    max-width: 1280px;
    margin: 50px auto;
}

.product a {
    width: 30%;
}
.product a img {
    width: 100%;
    border-color: #8d8d8d;
    border-style: solid;
    border-width: 1px;
}

.product-info {
    /* max-width: 600px; */
    text-align: center;
    width: calc(70% - 20px);

}

.product-info h4 {
    margin: 0;
    font-weight: bold;
    font-size: 45px;
    line-height: 2;
}
.product-info h5 {
    margin: 0px;
    font-size: 29px;
    margin: 0px;
}
.product-info p {
    font-size: 16px;
    line-height: 2;
    line-height: 1.5;
}
/*
footer {
    background-color: #f9f9f9;
    padding: 20px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 10px;
    border-top: 1px solid #ddd;
}
*/

footer {
    
    /*padding: 20px 0;*/
    background-color: #8d8d8d;
        color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    text-align: center;
}

.footer-column a {
    color: white;
    text-decoration:none;
}


.footer-column p {
    margin: 5px 0;
}

.footer-column img {
    max-width: 100px; /* Μπορείς να προσαρμόσεις το μέγεθος του λογότυπου εδώ */
   
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    /*margin-top: 20px;*/
}
p.product-title {
    font-size: 45px;
    /* line-height: 1; */
    margin-block-start: 0px;
    margin-block-end: 0px;
}
p.product-heading {
    font-size: 29px;
    margin-block-start: 10px;
    margin-block-end: 0px;
    font-weight: bold;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.custom-button {
        background-color: #8D8D8D;
        color: white;
        border: none;
        padding: 10px 20px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
    }

    .custom-button:hover {
        background-color: #6E6E6E;
    }
@media (max-width: 768px) {
  .product-info h5 {
    font-size: 20px
}
  .product-info h4 {
    font-size: 27px;
    line-height:1;
}
.product-info p {
    font-size: 12px;
} 
.product a {
    width: calc(50% - 20px);
}
.product-info {
    /* max-width: 600px; */
    text-align: center;
    width: 50%;
}
}
@media (max-width: 430px) {
.header_logo {
    width: 100px;
    height: auto;
} 
}
@media (max-width: 520px) {
  .footer-column p {
    font-size:12px;
} 
  .footer-bottom p {
    font-size:12px;
} 
.footer-column img {
    max-width: 90px;
}
}


.terms {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.terms h1 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.terms h2 {
    font-size: 1.5em;
    margin-top: 20px;
}

.terms p {
    font-size: 1em;
    margin-top: 10px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .terms {
        padding: 15px;
    }

    .terms h1 {
        font-size: 1.8em;
    }

    .terms h2 {
        font-size: 1.2em;
    }

    .terms p {
        font-size: 0.9em;
    }
}

.social-link{
    text-decoration:none;
}