.site-title:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 12px rgba(0,0,0,0.3);
}
.site-title {
    font-size: 64px;
    font-weight: 800;
    color: #6b4d2f; /* tea-barna */
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    margin: 0;
    line-height: 1.1;
    transition: transform 0.3s ease;
}
a {
  text-decoration: none;
}
.site-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}
.menu-item > a:hover,
.submenu li a:hover {
    background-color: #eee;
}
/* Menü konténer */
.menu-container {
    width: 100%;
    background-color: #f5f5f5;
    padding: 10px 0;
}

/* Fő navigáció */
.main-nav {
    display: flex;
    justify-content: center; /* középre igazítja */
    align-items: center;
}

/* Menü lista */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* távolság az elemek között */
}

/* Menü elemek */
.menu-item {
    position: relative; /* az almenük pozicionálásához kell */
}

.menu-item > a {
    font-size: 32px;
    text-decoration: none;
    color: #333;
    padding: 8px 12px;
    display: block;
}

/* Almenü alapból rejtve */
.submenu {
    display: none;
    position: absolute;
    top: 100%; /* a főmenü alatt */
    left: 0;
    background-color: #fff;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border: 1px solid #ddd;
    min-width: 150px;
    z-index: 10;
}

/* Almenü elemek */
.submenu li a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #333;
}

/* Hover hatás */
.menu-item:hover > .submenu {
    display: block;
}