/* =========================================================
   DESIGN SYSTEM
========================================================= */

:root {
    --bg-app: #725b45;
    --bg-sidebar: #725b45;
    --bg-topbar: #725b45;
    --bg-rightbar: 725b45;
    --bg-content: #e7d9c4;

    --card: #f3f3f3;
    --card-soft: #ffffff;
    --card-hover: #e6e6e6;

    --text-dark: #725b45;
    --text-muted: #b4b2b0;
    --text-light: #ffffff;
    --text-light-muted: #cfcfcf;

    --border-dark: #292929;
    --border-light: #d0d0d0;

    --button: #83674d;
    --button-hover: #83674d;
    --button-secondary: #967c63;
    --button-secondary-hover: #83674d;
    --danger: #8f1d1d;
    --danger-hover: #701616;

    --success-bg: #d9f3dc;
    --success-text: #185c22;
    --error-bg: #ffd8d8;
    --error-text: #7a1111;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;

    --shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.10);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.16);

    --transition-fast: 0.15s ease;
}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background: var(--bg-app);
    color: var(--text-light);
}

body {
    overflow: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.inline-action-form {
    display: inline;
    margin: 0;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
}

strong {
    font-weight: 700;
}

hr {
	max-width: 100%
}
/* Back-to-top control used by the public footer */
.go-top-button {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 2000;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 999px;
    background: var(--button);
    color: var(--text-light);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.go-top-button:hover,
.go-top-button:focus-visible { background: var(--button-hover); }
.go-top-button.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.cookie-consent-open {
    overflow: hidden;
}

.cookie-consent-backdrop {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.cookie-consent-backdrop[hidden] {
    display: none;
}

.cookie-consent-modal {
    width: min(580px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 34px 40px;
    background: #725b45;
    color: #ffffff;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.cookie-consent-view h2 {
    margin: 0 0 14px;
    text-align: center;
    font-size: 24px;
    line-height: 1.2;
}

.cookie-consent-view p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.45;
    text-align: center;
}

.cookie-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.cookie-consent-actions-stacked {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cookie-consent-button {
    min-height: 42px;
    border: 0;
    border-radius: 0;
    padding: 11px 14px;
    font-weight: 800;
    color: #ffffff;
    cursor: pointer;
    background: #8f6f52;
}

.cookie-consent-button-primary {
    background: #9f7f61;
}

.cookie-consent-button-secondary {
    background: #604a38;
}

.cookie-consent-button-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.cookie-consent-privacy a {
    color: #ffd766;
    font-weight: 800;
}

.cookie-consent-category {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.cookie-consent-category h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.25;
}

.cookie-consent-category p {
    margin: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    width: 54px;
    height: 30px;
    flex: 0 0 auto;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-switch span {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.32);
    cursor: pointer;
    transition: background 0.18s ease;
}

.cookie-switch span::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background: #ffffff;
    transition: transform 0.18s ease;
}

.cookie-switch input:checked + span {
    background: #11be32;
}

.cookie-switch input:checked + span::before {
    transform: translateX(24px);
}

.cookie-switch.is-disabled span {
    cursor: not-allowed;
    opacity: 0.75;
}

.landing-footer-link-button {
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    color: #cfcfcf;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 900px) {
    .cookie-consent-backdrop {
        align-items: flex-end;
        padding: 14px;
    }

    .cookie-consent-modal {
        max-height: calc(100vh - 28px);
        padding: 26px 20px;
    }

    .cookie-consent-view h2 {
        font-size: 21px;
    }

    .cookie-consent-actions,
    .cookie-consent-actions-stacked {
        grid-template-columns: 1fr;
    }

    .cookie-consent-category {
        gap: 12px;
    }
}


/* =========================================================
/* =========================================================
   PUBLIC LANDING PAGE
========================================================= */

.landing-page {
    margin: 0;
    min-height: 100vh;
    background: #050505;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.landing-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    background: #725b45;
}

.landing-topbar-logo {
    display: inline-flex;
    align-items: center;
}

.landing-topbar-logo img {
    height: 30px;
    width: auto;
    display: block;
}

.landing-burger {
    display: none;
    width: 42px;
    height: 35px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.landing-burger span {
    display: block;
    width: 34px;
    height: 3px;
    margin: 7px auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-burger-open span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.landing-burger-open span:nth-child(2) {
    opacity: 0;
}

.landing-burger-open span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.landing-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.landing-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.landing-nav a:hover {
    text-decoration: underline;
}

.landing-main {
    min-height: 100vh;
}

.landing-hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
	overflow: hidden;
}

.landing-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(
        to bottom,
        rgba(114, 91, 69, 0) 0%,
        #725b45 100%
    );
    pointer-events: none;
    z-index: 1;
}

.landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    text-align: center;
}

.landing-hero-logo {
    width: min(360px, 80vw);
    height: auto;
    display: block;
    margin: 0 auto 28px;
}

.landing-claim {
    margin: 0 0 34px;
    color: #ffffff;
    font-size: clamp(24px, 4vw, 20px);
    line-height: 1.12;
    /*font-weight: 700;*/
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.75);
}

.landing-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.landing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 22px;
    border-radius: 0;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.landing-button:hover {
    transform: translateY(-2px);
}

.landing-button-primary {
    background: #967c63;
    color: #fff;
}

.landing-button-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.landing-stats {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.landing-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.landing-stat-item + .landing-stat-item {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.landing-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #37c83f;
    box-shadow: 0 0 0 3px rgba(55, 200, 63, 0.25);
    flex-shrink: 0;
}

.landing-stat-online {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 900px) {
	.landing-stats {
		font-size: 12px;
	}
	

}

.landing-footer {
    background: #725b45;
    color: #ffffff;
    padding: 48px 34px;
	font-size: 12px;
}

.landing-footer-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.landing-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 14px;
}

.landing-footer a {
    display: block;
    margin-bottom: 9px;
    color: #cfcfcf;
    text-decoration: none;
    font-size: 13px;
}

.landing-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.landing-footer-social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-bottom: 9px;
    text-decoration: none;
    transition: opacity .2s;
	margin-right: 15px;
}

