/* Website for China Page Styles */

/* Hero Section - extends base hero styles */
.hero-china {
    position: relative;
    background-color: var(--bg-primary);
}

/* Design & Development Section */
.design-dev {
    padding: 2rem;
    background-color: var(--bg-primary);
}

.design-dev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.design-dev-text h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.design-dev-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.design-dev-visual {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.design-dev-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.design-dev-visual:hover img {
    transform: scale(1.05);
}

/* ICP Licensing Section */
.icp-licensing {
    padding: 2rem;
    background-color: var(--bg-secondary);
}

.icp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.icp-content {
    max-width: 600px;
    margin: 0 auto;
}

.icp-content h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.icp-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* Hosting & Speed Section */
.hosting-speed {
    padding: 2rem;
    background-color: var(--bg-primary);
}

.hosting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hosting-text h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.hosting-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

.hosting-visual {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.hosting-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hosting-visual:hover img {
    transform: scale(1.05);
}

/* Maintenance Section */
.maintenance {
    padding: 2rem;
    background-color: var(--color-dark);
}

.maintenance-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.maintenance-content {
    max-width: 600px;
    margin: 0 auto;
}

.maintenance-content h2 {
    color: var(--color-teal);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.maintenance-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .design-dev-grid,
    .hosting-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .design-dev-text h2,
    .icp-content h2,
    .hosting-text h2,
    .maintenance-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .design-dev-text h2,
    .icp-content h2,
    .hosting-text h2,
    .maintenance-content h2 {
        font-size: 1.75rem;
    }
} 