/* Brazen Academy - Main Stylesheet */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #e5e7eb;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
.header {
    padding: 2rem 0;
    border-bottom: 1px solid #2d2d2d;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #9e1942;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #e5e7eb;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0;
    position: relative;
    background-image: url('/brazen-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 15, 0.7);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #9e1942, #8b1538);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e5e7eb;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9e1942, #8b1538);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.step p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 3rem 0;
    border-top: 1px solid #2d2d2d;
    text-align: center;
    color: #6b7280;
}

/* Status Info */
.status-info {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin: 2rem 0;
    text-align: center;
    font-size: 0.9rem;
}

.status-info strong {
    color: #22c55e;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes for Common Inline Styles */
.logo-img {
    height: 40px;
    width: auto;
}

.logo-img-large {
    height: 60px;
    width: auto;
}

.inline-form {
    display: inline;
}

.text-muted {
    color: #9ca3af;
}

.text-small {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.text-center {
    text-align: center;
}

.margin-top-1 {
    margin-top: 1rem;
}

.margin-top-2 {
    margin-top: 2rem;
}

.line-height-relaxed {
    line-height: 1.6;
    margin: 1rem 0;
}

.team-card-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
}

.team-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-card-meta {
    color: #9ca3af;
    font-size: 0.875rem;
}

.team-card-description {
    margin-top: 0.5rem;
}

.promotion-comment {
    margin-top: 1rem;
    color: #9ca3af;
    font-style: italic;
}

.external-links-header {
    color: #9e1942;
    margin: 1rem 0;
}

.modal-actions {
    margin-top: 2rem;
}

.footer-version {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.login-link {
    color: #9e1942;
}

.login-link:hover {
    color: #8b1538;
}