.nav-container {
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-right: auto;
	margin-left: auto;
	padding: 0 1.3rem;
}

.logo { 
	font-family: 'Fredoka One';
	font-size: 30px; 
	font-weight: normal;
	letter-spacing: 1px;
	display: flex;
    align-items: center;
	gap: 10px;
	color: white;
}

.logo-img {
	background: white;
    padding: 4px;
    border-radius: 8px;
}

/*nav ul { 
	display: flex; 
	list-style: none; 
	gap: 20px;
	margin: 0px;
}

nav a { 
	color: white; 
	text-decoration: none; 
	font-size: 0.9rem; 
}*/

/* ── desktop nav links ── */
.nav-links {
	display: flex; gap: 0; list-style: none; flex: 1;
}

.nav-links {
	margin: 0px !important;
	padding-left: 0px;
}

/* top-level item */
.nav-links > li {
  position: relative;
}

.nav-links > li > a {
	color: rgba(255,255,255,.75); 
	text-decoration: none;
	font-weight: 700;
	font-size: .88rem;
    letter-spacing: 1px;
	padding: 0 1rem; 
	height: 48px;
	display: flex; 
	align-items: center; 
	gap: .3rem;
	transition: color .2s, background .2s;
	white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li:hover > a {
	color: var(--color-gold-yellow1);
	background: rgba(255,255,255,.06);
}

/* chevron */
.nav-links > li > a .chev {
	display: inline-block; font-size: .6rem;
	transition: transform .25s; margin-top: 1px;
}

.nav-links > li:hover > a .chev { 
	transform: rotate(180deg); 
}

/* standalone link (no dropdown) */
.nav-links > li.solo > a { 
	gap: 0; 
}

/* ── dropdown panel ── */
.nav-dropdown {
	position: absolute; top: 100%; left: 0;
	background-image: var(--color-brand-gradient);
	border: 1px solid rgba(255,255,255,.1);
	border-top: 2px solid var(--color-gold-yellow1);
	border-radius: 0 0 12px 12px;
	min-width: 180px;
	box-shadow: 0 8px 32px rgba(0,0,0,.35);
	padding: .4rem 0;
	opacity: 0; visibility: hidden; pointer-events: none;
	transform: translateY(-6px);
	transition: opacity .22s, transform .22s, visibility .22s;
}

.nav-links > li:hover .nav-dropdown {
	opacity: 1; visibility: visible; pointer-events: auto;
	transform: translateY(0);
}

.nav-dropdown a {
	display: flex; align-items: center; gap: .6rem;
	padding: .6rem 1.1rem;
	color: rgba(255,255,255,.8); text-decoration: none;
	font-weight: 700;
	font-size: .84rem;
    letter-spacing: 1px;
	transition: background .15s, color .15s;
	white-space: nowrap;
}

.nav-dropdown a:hover {
	background: rgba(255,255,255,.09);
	color: var(--color-gold-yellow1);
}

.nav-dropdown a .dd-dot {
	width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
/*************************/

/* ── mobile nav ── */
.nav-mobile {
	display: none;
	border-top: 1px solid rgba(255,255,255,.1);
	overflow: hidden;
    margin-top: 5px;
}
.nav-mobile.open { 
	display: block; 
}

/* mobile group */
.mob-group-header {
	display: flex; align-items: center; justify-content: space-between;
	padding: .65rem 1.5rem;
	color: var(--yellow); 
    font-weight: 800; 
    font-size: .82rem;
	text-transform: uppercase; 
    letter-spacing: .7px;
	cursor: pointer; user-select: none;
}

.mob-group-header .chev {
  font-size: .6rem; transition: transform .25s;
}

.mob-group.open .mob-group-header .chev { 
	transform: rotate(180deg); 
}

.mob-sub {
  display: none;
  background: rgba(0,0,0,.15);
  border-left: 2px solid rgba(255,214,0,.3);
  margin: 0 1.5rem .3rem;
  border-radius: 0 0 8px 8px;
}
.mob-group.open .mob-sub { 
	display: block; 
}

.mob-sub a {
	display: flex; align-items: center; gap: .6rem;
	padding: .55rem .9rem;
	color: rgba(255,255,255,.8); 
    text-decoration: none;
	font-weight: 700; 
    font-size: .88rem;
	border-bottom: 1px solid rgba(255,255,255,.05);
	transition: color .15s;
}

.mob-sub a:last-child { 
	border-bottom: none; 
}

.mob-sub a:hover { 
	color: var(--color-gold-yellow1); 
}

.mob-solo {
	display: block; padding: .65rem 1.5rem;
	color: rgba(255,255,255,.8); 
    text-decoration: none;
	font-weight: 700; 
    font-size: .95rem;
	border-top: 1px solid rgba(255,255,255,.07);
	transition: color .15s;
}
.mob-solo:hover { 
	color: var(--color-gold-yellow1); 
}

/******************/

.nav-right { 
	display: flex; 
	align-items: center; 
	gap: 10px; 
}

.nav-flag {
    background: rgba(255, 255, 255, .12);
    border-radius: 50px;
    padding: .28rem .85rem;
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
	display: flex;
    align-items: center;
    gap: 15px;
}

.flag {
	width: 30px;
	height: 30px;
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}

.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px; transition: all .3s;
}

.nav-burger.open span:nth-child(1) { 
    transform: translateY(7px) rotate(45deg); 
}

.nav-burger.open span:nth-child(2) { 
    opacity: 0; 
}
.nav-burger.open span:nth-child(3) { 
    transform: translateY(-7px) rotate(-45deg); 
}

@media (max-width: 640px) {
    .nav-flag {
        font-size: 14px;
    }
    .flag {
        width: 20px;
        height: 20px;
    }

}

@media (max-width:960px) {
	.nav-burger { display:flex; }
	.nav-links { display: none; }
}
