/*
CONTRACT HEADER
ID: CASINO:vulkan-spiele:07-css2:2026-01-23
Version: v8
*/

/* Design System - Site #2 Neutral Theme */
:root {
    --color-primary: #D80027;
    --color-secondary: #666666;
    --color-background: #F5F5F5;
    --color-card: #FFFFFF;
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-border: #E0E0E0;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

/* Utility Classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.m-4 { margin: 1rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-muted); }
.bg-white { background-color: var(--color-card); }
.bg-gray { background-color: var(--color-background); }
.rounded { border-radius: 8px; }
.shadow { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); }
.text-center { text-align: center; }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background-color: var(--color-card);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--color-text);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Hero */
.hero {
    padding: 3rem 0;
    background-color: var(--color-card);
}

.hero-content {
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--color-text);
}

.hero-text {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

.trust-badge {
    display: inline-block;
    background-color: var(--color-background);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 1rem 0;
}

/* Section */
.section {
    padding: 3rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.section-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Card */
.card {
    background-color: var(--color-card);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

/* Table */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.table th,
.table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.table th {
    background-color: var(--color-background);
    font-weight: 600;
}

.table tr:hover {
    background-color: var(--color-background);
}

/* List */
.list {
    margin: 1rem 0;
    padding-left: 2rem;
}

.list li {
    margin: 0.5rem 0;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: #B80020;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Header CTA - visible on desktop */
.header-cta {
    display: inline-block;
}

/* Link */
.link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.link:hover {
    text-decoration: underline;
}

/* Trust Items */
.trust-items { display: flex; gap: 1rem; flex-wrap: wrap; }
.trust-item { background-color: var(--color-background); padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.9rem; }

/* CTA Section */
.cta-section { background-color: var(--color-card); padding: 3rem 0; }
.cta-content { max-width: 800px; margin: 0 auto; }
.cta-text { font-size: 1.125rem; line-height: 1.8; }

/* Breadcrumbs */
.breadcrumbs { background-color: var(--color-background); padding: 1rem 0; }
.breadcrumbs-list { list-style: none; padding: 0; margin: 0; }
.breadcrumbs-list li { display: inline; }
.breadcrumbs-list a { color: var(--color-primary); text-decoration: none; }
.breadcrumbs-list a:hover { text-decoration: underline; }

/* FAQ */
.faq {
    margin: 2rem 0;
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--color-card);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.faq-answer {
    line-height: 1.8;
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
}

.footer-col { display: flex; flex-direction: column; }
.footer-title { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 600; margin-bottom: 1rem; }
.footer-nav { display: flex; flex-direction: column; }
.footer-link { color: white; text-decoration: none; margin: 0.25rem 0; transition: color 0.3s; }
.footer-link:hover { color: #FFD700; }
.footer-text { margin: 0.5rem 0; font-size: 0.9rem; }
.footer-list { list-style: none; padding: 0; }
.footer-list li { margin: 0.5rem 0; }
.footer-disclaimer { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.2); font-size: 0.9rem; }
.footer-copyright { text-align: center; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }

/* Responsive */
@media (max-width: 768px) {
    .header .container > .flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        min-height: 60px;
        padding: 0 1rem;
        gap: 0.5rem;
    }
    
    .logo {
        flex: 0 0 auto;
        z-index: 101;
        position: relative;
        max-width: 140px;
        align-self: center;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex: 0 0 auto;
        z-index: 102;
        position: relative;
        width: 44px;
        align-self: center;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav.menu-open {
        transform: translateX(0);
    }
    
    .nav .nav-link,
    .nav .btn {
        width: 100%;
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.1rem;
    }
    
    .nav .btn {
        display: none;
    }
    
    /* CTA button visible in header center on mobile - strictly centered and separated */
    .header-cta {
        display: inline-block !important;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        margin: 0;
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        font-weight: 600;
        white-space: nowrap;
        pointer-events: auto;
        border-radius: 6px;
        box-shadow: 0 3px 6px rgba(216, 0, 39, 0.3);
        min-height: 44px;
        line-height: 1.4;
        align-items: center;
        justify-content: center;
        width: auto;
        align-self: center;
    }
    
    /* Ensure logo and hamburger don't overlap with CTA */
    .logo,
    .mobile-menu-toggle {
        position: relative;
        z-index: 101;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
    
    .grid-2,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-title,
    .page-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}

@media (max-width: 480px) {
    .header .container > .flex {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        min-height: 60px;
        padding: 0 0.75rem;
        gap: 0.25rem;
    }
    
    .logo {
        flex: 0 0 auto;
        z-index: 101;
        position: relative;
        max-width: 100px;
        align-self: center;
    }
    
    .logo-img {
        height: 40px;
        width: auto;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex: 0 0 auto;
        z-index: 102;
        position: relative;
        width: 40px;
        min-width: 40px;
        align-self: center;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .nav.menu-open {
        transform: translateX(0);
    }
    
    .nav .nav-link,
    .nav .btn {
        width: 100%;
        padding: 1rem;
        text-align: left;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.1rem;
    }
    
    .nav .btn {
        display: none;
    }
    
    /* CTA button visible in header center on mobile - strictly centered and separated */
    .header-cta {
        display: inline-block !important;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        margin: 0;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 600;
        white-space: nowrap;
        pointer-events: auto;
        border-radius: 6px;
        box-shadow: 0 3px 6px rgba(216, 0, 39, 0.3);
        min-height: 40px;
        line-height: 1.4;
        align-items: center;
        justify-content: center;
        width: auto;
        align-self: center;
        max-width: calc(100% - 160px);
    }
    
    /* Ensure logo and hamburger don't overlap with CTA */
    .logo,
    .mobile-menu-toggle {
        position: relative;
        z-index: 101;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
    }
    
    .hero-title,
    .page-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
}
