/* Alap stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.kontener {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Fejléc stílusok */
.fejlec {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.fejlec-belso {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    flex-wrap: wrap;
}

#logo {
    text-align: center;
    margin: 0 auto 15px;
    width: 100%;
}

#logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #ff1900;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

#logo p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 12.5px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff1900;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

/* Aktív menüpont stílusa */
nav ul li a.aktualis {
    color: #ff1900;
    font-weight: 600;
}

nav ul li a:hover::after,
nav ul li a.aktualis::after {
    width: 100%;
}

.gomb {
    display: inline-block;
    background-color: #8E44AD; /* Changed from red to purple to match logo */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gomb:hover {
    background-color: #7a288a; /* Changed from dark red to dark purple to match logo */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobil menü stílusok */
.menu-gomb {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Reszponzív stílusok */
@media (min-width: 993px) {
    .fejlec-belso {
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    #logo {
        width: auto;
        margin: 0 30px 0 0;
        text-align: left;
    }
    
    nav {
        margin: 0 auto;
    }
    
    nav ul {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .fejlec-belso {
        padding: 15px 50px 15px 15px;
    }
    
    .menu-gomb {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 10px 0;
    }
    
    nav ul.mutat {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 20px;
    }
}
