/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #1A1A1A;
    color: #CCCCCC;
    line-height: 1.5;
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background-color: #1A1A1A;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navigation {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
    font-weight: bold;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    height: 80vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-image {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) blur(0.1px) grayscale(1);
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #FFFFFF;
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #EEEEFF;
    text-transform: normal;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 40px;
}

/* About Section */
.about {
    background-color: #1A1A1A;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #CCCCCC;
}

/* Products Section */
.products {
    background-color: #333333;
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px;
    background-color: #1A1A1A;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product-title {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.product-description {
    color: #CCCCCC;
    margin-bottom: 25px;
    line-height: 1.6;
}

.price-button {
    background-color: #FFFFFF;
    color: #1A1A1A;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-button:hover {
    background-color: #CCCCCC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Press Section */
.press {
    background-color: #1A1A1A;
}

.press-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px;
    background-color: #333333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.press-logo img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.press-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s ease;
}

.press-link:hover {
    color: #CCCCCC;
    text-decoration: underline;
}

.press-excerpt {
    color: #CCCCCC;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background-color: #333333;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #CCCCCC;
}

.contact-form {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.submit-button {
    background-color: #FFFFFF;
    color: #1A1A1A;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #CCCCCC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background-color: #333333;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #4A4A4A;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #CCCCCC;
    text-decoration: underline;
}

.footer-text {
    color: #CCCCCC;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .navigation {
        gap: 20px;
        margin-top: 10px;
    }
    
    .hero {
        margin-top: 120px;
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .product-item,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .press-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .navigation {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
} 