/* --- Globális alapok --- */
html, body {
    margin: 0; padding: 0;
    width: 100%;
    min-height: 100vh;
    font-family: 'Playfair Display', serif;
    overflow-x: hidden;
}

body { padding-top: 100px; }

/* --- Fejléc --- */
#mainNav {
    height: 120px;
    background-color: #ffffff !important;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo-desktop { height: 120px !important; width: auto; display: block; }
.logo-mobile { display: none; }

/* --- Navigáció Hover (aláhúzás) --- */
.nav-link {
    color: #2c3ea3 !important;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #2c3ea3;
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* --- Tartalom (Háttérrel) --- */
.page-section {
    padding: 4rem 0; /* Megnövelt padding */
    background-image: url('../assets/img/background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 70vh; /* Kicsit több helyet ad a kártyáknak */
}

/* --- Kártyák --- */
.card {
    height: 100%;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    padding: 20px; /* Megnövelt belső tér a kártyán belül */
}
.card:hover { transform: translateY(-5px); }

/* A képek arányosítása */
.card-img-top {
    width: 100%;
    height: 450px; /* Megnöveltük a képek magasságát */
    object-fit: cover;
    border-radius: 15px;
}

.card-title, h5 { 
    color: #2c3ea3 !important; 
    font-weight: 700; 
    padding: 1.5rem 0; /* Több hely a cím alatt */
}

/* --- Lábléc --- */
footer {
    padding: 3rem 0;
    text-align: center;
    background-color: #ffffff;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #2c3ea3 !important; /* Ezt add hozzá */
}

/* ... (A fájl eleje maradjon ugyanaz) ... */

/* --- Reszponzivitás --- */
@media (max-width: 992px) {
    #mainNav { height: auto; min-height: 70px; padding: 10px 0; }
    
    .logo-desktop { display: none !important; }
    .logo-mobile { 
        display: block !important; 
        height: 65px !important; 
        width: auto; 
    }
    
    /* Hamburger menü színe/stílusa */
    .navbar-toggler { border: 1px solid #2c3ea3 !important; }
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 163, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
    
    .navbar-collapse {
        background: #ffffff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .navbar-nav .nav-link {
        color: #2c3ea3 !important;
        font-weight: 700;
        padding: 10px 0;
    }
}
/* Felesleges zárójel törölve innen */