/*
Theme Name: Coming Soon Platform
Description: Minimalist black and white coming soon theme for WordPress themes and plugins platform
Version: 1.0
Author: Your Name
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 20px 0;
    background: #000;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 40px;
    width: auto;
}

.site-logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

/* Main Content */
.site-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 600px;
}

.coming-soon-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 30px;
}

.coming-soon-description {
    font-size: 1rem;
    color: #999;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
.site-footer {
    background: #111;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #fff;
}

/* Content Pages Styles */
.content-page {
    flex: 1;
    padding: 60px 0;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-article {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 40px;
}

.page-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.page-body {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.8;
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6 {
    color: #fff;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.page-body h2 { font-size: 1.8rem; }
.page-body h3 { font-size: 1.5rem; }
.page-body h4 { font-size: 1.3rem; }

.page-body p {
    margin-bottom: 20px;
}

.page-body ul,
.page-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-body li {
    margin-bottom: 8px;
    color: #ccc;
}

.page-body a {
    color: #fff;
    text-decoration: underline;
}

.page-body a:hover {
    color: #ccc;
}

.no-content {
    text-align: center;
    padding: 60px 20px;
}

.no-content h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.no-content p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .coming-soon-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .footer-menu {
        flex-direction: column;
        gap: 15px;
    }
}