/* AsianCam.online - Custom CSS */
/* Theme: Red/Black elegant Asian-inspired */

:root {
    --primary: #c62828;
    --primary-dark: #8e0000;
    --primary-light: #ff5f52;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --gold: #d4af37;
    --text: #333;
    --text-light: #666;
    --bg-light: #fafafa;
}

* {
    box-sizing: border-box;
}

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

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

/* Header */
.site-header {
    background: var(--dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-light);
}

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

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.15rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-light);
    text-decoration: none;
}

.breadcrumb span {
    color: #999;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}

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

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

.button-outline {
    background: transparent;
    color: white;
    border-color: white;
}

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

.button-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

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

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

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

/* Region Cards */
.region-card {
    display: block;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

.region-info {
    padding: 1.25rem;
}

.region-info h3 {
    color: var(--dark);
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.region-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

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

.about-image {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Features */
.features {
    background: white;
}

.feature-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
    border-left: 3px solid var(--primary);
}

.feature-box h4 {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

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

/* Platforms */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.platform-link {
    display: block;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    border: 2px solid transparent;
}

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

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

.platform-link:not(.primary):hover {
    border-color: var(--primary);
}

.platform-name {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
}

.platform-link:not(.primary) .platform-name {
    color: var(--dark);
}

.platform-desc {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.platform-link:not(.primary) .platform-desc {
    color: var(--text-light);
}

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

.content-section h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

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

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

.cta-section h2 {
    color: white;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Main Content Layout */
.content-main {
    background: white;
}

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

/* Info Box */
.info-box {
    background: #fff3e0;
    border-left: 4px solid var(--gold);
    padding: 1.25rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    color: #bf360c;
    margin-bottom: 0.5rem;
}

.info-box p, .info-box ul {
    margin-bottom: 0;
}

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

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

.cta-box p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

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

.sidebar-box {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 8px;
    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 #eee;
}

.sidebar-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.sidebar-box a {
    color: var(--text);
    text-decoration: none;
}

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

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

.site-footer h5 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links.inline {
    display: flex;
    gap: 1.5rem;
}

.footer-links.inline li {
    margin: 0;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-legal {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .row {
        flex-direction: column;
    }

    .column {
        width: 100%;
        margin-bottom: 2rem;
    }

    .column-70, .column-60, .column-40, .column-30 {
        width: 100%;
    }
}
