/* Általános beállítások */
body {
    background-color: #c9c9c9; /* világosszürke háttér */
    font-family: Arial, Helvetica, sans-serif;
}
.fb-link {
    color: #1877f2;
    font-size: 90px;     /* sokkal nagyobb ikon */
    margin-right: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.fb-link:hover {
    color: white;
    transform: scale(1.1);
}
header .container {
    display: flex;
    align-items: center;
}
/* Fejléc címe */
.presztizs-title {
    font-variant: small-caps;
}

/* Egyedi piros navigációs sáv */
.custom-navbar {
    background-color: #ff0000;
}

.custom-navbar .nav-link {
    color: white !important;
    font-weight: bold;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
    text-decoration: underline;
}

/* Mobil menü ikonjának fehérré tétele */
.custom-toggler {
    border-color: rgba(255,255,255,0.5) !important;
}
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Banner kép */
.banner {
    width: 100%;
    height: 400px;
    background-image: url("img/banner.jpg"); /* Győződj meg róla, hogy az 1.jpg ott van a mappában */
    background-size: cover;
    background-position: center;
}

/* Szekciók egyedi formázása (fekete keret, fehér háttér) */
.custom-section {
    background-color: white;
    border: 3px solid black;
    border-radius: 20px;
}

/* Szekciók címei */
.section-title {
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Egyedi gomb dizájn (Autóink megtekintése) */
.custom-btn {
    background-color: black;
    color: white;
    font-weight: bold;
    border: 2px solid #ff0000;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #ff0000;
    color: white;
    border-color: black;
}

/* Vissza a tetejére gomb */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-size: 28px;
    padding: 8px 18px;
    border-radius: 50%;
    border: 2px solid #ff0000;
    transition: background-color 0.3s;
    z-index: 1000;
}

.back-to-top:hover {
    background-color: #ff0000;
    color: white;
}

/* Mobil nézet finomhangolásai */
@media (max-width: 768px) {
    .banner {
        height: 250px;
    }
    .back-to-top {
        font-size: 22px;
        padding: 6px 14px;
        bottom: 20px;
        right: 20px;
    }
}
/* Szekciók egyedi formázása (fekete keret, fehér háttér és ÁRNYÉK) */
.custom-section {
    background-color: white;
    border: 3px solid black;
    border-radius: 20px;
    
    /* Ide kerül az árnyék beállítása */
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    
    /* Opcionális: finom animáció, ha esetleg később hover effektet tennél rá */
    transition: box-shadow 0.3s ease; 
}
/* Egyedi piros navigációs sáv */
.custom-navbar {
    background-color: #ff0000;
    padding: 0; /* Hogy a hover effekt kitöltse a magasságot */
}

.custom-navbar .nav-link {
    color: white !important;
    font-weight: bold;
    
    /* Új beállítások */
    font-size: 22px;             /* Nagyobb betűméret */
    font-variant: small-caps;    /* Kis kapitális stílus */
    letter-spacing: 1px;         /* Kicsit szellősebb betűk a jobb olvashatóságért */
    
    padding: 15px 25px !important; /* Nagyobb kattintható terület */
    transition: all 0.3s ease;
}

/* Hover effekt: az oldal háttérszínével megegyező háttér (#c9c9c9) */
.custom-navbar .nav-link:hover {
    background-color: #c9c9c9; 
    color: #ff0000 !important;   /* A betű színe legyen piros, hogy látszódjon a szürkén */
    text-decoration: none;       /* Levehetjük az aláhúzást, mert a háttér jelzi a kijelölést */
}
.presztizs-title {
    font-variant: small-caps;
    color: white;
    /* Enyhe, elegáns piros ragyogás */
    text-shadow: 2px 2px 8px rgba(255, 0, 0, 0.8);
    
    /* Ha még látványosabbá tennéd, próbáld ki ezt a dupla árnyékot:
    text-shadow: 2px 2px 2px black, 0 0 15px rgba(255, 0, 0, 0.6); 
    */
}
/* Dokumentum lista elemeinek stílusa */
.list-group-item {
    border-color: rgba(0,0,0,0.1);
    background-color: transparent;
}

.list-group-item span {
    color: black;
}

/* Mobilon a gombok ne csússzanak szét */
@media (max-width: 576px) {
    .list-group-item {
        flex-direction: column;
        align-items: flex-start !important;
    }
    .list-group-item a {
        margin-top: 10px;
        width: 100%;
    }
}
p{
    text-align: justify;
    
}