/* --- CSS Alapok és Változók --- */
:root {
    /* Színek a modern, üzleti megjelenéshez */
    --primary-color: #004d99; 
    --secondary-color: #f8f9fa; 
    --text-dark: #343a40;
    --text-light: #ffffff;
    --accent-color: #007bff; 
    
    /* Betűméretek */
    --font-xl: 3.5rem;
    --font-l: 1.5rem;
    --font-m: 1.1rem;
    
    /* Térközök */
    --spacing-l: 3rem;
    --spacing-m: 1.5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
}

/* --- 1. Hero Szekció (Header) --- */
.hero {
    background: url('background.png') no-repeat center center;
    background-size: cover;
    height: 60vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: var(--spacing-l);
}

/* Átfedés (overlay) a szöveg olvashatóságáért */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4); 
}

.hero-overlay {
    position: relative; 
    color: var(--text-light);
    max-width: 800px;
    z-index: 10;
}

.logo {
    font-size: var(--font-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.logo img{
    background: url('foldana_logo.png') no-repeat center center;
    background-size: cover;
    width: 200px;
    
}

.subtitle {
    font-size: var(--font-l);
    font-weight: 300;
    margin-bottom: 1rem;
}

.cta-prompt {
    font-size: var(--font-m);
    font-weight: 600;
}

/* --- 2. Tevékenységi Területek - GRID Kártyák --- */
.services-grid {
    display: grid;
    gap: 25px; 
    padding: var(--spacing-l) var(--spacing-m);
    max-width: 1200px;
    margin: var(--spacing-l) auto;
}

/* Asztali nézet (3 oszlop) */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet nézet (2 oszlop) */
@media (min-width: 600px) and (max-width: 1023px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* --- Kártya Stílus --- */
.service-card {
    display: block; 
    text-decoration: none;
    color: var(--text-dark);
    background-color: var(--text-light);
    padding: var(--spacing-m);
    border-radius: 8px; 
    border-top: 5px solid var(--primary-color); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.description {
    font-size: 0.95rem;
    min-height: 75px; 
    margin-bottom: 1rem;
}

.card-link {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

.card-link i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-card:hover .card-link i {
    margin-left: 10px;
}

/* --- Footer --- */
.site-footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--accent-color);
    text-decoration: none;
}


.supporter-banner {
 background-color: #f8f9fa;
 padding: 2rem 1rem;
 text-align: center;
 border-top: 1px solid #e9ecef;
 border-bottom: 1px solid #e9ecef;
 margin: 2rem 0;
 }
 .supporter-logos {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 3rem;
 flex-wrap: wrap;
 margin-bottom: 1.5rem;
 }
 .supporter-logo {
 max-height: 80px;
 width: auto;
 max-width: 200px;
 object-fit: contain;
 }
 .supporter-text {
 color: #495057;
 font-size: 1rem;
 margin: 1rem 0 0;
 line-height: 1.5;
 }