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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px 60px;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #000;
}

.logo span {
    color: #cc0000;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #cc0000;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: #cc0000;
    background: #cc0000;
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: #333;
    transition: fill 0.3s;
}

.social-links a:hover svg {
    fill: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 300;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: #cc0000;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #cc0000;
}

.cta-button:hover {
    background: transparent;
    border: 2px solid white;
}

/* Sections */
section {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cc0000;
    margin-bottom: 30px;
}

.main-heading {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 40px;
    max-width: 900px;
}

.main-heading strong {
    font-weight: 700;
}

/* About Section */
.about {
    background: #f8f8f8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.about-image {
    height: 500px;
    background: url('images/about-image.jpg');
    background-size: cover;
    background-position: center;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #cc0000;
    border-radius: 50%;
}

.feature h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

/* Gallery */
.gallery {
    background: #000;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.gallery-item {
    height: 400px;
    background: #333;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(204, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay h4 {
    font-size: 24px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Zdjęcia galerii */
.gallery-item:nth-child(1) {
    background-image: url('images/gallery-1.jpg');
}

.gallery-item:nth-child(2) {
    background-image: url('images/gallery-2.jpg');
}

.gallery-item:nth-child(3) {
    background-image: url('images/gallery-3.jpg');
}

.gallery-item:nth-child(4) {
    background-image: url('images/gallery-4.jpg');
}

.gallery-item:nth-child(5) {
    background-image: url('images/gallery-5.jpg');
}

.gallery-item:nth-child(6) {
    background-image: url('images/gallery-6.jpg');
}

/* Contact */
.contact {
    text-align: center;
    background: #1a1a1a;
    color: white;
}

.contact-info {
    margin-top: 60px;
}

.contact-info a {
    color: #cc0000;
    text-decoration: none;
    font-size: 24px;
    letter-spacing: 2px;
    display: block;
    margin: 20px 0;
}

/* Footer */
footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 40px;
    font-size: 12px;
    letter-spacing: 2px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -300px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 30px 20px;
    z-index: 10000;
    transition: bottom 0.5s ease;
    border-top: 3px solid #cc0000;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border-radius: 3px;
}

.cookie-btn.accept {
    background: #cc0000;
    color: white;
}

.cookie-btn.accept:hover {
    background: #ff0000;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.reject:hover {
    background: white;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 20px 30px;
    }

    .nav-links {
        display: none;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: 4px;
    }

    section {
        padding: 80px 30px;
    }

    .about-content,
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-heading {
        font-size: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}