.landing-footer-social-icon img {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

.landing-about-content {
    min-height: 100vh;
    padding: 62px 44px 72px;
    background:
        linear-gradient(to bottom, rgba(114, 91, 69, 0) 72%, #967c63 100%),
        #725b45;
    color: #ffffff;
}

.landing-sponsor-content {
    min-height: 52vh;
    padding: 62px 44px 72px;
    background:
        linear-gradient(to bottom, rgba(150, 124, 99, 0) 72%, #725b45 100%),
        #967c63;
    color: #ffffff;
}

.landing-content-grid {
    width: min(1220px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 48px;
}

.landing-content-grid-about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    row-gap: clamp(72px, 7vw, 118px);
}

.landing-content-grid-sponsor {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    align-items: start;
}

.landing-content-copy {
    align-self: start;
    justify-self: start;
    max-width: 560px;
    color: #ffffff;
    text-align: left;
}

.landing-content-copy-center {
    align-self: center;
    justify-self: center;
    padding-block: clamp(18px, 2.6vw, 46px);
}

.landing-content-copy h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 700;
}

.landing-content-copy p,
.landing-content-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.55;
}

.landing-content-text p {
    margin: 0 0 14px;
}

.landing-content-text p:last-child {
    margin-bottom: 0;
}

.landing-sponsor-action {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.landing-content-image-tile {
    width: 100%;
    min-height: 218px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    /*background: rgba(255, 255, 255, 0.16);*/
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    text-align: center;
}

.landing-content-image-tile-large {
    min-height: 260px;
}
@media (max-width: 800px) {
    .landing-topbar {
        height: 86px;
        padding: 0 24px;
        justify-content: space-between;
    }

    .landing-topbar-logo img {
        height: 30px;
    }

    .landing-topbar-right {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        background: #725b45;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
	}

    .landing-topbar-right-open {
        display: flex;
    }

    .landing-burger {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 40px;
        margin-left: auto;
        order: 3;
    }

    .landing-burger span {
        width: 44px;
        height: 4px;
        margin: 4px auto;
    }

    .landing-nav {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .landing-nav-open {
        display: flex;
    }

    .landing-nav a {
        padding: 16px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
        font-size: 18px;
    }

    .landing-hero {
        padding-top: 124px;
    }

    .landing-about-content,
    .landing-sponsor-content {
        min-height: auto;
        padding: 42px 18px 54px;
    }

    .landing-content-grid,
    .landing-content-grid-about,
    .landing-content-grid-sponsor {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .landing-content-grid-about > :nth-child(1) {
        order: 1;
    }

    .landing-content-grid-about > :nth-child(2) {
        order: 2;
    }

    .landing-content-grid-about > :nth-child(3) {
        order: 4;
    }

    .landing-content-grid-about > :nth-child(4) {
        order: 3;
    }

    .landing-content-grid-about > :nth-child(5) {
        order: 5;
    }

    .landing-content-grid-about > :nth-child(6) {
        order: 6;
    }

    .landing-content-copy,
    .landing-content-copy-center {
        justify-self: start;
        align-self: start;
        max-width: 100%;
        padding-block: 0;
    }

    .landing-content-copy h2 {
        font-size: 28px;
    }

    .landing-content-copy p,
    .landing-content-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .landing-content-image-tile,
    .landing-content-image-tile-large {
        min-height: 190px;
        font-size: 16px;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
    }




	.mobile-nav-icon {
		width: 16px;
		height: 16px;
		object-fit: contain;
		flex-shrink: 0;
		filter: brightness(0) invert(1); /* weiÃŸ */
	}

}

@media (max-width: 520px) {
    .landing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .landing-button {
        width: 100%;
    }

    .landing-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

}

.landing-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
	margin-left: auto;
}

/* Language Dropdown */
.landing-language-dropdown {
    position: relative;
}

.landing-language-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 0;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.04em;
}

.landing-language-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.46);
}

.landing-language-dropdown-arrow {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.landing-language-dropdown.open .landing-language-dropdown-arrow {
    transform: rotate(180deg);
}

.landing-language-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: #3d2e20;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
    z-index: 2000;
    overflow: hidden;
}

.landing-language-dropdown.open .landing-language-dropdown-menu {
    display: block;
}

.landing-language-dropdown-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast);
    gap: 10px;
}

.landing-language-dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
}

.landing-language-dropdown-menu li[aria-selected="true"] a {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 800px) {
    .landing-topbar-right {
        position: fixed;
        top: 86px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
        background: #725b45;
        border-top: 1px solid rgba(255, 255, 255, 0.28);
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
    }

    .landing-topbar-right.landing-topbar-right-open {
        display: flex;
    }

    .landing-language-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.26);
    }

    .landing-language-dropdown-toggle {
        width: 100%;
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 16px 24px;
        font-size: 18px;
        justify-content: space-between;
        gap: 0;
    }

    .landing-language-dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
    }

    .landing-language-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.18);
        padding: 0;
    }

    .landing-language-dropdown-menu li a {
        padding: 12px 32px;
        font-size: 16px;
    }
}
