.masszazsterapiak{
	color: #604922;
}

.masszazsterapiak p, li{
	font-size: large;
}

body{
	background-color: #ebead4;
}

.bold{
	font-weight: bold;
	font-size: large;
}

/* --- 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);
}

.belso{
	list-style: none;
}

.belso li{
	list-style-type: circle;
	margin-left: 40px;
}

.keret{
	border: 2px solid #fae6c3;
	background-color: #fae6c3;
}

#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%;
	}
}

.sport-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Arial', sans-serif;
    color: #5d4037;
}

.intro-szekcio {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.intro-szoveg {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6d4c41;
}

.intro-kep {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: rotate(2deg); 
    border: 5px solid #f3e9ca;
}

.intro-kep img {
    width: 100%;
    height: auto;
    display: block;
}

.listak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.lista-kartya {
    background-color: #f3e9ca;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #f3e9ca;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.lista-kartya h3 {
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d7ccc8;
    color: #3e2723;
    font-size: 1.3rem;
}

.stilusos-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stilusos-lista li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.4;
}

.stilusos-lista li::before {
    content: "■";
    color: #8d6e63;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
    line-height: 1.6;
}

.stilusos-lista.celkozonseg li::before {
    content: "➜"; 
    color: #5d4037;
}

.zaro-gondolat {
    text-align: center;
    background-color: #f3e9ca;
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    font-weight: bold;
    color: #3e2723;
}

@media (max-width: 768px) {
    .intro-szekcio {
        flex-direction: column-reverse;
        gap: 20px;
    }
    
    .intro-kep {
        transform: rotate(0deg);
        width: 100%;
    }

    .listak-grid {
        grid-template-columns: 1fr;
    }
}