/* Stylizacja strony usługi */
.content {
    min-height: 100vh;
    padding: 20px 15px;
    background-color: #000;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.services-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #b3b15d;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-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;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(179, 177, 93, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-name {
    font-size: 1.5rem;
    color: #b3b15d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.service-features {
    list-style-type: none;
    margin: 15px 0;
}

.service-features li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #ffffff;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    color: #b3b15d;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(179, 177, 93, 0.3);
    border-bottom: 1px solid rgba(179, 177, 93, 0.3);
}

.duration, .price {
    color: #b3b15d;
    font-weight: bold;
    font-size: 1.1rem;
}

.book-button {
    display: inline-block;
    background: linear-gradient(135deg, #b3b15d 0%, #998238 100%);
    color: black;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
    align-self: flex-start;
}

.book-button:hover {
    background: linear-gradient(135deg, #998238 0%, #b3b15d 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(179, 177, 93, 0.3);
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid #b3b15d;
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
}

/* Sekcja informacyjna */
.info-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #b3b15d;
    text-align: center;
}

.info-title {
    font-size: 1.5rem;
    color: #b3b15d;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 10px 0;
}

.contact-link {
    color: #b3b15d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Animacje */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-category {
    animation: fadeInUp 0.6s ease-out;
}

.service-item {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsywność */
@media (max-width: 768px) {
    .services-title {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-category {
        padding: 20px 15px;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 20px 10px;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.3rem;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .duration, .price {
        font-size: 1rem;
    }
}