/* Homepage Service Cards - Updated Design */

.services .service-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
}

.services .btn-text,
.services .btn-outline {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px; /* Hranaté rohy */
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 140px;
    justify-content: center;
}

/* Více informací button */
.services .btn-text {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.services .btn-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: left 0.3s ease;
    z-index: -1;
}

.services .btn-text:hover {
    color: white;
    transform: translateY(-2px);
}

.services .btn-text:hover::before {
    left: 0;
}

/* Rezervovat button */
.services .btn-outline {
    background: #C9A961;
    color: white;
    border: 2px solid #C9A961;
    position: relative;
}

.services .btn-outline:hover {
    background: #A08654;
    border-color: #A08654;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

/* Better service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .services .service-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .services .btn-text,
    .services .btn-outline {
        width: 100%;
        justify-content: center;
    }
}
