.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;
}

.kulso{
	list-style: none;
}

.belso li{
	list-style-type: circle;
	margin-left: 40px;
}

.kulso .kulsoli:before{
	content: '✓ ';
}

.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%;
	}
}

.arlista-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: none;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    color: #754c24;
}

.csomag-sor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    
    border-bottom: 2px solid #d7ccc8;
}

.csomag-sor:last-child {
    border-bottom: none;
}

.csomag-szoveg {
    flex: 1;
    padding-right: 30px;
}

.csomag-szoveg h3 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
    color: #754c24;
    text-transform: uppercase;
}

.csomag-szoveg p {
    margin: 10px 0;
    line-height: 1.5;
}

.csomag-szoveg ul {
    margin: 10px 0 0 20px;
    padding: 0;
    font-size: 0.95rem;
}

.cimke {
    background-color: #FAE6C3;
    color: #754c24;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.csomag-ar-doboz {
    background-color: #754c24;
    color: #ffffff;
    width: 140px;
    height: 140px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); 
}

.csomag-ar-doboz .ar {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.csomag-ar-doboz .ido {
    font-size: 0.9rem;
    opacity: 0.9;
}

.csomag-ar-doboz:hover {
    background-color: #855b32;
}

@media (max-width: 600px) {
    .csomag-sor {
        flex-direction: column; 
        text-align: center;
    }
    
    .csomag-szoveg {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .csomag-ar-doboz {
        width: 100%; 
        height: auto;
        padding: 15px;
    }
}

.info-szekcio {
    max-width: 900px;
    margin: 40px auto;
    font-family: 'Arial', sans-serif;
    color: #3e2723;
}

.szekcio-cim {
    color: #5d4037;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d7ccc8;
}

.elonyok-doboz {
    background-color: #f3e9ca;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #f3e9ca;
    margin-bottom: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.pipas-lista {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pipas-elem {
    display: flex;
    align-items: start;
    font-size: 1rem;
    line-height: 1.4;
}

.pipa {
    color: #2e7d32;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.intro-szoveg {
    margin-bottom: 25px;
    font-style: italic;
    color: #6d4c41;
}

.seged-kartya {
    background-color: #f3e9ca;
    border-left: 5px solid #754c24;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}

.seged-kartya:hover {
    transform: translateX(5px);
    background-color: #ffecce;
}

.szituacio {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #333;
}

.megoldas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #d7ccc8;
	
}

.nyil {
    color: #5d4037;
    font-weight: bold;
    font-size: 1.2rem;
}

.csomag-nev {
    font-weight: bold;
    color: #5d4037;
    background-color: #efebe9;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.csomag-leiras {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    flex-basis: 100%;
    margin-top: 5px;
}

.seged-kartya.tanacsadas {
    border-left-color: #cf4e1f;
    background-color: #f3e9ca;
}

@media (max-width: 600px) {
    .pipas-lista {
        grid-template-columns: 1fr;
    }
}