*{
margin: 0 auto;
padding: 0;
box-sizing: border-box;
}


/*Header */


header{
    position: fixed;
    top: 0;
    height: 180px;
    background-color: #1A191A;
    width: 100%;
    display: flex;
    z-index: 1000001;
}

.headband{
flex: 1;
align-items: center;
justify-content: center;
align-content: center;
padding: 20px;
}

header img {
    width: 350px;
}

.nav {
    flex: 1;
    align-content: center;
    justify-content: center;
}

.nav ul {
    display: flex;
    padding: 0;
}

.nav ul a {
    text-decoration: none;
    color: inherit;
}

.nav ul li {
    color: #FAFAFA;
    list-style: none;
    font-size: 16px;
    padding-right: 10px;
    cursor: pointer;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.nav ul li:hover{
    color: #FD0834;
}

.nav ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: #E8E8E8;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 1));
}

.nav ul li:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav ul li img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}



/*Hamburger-menu*/

.hamburger {
    display: none;
    position: absolute;
    right: 20px;
    top: 60px;

}

.hamburger img {
    width: 50px;
}

.mobil-menu {
    display: none;
    background-color: #E8E8E8;
    position: absolute;
    right: 0;
    top: 180px;
    width: 100%;
    z-index: 1000;
}



.mobil-menu ul li {
   text-align: center;
   font-size: 24px;
   color: #1A191A;
   margin: 20px;
   list-style: none;
   font-family: "Orbitron", sans-serif;

}

.mobil-menu ul li a{
    color: inherit;
    text-decoration: none;
    
 }

.mobil-menu.active {
    display: block;
    opacity: 1; 
    transform: translateY(0); 
}


/*Footer*/

footer {
    background-color: #1A191A;
    color: #E8E8E8;
    padding: 50px 20px 20px 20px; 
    text-align: center;
    font-family: "Orbitron", sans-serif;
}


.footer-content a {
    text-decoration: none;
    color: inherit;
}

footer .footer-content h3 {
    margin-bottom: 40px;
    font-size: 22px;
    color: #FD0834;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.238);
}

footer .social-media {
    margin-top: 25px;
}

footer .social-media a {
    margin: 15px; 
    color: #E8E8E8;
    text-decoration: none;
}

footer .social-media a img {
    width: 40px;
    transition: transform 0.3s ease;
}

footer .social-media a img:hover {
    transform: scale(1.2);
}

footer nav ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

footer nav ul li {
    display: inline;
    margin: 0 10px; 
    cursor: pointer;
    font-size: 20px;
}

footer nav ul li:hover {
    color: #FD0834;
}

footer p {
    margin-top: 30px;
    line-height:0;
}

#footerlogo {
    width: 200px;
    filter: invert(1);
    margin-top: 40px;
}

/*Főoldal Tartalom*/

.hero-section {
    position: relative;
    width: 100%;
    height: 80vh; 
    overflow: hidden;
    padding-top: 200px;
    box-shadow: 0 0 3px rgba(253, 8, 52, 0.4), 
    0 0 10px rgba(253, 8, 52, 0.3), 
    0 0 20px rgba(253, 8, 52, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #E8E8E8;
    text-align: center;
    z-index: 1;
}

.hero-text h1 {
    font-size: 80px;
    font-family: "Orbitron", sans-serif;
    font-weight:900;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 1);
    margin: 0;
    display: inline-block;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3s steps(16) 0s infinite, erase 3s steps(16) 3s infinite;
}

.hero-text p {
    font-size: 30px;
    font-family: "Orbitron", sans-serif;
    font-style: italic;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 1);
    margin: 10px 0 0;
    font-weight:500;
    white-space: nowrap;
}

@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 106%;
    }
}

@keyframes erase {
    0% {
        width: 0%;
    }
    100% {
        width: 106%;
    }
}

@keyframes pause {
    0% {
        width: 100%;
    }
    100% {
        width: 100%;
    }
}



.about-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 10px 0 10px;
}

.about-image {
    flex: 2;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(253, 8, 52, 0.4), 
    0 0 10px rgba(253, 8, 52, 0.3), 
    0 0 20px rgba(253, 8, 52, 0.2);
}
.about-text {
    flex: 2;
    text-align: center;
    color: #E8E8E8;
    font-family: "Orbitron", sans-serif;
    margin: 10px;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 30px;
    color: #666;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.about-text p {
    line-height: 3;
    margin-bottom: 20px;
}


.mission-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px;
}

.mission-image {
    flex: 2;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(253, 8, 52, 0.4), 
    0 0 10px rgba(253, 8, 52, 0.3), 
    0 0 20px rgba(253, 8, 52, 0.2);
}
.mission-text {
    display: none;
    flex: 2;
    text-align: center;
    color: #E8E8E8;
    font-family: "Orbitron", sans-serif;
    margin: 10px;
}

