/* Γενικές Ρυθμίσεις */
body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Προστασία από οριζόντιο scrolling */
}

/* Header / Title Section */
.color_of_title {
    width: 100%;
    padding: 40px 20px;
    background-color: #2B2B2B;
    box-sizing: border-box;
    transition: 0.5s;
    text-align: center;
}

.color_of_title:hover {
    box-shadow: 0px 0px 30px 10px orange;
}

.title_SERVICE_label, .title_REPPAS_label {
    font-size: clamp(2.5rem, 8vw, 4rem); /* Προσαρμόζεται από κινητό μέχρι desktop */
    font-weight: bold;
    line-height: 1.1;
}

.title_SERVICE_label { color: orange; }
.title_REPPAS_label { color: white; }

/* Ο "πατέρας" των logos */
.moto_logo {
    display: flex;
    flex-wrap: wrap;           /* Επιτρέπει την αλλαγή σειράς αν στενέψει πολύ η οθόνη */
    justify-content: center;   /* Κεντράρισμα οριζόντια */
    align-items: center;       /* Κεντράρισμα κάθετα */
    gap: 0px;                 /* Μικρή απόσταση μεταξύ τους */
    padding: 0px 0px 0px 0px; /* 0px στο τρίτο νούμερο για να μην έχει κενό από κάτω */
}

/* Ρύθμιση για ΟΛΕΣ τις εικόνες (Πιο μικρές τώρα) */
.moto_logo img {
    height: 45px;              /* Γενικό ύψος (ήταν 70) */
    width: 100px;              /* Γενικό πλάτος (ήταν 150) */
    object-fit: contain;       /* Διατήρηση αναλογιών */
    transition: 0.3s;
    display: block;
}

.honda { 
    height: 75px !important;  /* Ανέβασέ το όσο χρειάζεται για να γεμίσει το μάτι */
    width: auto !important;   /* Την αφήνουμε να πάρει όσο πλάτος θέλει για να μην τη "πνίγει" το 100px */
}

.kawasaki {
    height: 85px !important; 
    margin-left: 15px;         /* Μικρότερο margin αφού μίκρυναν τα logos */
    margin-right: 5px;
}

.yamaha{
    height: 45px !important;
}

.piaggio { 
    height: 55px !important;   /* Αναλογική μείωση (ήταν 85) */
}

.voge { 
    height: 50px !important;   /* Αναλογική μείωση (ήταν 80) */
}

/* Εφέ όταν ακουμπάς το ποντίκι */
.moto_logo img:hover {
    transform: scale(1.1);
}




/* Cyber Card Section (Εικόνα - Κείμενο) */
.cyber-card {
    display: flex;
    flex-wrap: wrap; /* Επιτρέπει στα στοιχεία να αλλάζουν σειρά αν δεν χωράνε */
    align-items: center;
    justify-content: center;
    background-color: black;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 15px;
    gap: 30px;
    box-sizing: border-box;
}

#img1 {
    width: 100%;
    max-width: 500px; /* Μέγιστο πλάτος σε desktop */
    height: auto;
    flex: 1 1 300px; /* Responsive βάση */
}

.content {
    color: orange;
    flex: 1 1 400px; /* Παίρνει τον υπόλοιπο χώρο */
    font-size: clamp(1.1rem, 2vw, 1.40rem);
    line-height: 1.6;
    text-align: left;
    font-weight: bold;
}

/* Google Maps Section */
#page_google_maps {
    width: 100%;
    background-color: #2B2B2B;
    padding: 50px 20px;
    box-sizing: border-box;
    text-align: center;
    transition: 0.5s;
}

#page_google_maps:hover { box-shadow: 0px 0px 30px 10px orange; }

#p {
    font-size: 2rem;
    font-weight: bold;
    color: orange;
    margin-bottom: 30px;
}

.map-img {
    width: 90%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
}

.btn-moto {
    display: inline-block;
    margin-top: 30px;
    background-color: rgb(0, 0, 0);
    color: orange;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
    /* Εδώ ενεργοποιούμε την αναπνοή */
    animation: motoBreathe 2.5s ease-in-out infinite;
    border: 1px solid orange;
}



@keyframes motoBreathe {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgb(172, 124, 61);
    }
    50% {
        /* transform: scale(1.05); Μεγαλώνει ελαφρώς */
        box-shadow: 0 0 20px rgb(255, 140, 0) /*orange; Βγάζει λάμψη */
    }
    100% {
        /* transform: scale(1); */
        box-shadow: 0 0 0px rgb(179, 129, 63) /* rgba(255, 166, 0, 0.559);*/
    }
}







