body{
	background-color: #ebead4;
}

/* --- ALAP NAVIGÁCIÓS BEÁLLÍTÁSOK --- */
.navbar ul li a.nav-link {
    font-size: large;
    color: white !important; /* A !important biztosítja, hogy fehér maradjon */
    text-align: center;
    transition: color 0.3s ease;
}

.navbar ul li a.nav-link:hover {
    color: #d7ccc8 !important; /* Halvány bézs, ha ráviszi az egeret */
}

/* --- LEGÖRDÜLŐ MENÜ (DROPDOWN) STÍLUSAI --- */
.dropdown-menu {
    background-color: #ebead4; /* Világos bézs háttér a lenyíló ablaknak */
    border: 1px solid #d7ccc8;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dropdown-item {
    color: #604922 !important; /* Barna betűk az almenüben */
    font-weight: 500;
    padding: 10px 20px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #efebe9; /* Finom kiemelés, ha rávisszük az egeret az almenüre */
    color: #3e2723 !important;
}

/* --- ASZTALI NÉZET: Hover (Ráhúzás) lenyitás --- */
@media all and (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: block; /* Megjeleníti a menüt */
        margin-top: 0; 
        animation: fade-in 0.3s ease-in; /* Lágy megjelenés */
    }
    
    /* Eltüntetjük a kis nyilat asztali nézetben, ha szeretnéd letisztultabbra */
    /* .dropdown-toggle::after { display: none; } */
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBIL NÉZET --- */
@media screen and (max-width: 991px) { 
    .navbar-nav {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .navbar ul li a.nav-link {
        text-align: left;
        padding-left: 10px;
    }

    /* Mobilon az almenük sötét hátteret kapnak, hogy ne olvadjanak bele */
    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 20px; /* Beljebb húzzuk az almenüket */
    }
    .dropdown-item {
        color: #d7ccc8 !important;
    }
    .dropdown-item:hover {
        background-color: transparent;
        color: white !important;
    }
}

/* --- ANIMÁLT HAMBURGER MENÜ (MOBILRA) --- */
.custom-toggler {
    border: none; /* Eltüntetjük a csúnya keretet */
    padding: 10px;
}

.custom-toggler:focus {
    box-shadow: none; /* Nem lesz kék kerete, ha rányomsz */
}

.animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.animated-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: white; /* Fehér vonalak */
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.animated-icon span:nth-child(1) { top: 0px; }
.animated-icon span:nth-child(2) { top: 8px; }
.animated-icon span:nth-child(3) { top: 16px; }

.navbar-toggler[aria-expanded="true"] .animated-icon span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.navbar-toggler[aria-expanded="true"] .animated-icon span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.navbar-toggler[aria-expanded="true"] .animated-icon span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

#cookieNotificationBar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #f3e9ca;
	border-top: 2px solid #d7ccc8;
	z-index: 9999;
	box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
	display: none;
}
.cookie-tartalom {
	max-width: 1000px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #3e2723;
	font-size: 0.95rem;
}
.cookie-tartalom a {
	color: #604922;
	font-weight: bold;
	text-decoration: underline;
}
.cookie-button {
	background-color: #604922;
	color: white;
	padding: 8px 20px;
	border-radius: 4px;
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s;
	white-space: nowrap;
	margin-left: 20px;
}
.cookie-button:hover {
	background-color: #4a381a;
}
@media (max-width: 600px) {
	.cookie-tartalom {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	.cookie-button {
		margin-left: 0;
		width: 100%;
	}
}