/* Stylizacja strony portfolio */
.content {
    min-height: 100vh;
    padding: 20px 15px;
    background-color: #000;
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.portfolio-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #b3b15d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.portfolio-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
    opacity: 0.8;
}

.portfolio-category {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #b3b15d;
    box-shadow: 0 5px 15px rgba(179, 177, 93, 0.1);
}

.category-title {
    font-size: 1.8rem;
    color: #b3b15d;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid #b3b15d;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 3/4;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(179, 177, 93, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Sekcja Call to Action */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    border: 1px solid #b3b15d;
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    color: #b3b15d;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #b3b15d 0%, #998238 100%);
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #998238 0%, #b3b15d 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 177, 93, 0.3);
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-category {
    animation: fadeInUp 0.6s ease-out;
}

.gallery-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsywność */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .portfolio-category {
        padding: 20px 15px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .portfolio-container {
        padding: 20px 10px;
    }
    
    .portfolio-title {
        font-size: 1.8rem;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-title {
        font-size: 1.3rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}