/* ============================================
   AMBER Stuttgart – Shared Unterseiten Styles
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --amber-gold: #D4A373;
    --amber-dark: #1a1a1a;
    --amber-light: #f5f5f5;
    --amber-accent: #C4841D;
    --amber-grey: #2a2a2a;
    --amber-border: rgba(212, 163, 115, 0.2);
    --amber-border-hover: var(--amber-gold);
    --transition: all 0.3s ease;
    --radius: 20px;
    --radius-sm: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--amber-dark);
    color: var(--amber-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Navigation → see nav-shared.css ───────── */

/* ── Hero ────────────────────────────────────── */
.hero {
    height: 52vh;
    min-height: 320px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url('img/location.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 68px;
    text-align: center;
    padding: 0 5%;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--amber-dark));
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--amber-gold), var(--amber-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.1;
}

.hero-subtitle {
    margin-top: 0.75rem;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    color: var(--amber-light);
    opacity: 0.8;
    letter-spacing: 1px;
    font-weight: 400;
}

/* ── Content ─────────────────────────────────── */
.content-wrapper {
    max-width: 860px;
    margin: 0 auto;
    padding: 3.5rem 5% 5rem;
}

.motto-badge {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--amber-border);
}

.motto-badge h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--amber-gold);
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.motto-badge p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    opacity: 0.75;
    letter-spacing: 0.5px;
}

.content-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--amber-border);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s ease;
}

.content-box:hover {
    border-color: rgba(212, 163, 115, 0.35);
}

.content-box h3 {
    color: var(--amber-gold);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.content-box p {
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    opacity: 0.88;
    line-height: 1.75;
}

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

.info-highlight {
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(212, 163, 115, 0.08);
    border: 1px solid rgba(212, 163, 115, 0.2);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-highlight strong {
    color: var(--amber-gold);
    display: block;
    margin-bottom: 0.3rem;
}

.info-highlight a {
    color: var(--amber-gold);
    font-weight: 600;
    text-decoration: none;
}

.info-highlight a:hover {
    text-decoration: underline;
}

/* ── Bullet List ─────────────────────────────── */
.bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.bullet-list li {
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(212, 163, 115, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.bullet-list li:last-child {
    border-bottom: none;
}

/* ── CTA Section ─────────────────────────────── */
.cta-section {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, var(--amber-grey), var(--amber-dark));
    border: 1px solid var(--amber-border);
    border-radius: var(--radius);
    margin: 2rem 0;
}

.cta-section h3 {
    color: var(--amber-gold);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.cta-section > p {
    margin-bottom: 1.75rem;
    opacity: 0.85;
    font-size: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-hint {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 0.85rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber-gold), var(--amber-accent));
    color: var(--amber-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 163, 115, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--amber-gold);
    border: 2px solid var(--amber-gold);
}

.btn-secondary:hover {
    background: var(--amber-gold);
    color: var(--amber-dark);
}

/* ── Day Navigation ──────────────────────────── */
.day-nav-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--amber-border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.day-nav-box h3 {
    color: var(--amber-gold);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.8;
}

.day-navigation {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    flex-wrap: wrap;
}

.day-link {
    padding: 0.55rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--amber-border);
    border-radius: 50px;
    color: var(--amber-light);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.88rem;
    white-space: nowrap;
}

.day-link:hover {
    background: rgba(212, 163, 115, 0.12);
    border-color: var(--amber-gold);
    color: var(--amber-gold);
}

.day-link.active {
    background: var(--amber-gold);
    color: var(--amber-dark);
    border-color: var(--amber-gold);
    font-weight: 700;
}

/* ── Footer ──────────────────────────────────── */
footer {
    background: var(--amber-dark);
    padding: 2rem 5%;
    border-top: 1px solid var(--amber-border);
}

.footer-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 36px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-logo img:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--amber-light);
    text-decoration: none;
    opacity: 0.55;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--amber-gold);
}

.footer-copyright {
    color: var(--amber-light);
    opacity: 0.35;
    font-size: 0.8rem;
    white-space: nowrap;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 4%;
    }

    .logo img {
        height: 42px;
    }

    .back-btn, .reserve-btn {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }

    .content-wrapper {
        padding: 2.5rem 4% 4rem;
    }

    .content-box {
        padding: 1.75rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 260px;
        margin-top: 70px;
    }

    .hero h1 {
        letter-spacing: 2px;
    }

    .content-wrapper {
        padding: 2rem 4% 3.5rem;
    }

    .content-box {
        padding: 1.25rem;
        border-radius: var(--radius-sm);
    }

    .cta-section {
        padding: 1.75rem 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .day-link {
        padding: 0.5rem 0.9rem;
        font-size: 0.82rem;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-logo img {
        height: 30px;
    }
}

@media (max-width: 375px) {
    .nav-actions {
        gap: 0.4rem;
    }

    .reserve-btn {
        display: none;
    }

    .motto-badge h2 {
        font-size: 1.4rem;
    }

    .content-box h3 {
        font-size: 1.2rem;
    }
}