.mission-text h2 {
    margin-bottom: 30px;
    color: #666;
    font-size: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.mission-text p {
    line-height: 3;
    margin-bottom: 20px;
}

.mission-text2{
    display: block;
    flex: 2;
    text-align: center;
    color: #E8E8E8;
    font-family: "Orbitron", sans-serif;
    margin: 10px;
    line-height: 3;
}

.mission-text2 h2{
    color: #666;
    font-size: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}


.services-section {
    padding: 40px 20px;   
    text-align: center;
}

.services-container {
    margin: 0 auto; 
    font-family: "Orbitron", sans-serif;
}

.services-section h2 {
    font-size: 30px;
    color: #666;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.services-section p {
    font-size: 1.2rem;
    color: #E8E8E8;
    margin-bottom: 20px;
}

.services-button {
    display: inline-block; 
    padding: 10px 30px; 
    font-size: 1.2rem;
    color: #fff; 
    background-color: #FD0834;
    border-radius: 5px; 
    text-decoration: none; 
    transition: background-color 0.3s,transform 0.3s ease;
    

}

.services-button:hover {
    background-color: #cc0000;
    transform:scale(1.1);
}

.brands-section {
    text-align: center;
    margin-top: 50px;
}

.brands-section h2 {
    color: #666;
    font-size: 30px;
    font-family: "Orbitron", sans-serif;
}

.brands-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); 
    gap: 20px; 
    margin-top: 30px; 
}

.brand-item {
    height: 200px; 
    display: flex;
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
}


.brand-item img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

/*Szolgáltatások tartalom*/

#services {
    text-align: center;
    padding: 20px;
}

#services h1{
    color: #FD0834;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.238);
    text-align: center;
}

#services p{
    font-size: 16px;
    font-family: "Orbitron", sans-serif;
    color:#E8E8E8;
    line-height: 3;
    margin: 10px;
    text-align: center;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    
}

.service-item {
    text-align: center;
    width: calc(25% - 20px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.service-item img {
    max-width: 400px; 
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}


.service-item button {
    padding: 10px 20px;
    background-color: #FD0834;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-family: "Orbitron", sans-serif;
    transition: background-color 0.3s,transform 0.3s ease;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    width: 100%;
}

.service-item button:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}


/*Szolgáltatások listázva*/

#passenger-car {
    padding: 20px;
    text-align: center;
}

#passenger-car h1 {
    color: #FD0834;
    font-size: 36px;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.238);
    text-align: center;
}

#passenger-car img {
    width: 250px;
}

.service-list {
    list-style-type: none; 
    padding: 0;
}

.service-list li {
    margin-top:30px;
    font-size: 14px;
    font-family: "Orbitron", sans-serif;
    color: #E8E8E8;
}


#borderedlist li{
    box-shadow: 0 0 3px rgba(253, 8, 52, 0.4), 
    0 0 10px rgba(253, 8, 52, 0.3), 
    0 0 20px rgba(253, 8, 52, 0.2);
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

#borderedlist li:hover{
    transform: scale(1.02);
}


#passenger-car button {
    padding: 10px 20px;
    background-color: #FD0834;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-family: "Orbitron", sans-serif;
    transition: background-color 0.3s,transform 0.3s ease;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin-top: 20px;
}

#passenger-car button:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}





/*Galéria tartalom*/

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 20px;
    padding: 10px;
}

.gallerytartalom  h1{
    color: #FD0834;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.238);
    text-align: center;
}


.gallery-item {
    width: 90%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 3px rgba(253, 8, 52, 0.4), 
    0 0 10px rgba(253, 8, 52, 0.3), 
    0 0 20px rgba(253, 8, 52, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

#lightbox {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80vw; 
    max-height: 80vh; 
    padding: 20px;
    overflow: hidden;
}

#lightbox-img {
    max-width: 70vw; 
    max-height: 70vh; 
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 15px; 
    right: 15px;
    font-size: 1.5em;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 1001; 
}

.lightbox-nav {
    font-size: 2em;
    color: white;
    position: absolute;
    top: 50%;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
}

.lightbox-nav.left {
    left: 20px;
}

.lightbox-nav.right {
    right: 20px;
}






/*Contact OLDAL*/

main{
    background-color: #1A191A;
    padding-top: 180px;
}

.contacttartalom{
    display: flex;
    flex-direction: column; 
    padding: 20px;
}

.contacttartalom h1{
    color: #FD0834;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.238);
}

.contacttartalom ul {
    list-style: none;
    color: #E8E8E8;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.238);
}

.contacttartalom ul a {
    text-decoration: none;
    color: inherit;
}

.contacttartalom ul li {
    padding: 20px;
    font-size: 22px;
    margin-bottom: 15px;
}

.contacttartalom ul li span:hover {
    color: #FD0834;
}

