/* Alapstílusok és a megadott CSS */
body {
    padding-top: 80px; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 1rem;
}


/* === KÁRTYÁK === */
.card {
    margin-bottom: 2rem; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: none; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* === SZÖVEG IGAZÍTÁS === */
.text-justify {
    text-align: justify;
}

/* === NAVIGÁCIÓS ELTOLÁS ÉS GAP === */


.navbar-nav {
    gap: 1rem; 
}

.translate-x {
    transform: translateX(-50%) !important;
}

.nav-link {
    transition: all 0.3s ease !important;
}

.nav-link:hover {
    transform: scale(1.05);
}

@media (min-width: 992px) {
    .translate-x {
        transform: translateX(-50%) !important;
    }

    .navbar-nav {
        transform: translateX(5%); 
    }

    .navbar-brand img {
        margin-top: 5px;
    }
}


/* === RESPONSIVE BEÁLLÍTÁSOK === */


@media (max-width: 768px) {
    body {
        padding-top: 70px; 
    }
    main {
        padding-top: 20px; 
    }
    .card {
        margin: 1rem;
    }
    .display-4 {
        font-size: 2.5rem; 
    }
    .rolam-section .col-md-4 {
        display: flex;
        justify-content: center;
    }
    .rolam-section .image-square-wrapper {
        width: 80%; 
        padding-top: 80%; 
    }

}


/* === SOCIAL MEDIA SZEKCIÓ === */
.social-media {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.social-media a {
    margin: 0 0.75rem;
    font-size: 1.5rem;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #333;
}

.social-media i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    transition: border-color 0.3s ease;
}

.social-media a:hover i {
    border-color: #aaa;
}


/* === KONTRASZT GOMB (Csak az alap stílus, funkcionalitás nélkül) === */
#toggle-contrast {
    position: fixed;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    background-color: #fff !important;
    color: #000 !important;
    border: 2px solid #000;
    font-weight: bold;
    padding: 0.3rem 0.8rem; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#toggle-contrast:hover { /* Alap hover maradhat, de nem vált kontrasztot */
    background-color: #e9ecef !important; 
    color: #000 !important; 
}


/* Egyedi szekció stílusok */

/* Rólam Szekció */
.rolam-section {
    background: url('images/rolam_bg.jpg') no-repeat center center/cover;
    color: #fff; 
    padding: 100px 0;
    position: relative;
}
.rolam-section::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.rolam-section .container {
    position: relative; 
    z-index: 1;
}
.rolam-section img {
    border: 5px solid #fff;
}
.rolam-section h2 {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.rolam-section p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}


/* Galéria Preview Szekció */
#galeria-preview .card-title {
    font-weight: bold;
    color: #333;
}
#galeria-preview .gallery-card img {
    height: 200px; 
    object-fit: cover; 
}
#galeria-preview .gallery-card {
     border: 1px solid #ddd; 
}

/* Kínálat Szekció */
#kinalat .offer-card {
    border: 1px solid #ddd; 
    background-color: #fff;
    text-align: center;
}
#kinalat .offer-card .card-title {
    font-weight: bold;
    color: #007bff; 
    margin-bottom: 0.5rem;
}
#kinalat .offer-card .price {
    font-weight: bold;
    color: #28a745; 
    margin-bottom: 0.5rem;
}
#kinalat .offer-card hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
#kinalat .offer-card ul li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Statisztika Szekció */
#statisztika .table {
    margin-bottom: 0; 
}
#statisztika .table th {
    background-color: #343a40; 
    color: #fff;
}
#statisztika .ratio { 
    border-radius: 0.25rem;
    overflow: hidden; 
}



.rolam-section .image-square-wrapper {
    position: relative; 
    width: 100%; 
    padding-top: 100%; 
    overflow: hidden;

}

.rolam-section .image-square-wrapper img {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

/* Háttérkép a "Rólam" szekcióhoz */
.rolam-section {
    background-image: url('Tartalom/pexels-matt-hatchett-2599270.jpg'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-attachment: scroll; 
    position: relative;
    z-index: 0;
}

.rolam-section::before {
    content: ''; 
    position: absolute; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.rolam-section .container {
    position: relative; 
    z-index: 1; 
}

.rolam-section .image-square-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}

.rolam-section .image-square-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

}
