@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Cinzel';
    src: url('../fonts/cinzel-v26-latin-regular.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/lora-v37-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('../fonts/lora-v37-latin-regular.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --dark: #1A1614;
    --gold: #C9A961;
    --accent: #D4712B;
    --off-white: #F5EFE6;
    --text-muted: #A39A94;
    --font-display: 'Cinzel', serif;
    --font-body: 'Lora', serif;
    --font-sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #F9F5F0; color: #2A2320; font-family: var(--font-body); line-height: 1.8; }

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 22, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-left: 0.75rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--off-white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--off-white);
    display: block;
}

.legal-main { padding-top: 100px; min-height: 100vh; }

.legal-title { font-family: var(--font-display); font-size: 3rem; color: var(--gold); margin-bottom: 1rem; text-align: center; }
.legal-date { color: var(--text-muted); font-size: 1rem; text-align: center; margin-bottom: 3rem; }
.legal-section { background: white; border-radius: 12px; padding: 2.5rem; margin-bottom: 2rem; border-left: 4px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.legal-section h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--accent); margin-bottom: 1.5rem; }
.legal-section h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--dark); margin-top: 2rem; margin-bottom: 1rem; }
.legal-section p { color: #3A3330; font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-section ul { margin: 1rem 0 1rem 2rem; }
.legal-section li { padding: 0.5rem 0; color: #3A3330; }
.legal-section a { color: var(--accent); text-decoration: underline; }
.legal-links { text-align: center; margin: 3rem 0; }
.legal-links a { display: inline-block; padding: 1rem 2rem; background: var(--accent); color: white; text-decoration: none; border-radius: 8px; margin: 0.5rem; transition: transform 0.3s ease; }
.legal-links a:hover { transform: translateY(-2px); }

.legal-hero { background: var(--dark); padding: 8rem 2rem 4rem; text-align: center; border-bottom: 2px solid var(--gold); }
.legal-hero h1 { font-family: var(--font-display); font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.legal-hero p { color: var(--text-muted); font-size: 1rem; font-family: var(--font-sans); }

.legal-content { padding: 4rem 2rem; }
.container { max-width: 900px; margin: 0 auto; }

.legal-block { background: white; border-radius: 12px; padding: 2.5rem; margin-bottom: 2rem; border-left: 4px solid var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.legal-block h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--accent); margin-bottom: 1.25rem; }
.legal-block p { color: #3A3330; font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block a { color: var(--accent); text-decoration: underline; }
.legal-block strong { color: var(--dark); }
.legal-block em { color: var(--text-muted); font-size: 0.9rem; }

.legal-list { list-style: none; margin: 1rem 0; }
.legal-list li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; border-bottom: 1px solid #F0EBE5; font-size: 0.95rem; color: #3A3330; }
.legal-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.legal-list li:last-child { border-bottom: none; }

code { background: #F0EBE5; padding: 0.2rem 0.5rem; border-radius: 4px; font-size: 0.9rem; color: var(--accent); font-family: monospace; }

.cookie-table { border-radius: 8px; overflow: hidden; border: 1px solid #E8DDD5; margin: 1.5rem 0; }
.cookie-row { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 1rem; padding: 0.85rem 1.25rem; border-bottom: 1px solid #E8DDD5; font-size: 0.9rem; }
.cookie-row:last-child { border-bottom: none; }
.cookie-row.header { background: var(--dark); color: var(--gold); font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; }
.cookie-row:not(.header) { color: #3A3330; }
.cookie-row:not(.header):nth-child(even) { background: #FAF7F4; }

.footer { background: var(--dark); color: var(--off-white); padding: 4rem 2rem 2rem; border-top: 2px solid var(--gold); }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,169,97,0.2); }
.footer-section h4 { font-family: var(--font-display); color: var(--gold); margin-bottom: 1.5rem; font-size: 1.1rem; }
.footer-section p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-logo { height: 70px; width: 70px; object-fit: contain; display: block; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; text-align: center; color: var(--text-muted); font-size: 0.85rem; font-family: var(--font-sans); }

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .menu-toggle { display: flex; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(26, 22, 20, 0.98); padding: 1rem 2rem; gap: 1rem; }
    .nav-menu.active { display: flex; }
    .legal-hero h1 { font-size: 2rem; }
    .legal-block { padding: 1.75rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
}