.contacttartalom ul img {
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.contacttartalom li span {
    display: inline-block;
    margin-bottom: 15px;
}

.contact-info {
    padding: 20px; 
    margin: 20px 0; 
    text-align: center;

}


.contact-info p {
    font-size: 20px;
    line-height: 2; 
    color: #E8E8E8;
    font-family: "Orbitron", sans-serif;
}

.contacttartalom iframe {
    border-radius: 4px;
    
    margin: 0 auto;
    width: 50%;
    box-shadow: 0 0 3px rgba(253, 8, 52, 0.4), 
    0 0 10px rgba(253, 8, 52, 0.3), 
    0 0 20px rgba(253, 8, 52, 0.2);
}





/*Media queryk*/

@media (max-width: 1800px) and (min-width: 850px) {
    .brands-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1276px) and (max-width: 1600px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}



@media(max-width:1621px){
    .service-item{
        width: 300px; 
    }

    .service-item img {
        width: 300px;
    }
}



@media(max-width:1250px){
    .contacttartalom iframe {
        width: 100%;
    }

    footer nav ul li {
        display: block;
        margin-bottom: 20px;
    
    }

    .nav{
        display: none;
    }

    .hamburger {
        display: block;
    }
    .mobil-menu.active {
        display: block; 
    }
    .about-container { 
        flex-direction: column;
    }
    .hero-section {
        height: 50vh; 
    }
    .mission-container {
        flex-direction: column;
    }
    .mission-text{
        display: block;
    }
    .mission-text2{
        display: none;
    }

    .service-item{
        width: 50%;
    }
    .service-item img {
        width: 400px;
    }
}

@media(max-width:1000px){

    header img {
        width: 200px;
    }
    
    

}

@media(max-width:820px){
    .service-item{
        width: 100%;
    }
    .service-item img {
        width: 600px;
    }
}



@media(max-width:798px){
    .hero-section {
        height: 40vh; 
    }
    .hero-text h1 {
        font-size: 8vw;
    }

    .hero-text p {
        font-size: 19px;
    }
}

@media(max-width:639px){
    .hero-section {
        height: 30vh; 
    }

    .lightbox-content {
        max-width: 90vw; 
        max-height: 90vh;            
    }
    
    #lightbox-img {
        max-width: 80vw; 
        max-height: 80vh; 
    }

    .service-item{
        width: 100%;
    }
    .service-item img {
        width: 400px;
    }
}

@media(max-width:473px){
    .hero-section {
        height: 20vh; 
    }

    .about-text h2 {
        font-size: 23px;
    }
    .mission-text h2 {
        font-size: 23px;
    }
    .services-container h2 {
        font-size: 23px;
    }
    .services-container p{
        font-size: 16px;
    }
    .brands-section h2{
        font-size: 23px;
    }
}

@media(max-width:420px){
    .service-item{
        width: 100%;
    }
    .service-item img {
        width: 350px;
    }
}

@media(max-width:383px){
    .service-item{
        width: 100%;
    }
    .service-item img {
        width: 250px;
    }
    #services h1{
        font-size: 30px;
    }
    #passenger-car h1{
        font-size: 28px;
    }
    .contacttartalom h1{
        font-size: 28px;
    }
    .contacttartalom ul li{
        font-size: 14px;
    }
}

@media(min-width:639px){
    #borderedlist li{
        width: 70%;
    }
}

@media(min-width:992px){
    #borderedlist li{
        width: 40%;
    }
}

@media(min-width:1700px){
    #borderedlist li{
        width: 35%;
    }
}

/* ===== Aloldalak stílusa ===== */
/* Assistance 0–24 tartalom */

#assistance {
    text-align: center;
    padding: 40px 20px;
}

#assistance h1 {
    color: #FD0834;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.238);
}

#assistance p {
    font-size: 16px;
    font-family: "Orbitron", sans-serif;
    color: #E8E8E8;
    line-height: 2;
    margin: 10px auto;
    max-width: 900px;
}

.assistance-highlight {
    font-weight: bold;
    color: #FD0834;
}

/* Ha képet akarsz hozzá */
#assistance img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 30px 0;
}

/* Gomb a híváshoz */
#assistance button {
    padding: 12px 24px;
    background-color: #FD0834;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    font-family: "Orbitron", sans-serif;
    transition: background-color 0.3s, transform 0.3s ease;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    margin-top: 20px;
}

#assistance button:hover {
    background-color: #cc0000;
    transform: scale(1.1);
     }
}

/* Csak az index.html-ben neon zöld és nagyobb méret */
.assistance-highlight {
  color: #39FF14 !important;
  font-size: 1.1rem !important;
  font-weight: bold !important;
  text-shadow: 0 0 5px #39FF14, 0 0 10px #39FF14 !important;
}


/* Hover állapot (opcionális) */
.assistance-highlight:hover {
    color: #80ff6b;
     }
}
