/* Chess Elegante - Homepage Specific Styles */

/* Hero Section - Editorial Style */
.hero {
    margin-top: 100px;
    padding: 100px 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-text .subtitle {
    font-size: 18px;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 300;
    color: #666;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.hero-board {
    position: relative;
}

.chess-board-preview {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 1px solid #e8e8e8;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 1fr);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.square {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.square.light {
    background: #ffffff;
}

.square.dark {
    background: #1a1a1a;
}

/* Featured Section - Magazine Layout */
.feature-icon {
    font-size: 40px;
}

.featured {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-number {
    font-size: 48px;
    font-weight: 300;
    color: #e8e8e8;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
}

/* Game Analysis Section - Editorial Column */
.analysis {
    background: #fafafa;
    padding: 120px 60px;
}

.analysis-container {
    max-width: 900px;
    margin: 0 auto;
}

.analysis h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    text-align: center;
}

.move-notation {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    background: white;
    padding: 40px;
    border: 1px solid #e8e8e8;
    margin: 40px 0;
    line-height: 2;
}

.analysis-text {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    font-weight: 300;
}

/* Community Section  */
.community{
    padding: 120px 60px;
}

.community .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.community-text {
    margin-bottom: 30px;
}

.community h2 {
    margin-bottom: 30px;
    font-size: 20px;
}

/* Stats Section - Minimal Data Display */
.stats {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    border-left: 1px solid #e8e8e8;
    padding: 0 20px;
}

.stat-item:first-child {
    border-left: none;
}

.stat-number {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', sans-serif;
    color: #666;
    font-weight: 300;
}

/* Newsletter - Vogue Style Subscription */
.newsletter {
    background: #1a1a1a;
    color: white;
    padding: 100px 60px;
    text-align: center;
}

.newsletter h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

.newsletter p {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 16px;
    margin-bottom: 40px;
    color: #ccc;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 30px;
    border: 1px solid #444;
    background: transparent;
    color: white;
    font-size: 14px;
    font-family: 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    padding: 18px 50px;
    background: white;
    color: #1a1a1a;
    border: none;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', sans-serif;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-text h1 {
        font-size: 48px;
    }
}
