/*
CONTRACT HEADER
ID: CASINO:hitnspin:07-css2:2026-01-26
Version: v8
*/

/* From 01-seo-audit.md design system - NEUTRAL VERSION */

:root {
    --color-primary: #FF8533;
    --color-secondary: #FFB800;
    --color-background: #F8F9FA;
    --color-card: #FFFFFF;
    --color-text: #212529;
    --color-text-muted: #6C757D;
    --color-border: #DEE2E6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 42px; font-weight: 700; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

/* Utility Classes */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.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-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.m-4 { margin: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-text-muted); }
.bg-white { background: var(--color-card); }
.bg-gray { background: var(--color-background); }

.rounded { border-radius: 8px; }
.shadow { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--color-card);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    gap: 0;
}

.logo img {
    height: 50px;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-primary);
}

/* Header CTA (left, next to logo) - visible desktop + mobile */
.header-cta-mobile {
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-text);
}

/* Mobile Menu - FIXED */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-card);
    z-index: 9999;
    padding: 1rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-nav-link:hover {
    background: var(--color-background);
}

/* Mobile Offer Button - STICKY */
.mobile-offer-btn {
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: var(--color-card);
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 133, 51, 0.3);
}

.btn-primary:hover {
    background: #E65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 133, 51, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #FFFFFF;
}

/* CTA Button - Prominent for external offer links */
.btn-cta {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(255, 133, 51, 0.5);
    font-size: 18px;
    padding: 14px 40px;
    font-weight: 700;
}

.btn-cta:hover {
    background: #E65100;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 133, 51, 0.6);
}

/* Internal Link Button - Subtle for internal navigation */
.btn-internal {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    font-size: 15px;
    padding: 10px 24px;
    font-weight: 500;
    box-shadow: none;
}

.btn-internal:hover {
    background: var(--color-background);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: none;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--color-card);
    padding: 4rem 0;
    text-align: center;
}

.hero img {
    width: 100%;
    max-width: 1920px;
    height: auto;
    border-radius: 8px;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    margin-bottom: 2rem;
    text-align: center;
}

/* Cards */
.card {
    background: var(--color-card);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
    background: var(--color-text);
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #CCCCCC;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #CCCCCC;
    font-size: 14px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 1rem 0;
    font-size: 14px;
    color: var(--color-text-muted);
}

.breadcrumbs a {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* FAQ */
.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--color-card);
    border-radius: 8px;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.faq-answer {
    color: var(--color-text-muted);
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-card);
    border-radius: 8px;
    overflow: hidden;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.table th {
    background: var(--color-background);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        gap: 0.5rem;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .header-cta-mobile {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    
    .mobile-menu {
        display: flex;
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
    
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
