/* Globális beállítások a helyes méretezéshez */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    background-color: #f8f6f0;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    width: 95%;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header {
    text-align: center;
    border-bottom: 2px solid #eae6df;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

h1 {
    color: #2c4a3e;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

nav a {
    color: #2c4a3e;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f0ede6;
    font-size: 0.95rem;
}

nav a:hover, nav a.active {
    background-color: #2c4a3e;
    color: #fff;
}

.content-layout {
    display: block; /* Egy oszlopos, letisztult elrendezés */
}

.main-content {
    display: flex;
    flex-direction: column;
}

.main-content h5 {
    font-size: 1.4rem;
    color: #2c4a3e;
    border-bottom: 1px solid #eae6df;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.badge {
    align-self: flex-start;
    background-color: #c8b88a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-details {
    background-color: #fcfbfa;
    border: 1px solid #eae6df;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    word-break: break-all;
}

.contact-item strong {
    color: #2c4a3e;
    display: inline-block;
    width: 100px;
}

.contact-item a {
    color: #2c4a3e;
    text-decoration: none;
    font-weight: bold;
}

.contact-item a:hover {
    text-decoration: underline;
}

.services-section {
    margin-top: 20px;
    background-color: #fcfbfa;
    border: 1px solid #eae6df;
    padding: 20px;
    border-radius: 8px;
}

.services-section h4 {
    color: #2c4a3e;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.services-list {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.services-list:last-child {
    margin-bottom: 0;
}

/* Település listázó kártyák a part-oldalakhoz */
.town-card {
    background-color: #fcfbfa;
    border: 1px solid #eae6df;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.town-card h3 {
    color: #2c4a3e;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.greeting-text {
    margin-top: 30px;
    font-weight: bold;
    color: #2c4a3e;
    text-align: center;
}

footer {
    margin-top: 40px;
    border-top: 1px solid #eae6df;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Mobil és táblagép reszponzív nézet */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 20px auto;
        width: 95%;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    nav {
        gap: 8px;
    }
    
    nav a {
        font-size: 0.85rem;
        padding: 6px 10px;
        flex-grow: 1;
        text-align: center;
    }
}
