/* ===================================
   Champion Website - Main Styles
   Clean, readable design for wisdom content
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

/* Navigation */
header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #d32f2f;
}

nav a.active {
    color: #d32f2f;
    border-bottom: 2px solid #d32f2f;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3em;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.hero .subtitle {
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Main Content Container */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Styles */
.section {
    margin-bottom: 80px;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.section p {
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 30px;
    transition: all 0.3s ease;
}

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

.card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.card p {
    color: #666;
    font-size: 1em;
}

/* Call to Action */
.cta {
    background: #d32f2f;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: 80px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 1.1em;
    }
    
    .section h2 {
        font-size: 2em;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
