/* Services Page Styles */
.services-hero {
    height: 300px;
    background: #ffffff;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 180px; /* Zvýšeno kvůli dominantnímu logu */
}

.services-overview {
    background: var(--light-color);
    padding: 80px 0;
}

section.services-overview.services-page {
    margin-top: var(--header-offset);
    padding: 50px 0 80px;
}

.services-page h1 {
    text-align: center;
    margin-bottom: 20px;
}

.services-page .services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

.service-category {
    display: flex;
    margin-bottom: 60px;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(232, 195, 195, 0.3);
}

/* Odstraněno padding z .service-image a .service-details */
.service-image {
    flex: 0 0 40%; /* Nastavuje fixní šířku 40% */
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-details {
    flex: 0 0 60%; /* Nastavuje fixní šířku 60% */
    padding: 40px;
}

.service-details h2 {
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}

.service-details h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 1px;
    background: var(--accent-color);
    margin: 0;
}

.service-details ul {
    margin-top: 20px;
    padding-left: 0;
}

.service-details ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-details ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Specifické pravidlo pouze pro prostřední službu (#oslavy) - obrácený pořadí */
#oslavy {
    flex-direction: row-reverse;
}

/* Responsive styles pro service-category */
@media (max-width: 768px) {
    .service-category, 
    #oslavy {
        flex-direction: column;
    }
    
    .service-image, 
    .service-details {
        flex: 0 0 100%;
    }
    
    .service-image {
        height: 300px;
        position: relative;
    }
    
    .service-image img {
        position: absolute;
    }
}

/* Zbytek kódu zůstává stejný */

/* Process section */
.process {
    background: #ffffff;
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 40px;
    justify-content: center;
    position: relative;
    margin: 60px 0 30px;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 35px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: rgba(0,0,0,0.1);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 0;
    margin: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-weight: 400;
    position: relative;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.9rem;
}

/* Packages section */
.packages-section {
    background: #ffffff;
    padding: 60px 40px 30px;
    border-radius: 5px;
}

.packages-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.package {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background: #ffffff;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border: 1px solid rgba(211, 185, 164, 0.35);
    border-radius: 5px;
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.package h3 {
    font-family: var(--font-primary);
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}

.separator {
    width: 30px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 0 auto 20px;
}

.package ul {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
}

.package ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: var(--text-color);
    font-size: 0.95rem;
}

.package ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 5px;
}

.package.featured {
    border: 1px solid var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact button section */
.contact-button-section {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

.separator-large {
    width: 80px;
    height: 1px;
    background-color: var(--accent-color);
    margin: 0 auto 40px;
}

.btn-contact {
    display: inline-block;
    background: transparent;
    color: var(--heading-color);
    padding: 12px 40px;
    border: 1px solid var(--action-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    font-weight: 400;
}

.btn-contact:hover {
    background-color: var(--action-color);
    color: white;
}

.service-faq {
    background: var(--light-color);
    padding: 80px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list details {
    background: #fff;
    border: 1px solid rgba(211, 185, 164, 0.4);
    border-radius: 5px;
    margin-bottom: 14px;
    padding: 0 24px;
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 36px 20px 0;
    color: var(--heading-color);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-list details p {
    padding: 0 0 20px;
    margin: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    .packages-grid {
        flex-wrap: wrap;
    }
    
    .package {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .service-category {
        flex-direction: column;
    }
    
    .service-image, .service-details {
        width: 100%;
    }
    
    .service-image {
        height: clamp(220px, 75vw, 360px);
    }

    .service-details {
        padding: 32px 22px;
    }
    
    .package {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .packages-section {
        padding: 40px 20px 20px;
    }

    .process-steps:before {
        display: none;
    }

    .faq-list details {
        padding: 0 16px;
    }

    .faq-list summary {
        padding: 18px 28px 18px 0;
        font-size: 1.1rem;
    }
}
