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

:root {
    --primary-focus: #1a4d7a;
    --secondary-focus: #2c6ba3;
    --accent-gold: #d4af37;
    --dark-bg: #0d1b2a;
    --light-bg: #f8f9fa;
    --text-primary: #1b263b;
    --text-secondary: #415a77;
    --spotlight-glow: rgba(212, 175, 55, 0.3);
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.primary-header {
    background: linear-gradient(135deg, var(--primary-focus), var(--secondary-focus));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    border-radius: 50%;
    border: 3px solid var(--accent-gold);
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--accent-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.hero-focus {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, rgba(13, 27, 42, 0.9), rgba(44, 107, 163, 0.8)), url('images/1.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--spotlight-glow), transparent 70%);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-accent-line {
    width: 120px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.main-content {
    padding: 4rem 0;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-central {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-main {
    font-size: 2.8rem;
    color: var(--primary-focus);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.focus-zones-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.focus-zone-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--accent-gold);
}

.focus-zone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.zone-spotlight {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--spotlight-glow), transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.focus-zone-card:hover .zone-spotlight {
    opacity: 1;
}

.zone-content {
    position: relative;
    z-index: 2;
}

.zone-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-focus), var(--secondary-focus));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.zone-title {
    font-size: 1.6rem;
    color: var(--primary-focus);
    margin-bottom: 1rem;
    font-weight: 700;
}

.zone-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.zone-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.zone-highlights li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.zone-highlights i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.zone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--primary-focus);
    color: white;
    text-decoration: none;
    padding: 0.9rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.zone-cta:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
    transform: translateX(5px);
}

.daily-spotlight {
    background: linear-gradient(135deg, #e8f1f8, #f0f4f8);
    padding: 5rem 0;
    margin: 4rem 0;
}

.section-header-accent {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-secondary {
    font-size: 2.5rem;
    color: var(--primary-focus);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.spotlight-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.spotlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.spotlight-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.spotlight-content {
    padding: 1.8rem;
}

.spotlight-title {
    font-size: 1.3rem;
    color: var(--primary-focus);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.spotlight-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.spotlight-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.spotlight-link:hover {
    gap: 0.8rem;
}

.focus-interpretation {
    padding: 5rem 0;
}

.interpretation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interpretation-visual {
    position: relative;
}

.interpretation-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.focus-overlay-beam {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, var(--spotlight-glow), transparent);
    border-radius: 16px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.interpretation-visual:hover .focus-overlay-beam {
    opacity: 1;
}

.content-title {
    font-size: 2.3rem;
    color: var(--primary-focus);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-text {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.interpretation-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.feature-item span {
    font-weight: 600;
    color: var(--text-primary);
}

.austria-focus-highlight {
    background: var(--dark-bg);
    color: white;
    padding: 5rem 0;
    margin-top: 4rem;
}

.austria-header {
    text-align: center;
    margin-bottom: 4rem;
}

.austria-header .section-title-main {
    color: white;
}

.austria-header .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.austria-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.region-focus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.region-focus-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.region-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.region-focus-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.region-focus-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.site-footer {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.footer-contact-info p {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-info i {
    color: var(--accent-gold);
    margin-top: 0.2rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-disclaimer {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
    border-radius: 8px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-text h3 {
    color: var(--primary-focus);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cookie-text p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.cookie-text a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.cookie-accept {
    background: var(--primary-focus);
    color: white;
}

.cookie-accept:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
}

.cookie-decline {
    background: #6c757d;
    color: white;
}

.cookie-decline:hover {
    background: #5a6268;
}

.cookie-customize {
    background: transparent;
    color: var(--primary-focus);
    border: 2px solid var(--primary-focus);
}

.cookie-customize:hover {
    background: var(--primary-focus);
    color: white;
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--primary-focus);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .focus-zones-layout {
        grid-template-columns: 1fr;
    }

    .interpretation-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-title {
        font-size: 1.3rem;
    }

    .hero-focus {
        height: 400px;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .focus-zones-layout,
    .spotlight-grid,
    .austria-regions-grid {
        grid-template-columns: 1fr;
    }
}
