/* Static Pages CSS */
.static-page-container {
    background: var(--primary-black);
    min-height: 100vh;
    color: #ffffff;
}

.static-hero-section {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 4rem 0 3rem;
    border-bottom: 4px solid #dc2626;
    position: relative;
    overflow: hidden;
}

.static-hero-bg-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.static-hero-bg-element-1 {
    top: -100px;
    right: 10%;
}

.static-hero-bg-element-2 {
    bottom: -100px;
    left: 10%;
}

.static-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin: 0;
    background: linear-gradient(90deg, #ffffff 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.static-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.static-content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.static-content-card {
    background: var(--primary-black-light);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.static-content-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.static-content-card h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #dc2626;
    border-radius: 2px;
}

.static-content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
}

.static-content-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.static-content-card ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.static-content-card ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.static-content-card ul li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    font-size: 1.25rem;
}

.static-info-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.static-info-box p {
    margin: 0;
    color: #ffffff;
}

.static-info-box strong {
    color: #dc2626;
}

.static-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    margin-top: 2rem;
}

.static-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    color: #ffffff;
    text-decoration: none;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-info h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .static-hero-section {
        padding: 3rem 0 2rem;
    }
    
    .static-content-card {
        padding: 2rem 1.5rem;
    }
    
    .static-content-card h2 {
        font-size: 1.5rem;
    }
    
    .static-content-card p,
    .static-content-card ul li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .static-hero-title {
        font-size: 2rem;
    }
    
    .static-hero-subtitle {
        font-size: 1rem;
    }
    
    .static-content-section {
        padding: 2rem 1rem;
    }
    
    .static-content-card {
        padding: 1.5rem 1rem;
    }
}


