/* =========================================
 *  ASKANIA TRAVEL 2026 - QUIET LUXURY CSS
 *  Optimiert für 1080p bis 5K Displays
 *  ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --color-green: #7ed957;
    --color-blue: #0f46ae;
    --color-bg: #141414;
    --color-red: #c43f33;
    --color-indigo: #5863f8;
    --color-gold: #d4af37;

    --bg-dark: #141414;
    --bg-section: #1c1c1e;
    --text-main: #f5f5f7;
    --text-muted: #8a8a8d;
    --accent: #7ed957;
    --accent-soft: rgba(126, 217, 87, 0.15);
    --border: rgba(255, 255, 255, 0.08);

    --font-display: 'Libre Franklin', sans-serif;
    --font-sans: 'Montserrat', sans-serif;
    --font-accent: 'Josefin Sans', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    /* ADAPTIVE BASE FONT SIZE für große Bildschirme */
    font-size: clamp(16px, 0.9vw, 22px);
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ===== BACKGROUNDS & OVERLAYS ===== */
.video-bg,
.splash-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background: var(--bg-dark);
}

.video-bg img,
.video-bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* ===== HEADER / NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 4rem;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header.scrolled {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--border);
}

.logo img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav ul li a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-sans);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent);
}

.lang-switch {
    display: flex;
    gap: 1rem;
    border-left: 1px solid var(--border);
    padding-left: 2rem;
}

.lang-switch a {
    font-size: 0.8rem;
    padding: 0;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 24px;
    height: 1px;
    background: var(--text-main);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== TYPOGRAPHY - OPTIMIERT FÜR GROSSE SCREENS ===== */
.eyebrow {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

h1,
h2 {
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--text-muted);
}

h1 {
    /* Größere maximale Größe für 4K/5K */
    font-size: clamp(2.5rem, 5vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 4.5rem);
    margin-bottom: 1.5rem;
}

h2 em {
    font-style: italic;
    color: var(--text-main);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.link-elegant {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--accent);
    transition: var(--transition);
    font-weight: 500;
    font-family: var(--font-sans);
    display: inline-block;
}

.link-elegant:hover {
    color: var(--accent);
    border-bottom-color: var(--text-main);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
    z-index: 1;
    background: transparent;
}

.hero-content {
    max-width: 650px;
    margin-right: auto;
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 6rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    line-height: 1.8;
}

.hero-links {
    margin-top: 2.5rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* ===== LIVE TEASER ===== */
.live-teaser {
    padding: 6rem 8vw;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
    background: transparent;
}

.live-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.live-teaser h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.live-teaser p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== MAGAZINE SECTION ===== */
.magazine-section {
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
    padding: 8rem 8vw;
    border-top: 1px solid var(--border);
}

.mag-header {
    margin-bottom: 5rem;
    text-align: center;
}

.mag-header h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    margin-bottom: 1rem;
}

.mag-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.mag-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-template-rows: auto auto;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto 5rem;
}

.mag-article {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mag-article:hover {
    transform: translateY(-5px);
}

.mag-article:hover .mag-img {
    filter: brightness(1.1);
}

.mag-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    filter: brightness(0.85);
    transition: var(--transition);
}

.mag-article.featured .mag-img {
    aspect-ratio: 4/5;
    height: 100%;
}

.mag-article.featured {
    grid-row: span 2;
}

.mag-meta {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

.mag-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.mag-article.featured .mag-title {
    font-size: 2.4rem;
}

.mag-excerpt {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.mag-footer {
    text-align: center;
    margin-top: 4rem;
}

.mag-footer a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-main);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.mag-footer a:hover {
    color: var(--accent);
}

/* ===== ZUGANG GRID ===== */
.zugang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.zugang-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem;
    background: var(--bg-section);
    transition: var(--transition);
}

.zugang-card:hover {
    border-color: var(--accent);
}

.zugang-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.zugang-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.zugang-card li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
    position: relative;
}

.zugang-card li::before {
    content: "—";
    color: var(--accent);
    position: absolute;
    left: 0;
}