.div_paragraph{
    max-width: 1000px;        /* Περιορίζουμε το πλάτος για να μην "απλώνει" πολύ */
    margin: 60px auto;        /* Κεντράρισμα στη σελίδα και κενό πάνω-κάτω */
    padding: 0 20px;          /* Αέρας στα πλάγια για τα κινητά */
    text-align: center;
    color: orange;
    font-weight: bold;
    line-height: 1.4;
}


.title_of_paragraph{
    text-align: center;
    font-family: underline;
    text-decoration: underline;

}


.paragraph{
    color: orange;
    font-weight: bold;
    line-height: 1.9;
    font-size: 2.90rem;
    text-align: justify;      /* Ίσιο κείμενο δεξιά και αριστερά */
    font-weight: 300;
}









.color{
    background-color: #2B2B2B;
    transition: 0.5s;
}

.gallery {
    background-color: #2B2B2B;
    display: grid;
    /* Δημιουργεί στήλες που προσαρμόζονται αυτόματα */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px; 
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: 350px; /* Σταθερό ύψος για να είναι στην ίδια ευθεία */
    
    /* ΑΛΛΑΓΗ ΕΔΩ: contain αντί για cover για να μην "ζουμάρει" η αρχική φωτό */
    object-fit: contain; 
    
    /* Προαιρετικά: ένα σκούρο φόντο αν η φωτό δεν γεμίζει όλο το πλάτος */
    background-color: #2B2B2B; 
    
    border-radius: 8px;
    
}

.color:hover { box-shadow: 0px 0px 30px 10px orange; }

/* Responsive για κινητά */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    .gallery img {
        height: 250px;
    }
}





.info-container {
    display: flex;
    justify-content: center;   /* Κεντράρει όλο το div στη σελίδα */
    align-items: flex-start;   /* Ευθυγραμμίζει τα περιεχόμενα στην κορυφή (ίδιο ύψος) */
    gap: 100px;                /* Η απόσταση ανάμεσα σε ωράριο και τηλέφωνο */
    background-color: black;
    color: white;
    padding: 50px 20px;
    margin-top: 5%;
    font-family: Arial, sans-serif;
}

.hours-box {
    margin-top: -5%;
    text-align: left;
}

#open {
    font-size: 2rem;
    color: orange;
    font-weight: bold;
    margin-top: 0;            /* Αφαιρεί το κενό πάνω για να είναι στην ίδια ευθεία με το τηλ */
    margin-bottom: 20px;
}

.hours-box p {
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.tel-box {
    /* Προαιρετικά: padding-top αν χρειαστεί μικρορύθμιση με το μάτι */
    padding-top: 5px; 
    margin-top: -6%;
}

#contact {
    font-size: 2.2rem;
    color: orange;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 10px;           /* Αφαιρεί το κενό πάνω για να είναι στην ίδια ευθεία με το "ΩΡΕΣ" */
}

#tel {
    font-size: 1.7rem;
    color: white;
    font-weight: bold;
    margin-top: 0;            /* Αφαιρεί το κενό πάνω για να είναι στην ίδια ευθεία με το "ΩΡΕΣ" */
    white-space: nowrap;
   
}


#email {
    font-size: 1.5rem;
    color: white;
    margin-top: 10px;
    text-decoration: none;
    font-weight: bold;
}










/* Για να φαίνεται σωστά και στα κινητά */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;   /* Στο κινητό τα κεντράρει όλα */
        gap: 40px;
        text-align: center;
    }
    
    .hours-box {
        text-align: center;
    }
}





/* --- MEDIA QUERIES ΓΙΑ ΚΙΝΗΤΑ --- */
@media (max-width: 768px) {
    .cyber-card {
        flex-direction: column;
        text-align: center;
    }
    
    .content {
        text-align: center;
    }

    .gallery {
        flex-direction: column;
    }

    .left-col {
        width: 100%;
    }
}


/* Ρυθμίζουμε όλα τα p μέσα στο container */
.info-container p {
    font-size: 20px; /* Το 30px ήταν πολύ μεγάλο για τόσες γραμμές */
    text-align: center;
}

/* Ειδικό στυλ για τον τίτλο και το τηλέφωνο */
#open, #tel {
    font-size: 30px;
    font-weight: bold;
    color: orange;
    margin-bottom: 15px;
    
}