/* public/introsite/css/workout-routines.css */

.workout-routines {
    padding: 80px 0;
    background: #f8f9fa;
}

.single-routine {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-routine:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.routine-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.routine-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.single-routine:hover .routine-image img {
    transform: scale(1.1);
}

.routine-content {
    padding: 20px;
}

.routine-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.routine-meta {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.routine-meta span {
    margin-left: 15px;
}

.routine-meta i {
    margin-left: 5px;
    color: #f70;
}

/* Update the workout-detail class for centering */
.workout-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0; /* Keep padding for spacing */
    background: #f8f9fa; /* Ensure background color consistency */
    min-height: 100vh; /* Full viewport height to vertically center */
    box-sizing: border-box; /* Include padding in height calculation */
}

.routine-detail-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    /* Remove any width or margin properties that might interfere */
}

.routine-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item .label {
    font-weight: bold;
    margin-left: 10px;
    color: #666;
}

.info-item .value {
    color: #f70;
}

.routine-description,
.routine-notice {
    margin: 30px 0;
    line-height: 1.8;
}

.download-app {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.custom-container {
    max-width: 800px; /* Or any width you prefer */
    margin: 0 auto;
    padding: 0 15px; /* Optional: Add some horizontal padding */
}