/* ===== GLASS FRAME ===== */
.glass-frame {
    background: rgba(28, 28, 30, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.notice-box {
    border-left: 3px solid var(--color-red);
    padding: 1rem 1.5rem;
    background: rgba(196, 63, 51, 0.1);
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.notice-box strong {
    color: var(--color-red);
    display: block;
    margin-bottom: 0.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 3rem 4rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* ===== LOADING STATE ===== */
.loading {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-family: var(--font-accent);
    letter-spacing: 2px;
    grid-column: 1 / -1;
}

/* ===== MODALE ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: #141414;
    border: 1px solid var(--border);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-box h2 {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 1.8rem;
}

.modal-box h3 {
    font-size: 1rem;
    color: var(--accent);
    margin: 1.5rem 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-box p,
.modal-box li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.modal-box a {
    color: var(--accent);
    text-decoration: underline;
}

/* ===== SERVICES / PRICING ===== */
.services-hero {
    padding: 12rem 8vw 6rem;
    text-align: center;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border);
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.services-hero h1 em {
    color: var(--text-main);
    font-style: italic;
    font-weight: 400;
}

.services-hero p {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.7;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    border-left: 3px solid var(--accent);
    padding: 1.5rem 2rem;
    background: var(--accent-soft);
    border-radius: 0 12px 12px 0;
    text-align: left;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-section {
    padding: 6rem 8vw;
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(126, 217, 87, 0.1);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.pricing-subtitle {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.price {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 40px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.pricing-features li::before {
    content: "✓";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-card {
    display: block;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-card:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.pricing-card.featured .btn-card {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.pricing-card.featured .btn-card:hover {
    background: var(--text-main);
    border-color: var(--text-main);
}

.special-section {
    padding: 4rem 8vw;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.special-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
}

.special-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.special-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.boutique-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.boutique-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

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

.boutique-list h4 {
    font-family: var(--font-display);
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.price-tag {
    color: var(--accent);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.boutique-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.legend-section {
    padding: 4rem 8vw;
    background: var(--bg-dark);
    text-align: center;
}

.legend-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.legend-box h3 {
    font-family: var(--font-display);
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-align: center;
}

.legend-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legend-box strong {
    color: var(--accent);
}

/* ===== ARTICLE PAGES ===== */
.article-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 80px;
}

.article-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.article-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 4rem 8vw;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.6) 50%, transparent 100%);
}

.article-hero-overlay .eyebrow {
    margin-bottom: 1rem;
}

.article-hero-overlay h1 {
    font-size: clamp(2rem, 4vw, 5rem);
    color: var(--text-main);
    max-width: 900px;
    line-height: 1.2;
}

.article-hero-overlay h1 em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}

.breadcrumbs {
    padding: 1.5rem 8vw;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    margin: 0 0.5rem;
    color: var(--accent);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.article-meta strong {
    color: var(--accent);
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: none;
    letter-spacing: 0;
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: none;
    letter-spacing: 0;
    margin: 2rem 0 1rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.article-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.article-content ul li {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.article-content ul li::before {
    content: "—";
    color: var(--accent);
    position: absolute;
    left: 0;
}

.article-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.article-content a:hover {
    color: var(--text-main);
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-section);
    border-radius: 8px;
    overflow: hidden;
}

.article-table th {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem;
    text-align: left;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.article-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1rem;
}

.article-table tr:last-child td {
    border-bottom: none;
}

.article-table tr:hover td {
    background: rgba(126, 217, 87, 0.05);
}

.article-cta {
    background: var(--bg-section);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.article-cta h3 {
    color: var(--text-main);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.author-box {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--bg-section);
    border-radius: 12px;
    margin-top: 4rem;
    border: 1px solid var(--border);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.author-info h4 {
    font-family: var(--font-display);
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.author-info p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-muted);
}

.related-articles {
    padding: 4rem 8vw;
    border-top: 1px solid var(--border);
    background: var(--bg-section);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.related-card {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
    filter: brightness(0.85);
    transition: var(--transition);
}

.related-card:hover img {
    filter: brightness(1.1);
}

.related-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-main);
    line-height: 1.3;
}

.giveaway-box {
    background: linear-gradient(135deg, var(--accent-soft) 0%, var(--bg-section) 100%);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
}

.giveaway-box h3 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ===== ACCESSIBILITY & PRINT ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    header,
    footer,
    .modal-overlay,
    .hero-links,
    .hamburger,
    .cookie-banner {
        display: none !important;
    }
    body {
        background: #fff;
        color: #000;
    }
    .mag-article,
    .pricing-card,
    .zugang-card,
    .special-card {
        break-inside: avoid;
        border: 1px solid #ccc;
    }
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ===== GROSSE BILDSCHIRME (2000px+) ===== */
@media (min-width: 2000px) {
    html {
        font-size: 20px;
    }

    .hero {
        padding: 0 8rem;
    }

    .hero-content {
        max-width: 900px;
    }

    .live-teaser-grid,
    .mag-grid,
    .zugang-grid,
    .special-grid {
        max-width: 1600px;
    }

    .mag-header p {
        max-width: 800px;
        font-size: 1.3rem;
    }

    .hero p {
        max-width: 700px;
        font-size: 1.3rem;
    }
}

/* ===== 4K/5K BILDSCHIRME (2500px+) ===== */
@media (min-width: 2500px) {
    html {
        font-size: 22px;
    }

    header {
        padding: 2rem 6rem;
    }

    .hero {
        padding: 0 10rem;
    }

    .live-teaser,
    .magazine-section {
        padding: 10rem 10vw;
    }

    .mag-grid {
        max-width: 1800px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    html {
        font-size: 16px;
    }

    header,
    header.scrolled {
        padding: 1rem 2rem;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(20, 20, 20, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 99;
    }

    nav ul.open {
        transform: translateX(0);
    }

    .lang-switch {
        border-left: none;
        padding-left: 0;
        gap: 2rem;
    }

    .hero,
    .live-teaser,
    .magazine-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .live-teaser-grid,
    .mag-grid,
    .zugang-grid,
    .special-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .mag-article.featured {
        grid-row: auto;
    }

    .mag-article.featured .mag-img {
        aspect-ratio: 16/10;
        height: auto;
    }

    .modal-box,
    .special-card {
        padding: 2rem;
    }

    .article-hero {
        height: 50vh;
        min-height: 400px;
    }

    .article-hero-overlay {
        padding: 2rem;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .article-meta {
        gap: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .services-hero,
    .pricing-section,
    .legend-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .article-table {
        font-size: 0.85rem;
    }

    .article-table th,
    .article-table td {
        padding: 0.7rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .mag-title {
        font-size: 1.3rem;
    }

    .mag-article.featured .mag-title {
        font-size: 1.6rem;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-links {
        gap: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }
}
