@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Montserrat:wght@400&display=swap');

/* Changesmugglers Brand Identity Styles */
:root {
    --bg-color: #faf9f6;       /* Alabaster / Off-White */
    --text-color: #2b2b2b;     /* Soft Charcoal */
    --accent-gold: #a8874a;    /* Smuggler Gold from SVG */
    --text-muted: #6e6e6e;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    font-weight: 400;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.legal-container {
    max-width: 700px;
    width: 100%;
}

/* Überschriften im edlen Serif-Look der Brand */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(184, 149, 67, 0.3);
    padding-bottom: 10px;
    line-height: 1.3;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 45px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.05rem;
    color: var(--accent-gold);
    margin-top: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 18px;
    text-align: justify;
}

ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* Subtile, animierte Links */
a {
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

a:hover {
    border-bottom: 1px solid var(--accent-gold);
}

/* Zurück-Button */
.back-link {
    display: inline-block;
    margin-bottom: 40px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--text-color);
}

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}