/* ===== RESET I BAZOWE STYLE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
}

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

/* ===== NAGŁÓWEK ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: white;
    border-radius: 12px;
    margin: 20px 0;
    padding: 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 150px;
    height: 150px;
    border-radius: 8px;
}

.logo-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.logo-text p {
    color: #6b7280;
    font-size: 0.9rem;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background: #f3f4f6;
    color: #1e40af;
}

.nav-link.active {
    background: #1e40af;
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #0a2463 0%, #1e40af 100%);
    color: white;
    border-radius: 16px;
    padding: 50px;
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.85;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== SEKCJA KONTAKTOWA ===== */
.contact-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e7ff;
}

.icon-large {
    font-size: 2rem;
    color: #1e40af;
}

.contact-header h3 {
    font-family: 'Montserrat', sans-serif;
    color: #1e293b;
    font-size: 1.4rem;
}

.contact-body p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.small-text {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

/* ===== MAPA ===== */
.map-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    color: #1e40af;
    font-size: 2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.section-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-info {
    background: #f8fafc;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #e2e8f0;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

/* ===== PRZYCISKI SOCIAL ===== */
.social-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 50px;
    margin: 40px 0;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 220px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.social-btn i {
    font-size: 1.4rem;
}

.whatsapp { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.discord { background: linear-gradient(135deg, #5865F2 0%, #404EED 100%); }
.facebook { background: linear-gradient(135deg, #1877F2 0%, #0A5BC4 100%); }
.email { background: linear-gradient(135deg, #EA4335 0%, #D14836 100%); }

/* ===== DODATKOWE INFORMACJE ===== */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.info-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* ===== STOPKA ===== */
.footer {
    background: #1e293b;
    color: white;
    border-radius: 16px;
    margin-top: 60px;
    overflow: hidden;
}

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

.footer-logo {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-logo img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 992px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 20px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section,
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .social-btn {
        min-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .map-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.6rem;
    }
    
    .nav {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .social-buttons {
        gap: 15px;
    }
}