/* CumShow.live - Custom CSS */
/* Theme: Dark blue/cyan bold */

:root {
    --primary: #0077b6;
    --primary-dark: #023e8a;
    --primary-light: #00b4d8;
    --accent: #90e0ef;
    --dark: #0d1b2a;
    --darker: #051923;
    --text: #2b2d42;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    padding: 0.5rem 1rem;
}

.site-logo {
    color: white !important;
    font-size: 1.4rem;
    font-weight: 700;
}

.site-logo span {
    color: var(--primary-light);
}

.top-bar .menu a {
    color: #adb5bd;
    font-weight: 500;
}

.top-bar .menu a:hover,
.top-bar .menu .is-active a {
    color: var(--primary-light);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
}

.hero-section h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    color: #caf0f8;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.hero-section .label {
    margin-bottom: 1rem;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1b3a4b 100%);
    color: white;
    padding: 3rem 0;
}

.page-hero h1 {
    color: white;
    font-size: 2.5rem;
}

.breadcrumbs {
    background: none;
    padding: 0;
    margin-bottom: 1rem;
}

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

.breadcrumbs li:not(:last-child)::after {
    color: #6c757d;
}

/* Buttons */
.button {
    border-radius: 6px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

.button.primary, .button.hollow.primary {
    background: var(--primary);
    border-color: var(--primary);
}

.button.primary:hover {
    background: var(--primary-dark);
}

.button.hollow {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.button.hollow:hover {
    background: white;
    color: var(--dark);
}

.button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Categories Section */
.categories-section {
    background: var(--bg-light);
}

.card-link {
    display: block;
    text-decoration: none;
}

.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.card img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.card-section h3 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-section p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* Info Section */
.info-section {
    background: white;
}

.info-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Features */
.features-section {
    background: var(--dark);
    color: white;
}

.features-section .section-title {
    color: white;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    border-left: 3px solid var(--primary-light);
}

.feature-card h4 {
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #adb5bd;
    margin: 0;
}

/* Platforms */
.platforms-section {
    background: var(--bg-light);
}

.platform-btn {
    display: block;
    padding: 1.25rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.platform-btn.primary {
    background: var(--primary);
    color: white;
}

.platform-btn.primary:hover {
    background: var(--primary-dark);
    color: white;
}

.platform-btn.secondary {
    background: white;
    color: var(--dark);
    border: 2px solid #dee2e6;
}

.platform-btn.secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Content Section */
.content-section {
    background: white;
}

.content-section h2 {
    color: var(--dark);
}

.content-section h3 {
    color: var(--primary-dark);
    margin-top: 2rem;
}

.main-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 2rem;
}

/* Callouts */
.callout {
    border-radius: 8px;
    border-left: 4px solid;
}

.callout.primary {
    background: #e3f2fd;
    border-color: var(--primary);
}

.callout.warning {
    background: #fff3cd;
    border-color: #ffc107;
}

.callout h4 {
    color: var(--primary-dark);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.cta-box .button.hollow {
    border-color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.cta-section h2 {
    color: white;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.sidebar-box h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
}

.sidebar-box .menu a {
    color: var(--text);
    padding: 0.5rem 0;
}

.sidebar-box .menu a:hover {
    color: var(--primary);
}

.sidebar-box .no-bullet {
    margin: 0;
}

.sidebar-box .no-bullet li {
    margin-bottom: 0.5rem;
}

.sidebar-box .no-bullet a {
    color: var(--text);
}

.sidebar-box .no-bullet a:hover {
    color: var(--primary);
}

/* Footer */
.site-footer {
    background: var(--darker);
    color: #adb5bd;
    padding: 3rem 0 2rem;
}

.site-footer h5 {
    color: white;
}

.site-footer .menu a {
    color: #adb5bd;
}

.site-footer .menu a:hover {
    color: var(--primary-light);
}

.footer-legal {
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 639px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .top-bar-right {
        display: none;
    }
}
