/* FUNDACJA MOTORSPORT - STYLE.CSS */
/* Reset i podstawy */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0a0a;
}

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

/* HEADER */
.header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid #dc2626;
}

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

.logo h1 {
    color: #dc2626;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo .tagline {
    color: #fff;
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #333;
}

.lang-link {
    color: #ccc !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 5px 8px;
    border-radius: 3px;
}

.lang-link:hover {
    color: #fff !important;
}

.lang-link.active {
    color: #dc2626 !important;
    background: rgba(220, 38, 38, 0.1);
}

.lang-separator {
    color: #666;
    font-size: 14px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav a:hover {
    color: #dc2626;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #000 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.btn-primary:hover {
    background: #991b1b;
    border-color: #991b1b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.btn-outline:hover {
    background: #dc2626;
    color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: #dc2626;
}

.stat .label {
    display: block;
    color: #ccc;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* MISSION SECTION */
.mission {
    background: #fff;
    padding: 80px 0;
}

.mission h2 {
    text-align: center;
    font-size: 36px;
    color: #000;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: transform 0.3s;
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-item .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mission-item h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}

.mission-item p {
    color: #666;
    line-height: 1.6;
}

/* ACTIONS SECTION */
.actions {
    background: #1a1a1a;
    padding: 80px 0;
}

.actions h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.action-card {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
    transition: all 0.3s;
}

.action-card:hover {
    background: #333;
    transform: translateX(5px);
}

.action-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.action-card p {
    color: #ccc;
    line-height: 1.6;
}

/* SUPPORT SECTION */
.support {
    background: #fff;
    padding: 80px 0;
}

.support h2 {
    text-align: center;
    font-size: 36px;
    color: #000;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.support-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f8f8;
    border-radius: 10px;
    border-top: 4px solid #dc2626;
}

.support-item h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}

.support-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* CONTACT SECTION */
.contact {
    background: #000;
    padding: 80px 0;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    color: #dc2626;
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.6;
}

.contact-item strong {
    color: #fff;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #2a2a2a;
    color: #fff;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

/* FOOTER */
.footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #dc2626;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission h2,
    .actions h2,
    .support h2,
    .contact h2 {
        font-size: 28px;
    }
}