/* Personal Training Page Styles */

/* Override the classes-section style to make it full width */
.classes-section {
    padding: 0;
    background-color: #1a1a1a;
    position: relative;
    width: 100%;
    max-width: 100%;
    color: white;
}

.classes-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.class-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #111;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

/* Center the classes header on full width */
.classes-header {
    margin-bottom: 0;
    background-color: #fff;
    padding: 1rem 0;
    line-height: 1.0;
    /* display: none;  */
}

.classes-logo {
    padding: 1rem;
    max-width: 160px;
    height: auto;
}

/* Adjust the classes-content for full width */
.classes-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 3rem;
}

/* Make sidebar a bit smaller on full width */
.class-sidebar {
    width: 25%;
    background-color: #fff;
    padding: 0;
    margin: 0;
}

.class-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.class-item {
    font-family: 'Montserrat', sans-serif;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.class-item.active {
    color: #000;
    font-weight: 700;
    position: relative;
}

.class-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 3px;
    background-color: #000;
    margin-left: 2rem;
}

/* Add some extra padding to class-details on full width */
.class-details {
    padding: 4rem;
}

.class-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
}

.class-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.info-list {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.info-list li {
    margin-bottom: 0.7rem;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .classes-container {
        max-width: 100%;
    }
    
    .class-sidebar {
        width: 100%;
    }
    
    .classes-content {
        flex-direction: column;
    }
    
    .class-details {
        padding: 3rem;
    }
    
    .class-name {
        font-size: 3rem;
    }
    
    .classes-title {
        font-size: 2.6rem;
    }
}

/* Tablet adjustments */
@media (max-width: 767.98px) {
    .classes-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .classes-logo {
        max-width: 120px;
    }
    
    .class-content-wrapper {
        flex-direction: column;
    }
    
    .class-sidebar {
        width: 100%;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.7);
        position: relative;
        z-index: 3;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .class-list {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
        width: max-content;
        min-width: 100%;
    }
    
    .class-item {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 1.2rem 0.7rem;
        font-size: 1rem;
        background-color: transparent;
        color: white;
    }
    
    .class-item.active {
        background-color: transparent;
        color: #fff;
        border-left: none;
        position: relative;
    }
    
    .class-item.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        height: 3px;
        background-color: white;
        margin-left: 0.7rem;
    }
    
    .classes-content {
        flex-direction: column;
        padding: 0 1.5rem;
    }
    
    .class-details {
        padding: 2rem 1.5rem 3.5rem;
    }
    
    .class-name {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        line-height: 1.2;
    }
    
    .class-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .class-info-boxes {
        flex-direction: column;
        gap: 2rem;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-label {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .info-list {
        padding-left: 1.2rem;
    }
    
    .info-list li {
        margin-bottom: 0.5rem;
        font-size: 1rem;
    }
    
    /* Fix for the button alignment */
    .btn.btn-primary {
        display: inline-block;
        margin-top: 1rem;
    }
}

/* For very small screens - Mobile phones */
@media (max-width: 479.98px) {
    .classes-title {
        font-size: 1.8rem;
    }
    
    .classes-logo {
        max-width: 100px;
        padding: 0.5rem;
    }
    
    .classes-header {
        padding: 0.8rem 0;
    }
    
    .class-name {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .class-item {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .class-item.active::after {
        margin-left: 0.5rem;
    }
    
    .class-details {
        padding: 1.5rem 1rem 2.5rem;
    }
    
    .class-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .info-label {
        font-size: 1rem;
    }
    
    .info-list li {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .btn.btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* For extra small screens */
@media (max-width: 374.98px) {
    .classes-title {
        font-size: 1.6rem;
    }
    
    .class-name {
        font-size: 1.8rem;
    }
    
    .class-description {
        font-size: 0.95rem;
    }
    
    .class-item {
        padding: 0.8rem 0.4rem;
        font-size: 0.8rem;
    }
    
    .class-item.active::after {
        margin-left: 0.4rem;
    }
    
    .info-list li {
        font-size: 0.9rem;
    }
}

/* Personal Training Header Styles */
.personal-training-header {
    background-color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    max-width: 120px;
    height: auto;
    margin-right: 1rem;
}

.header-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #333;
    margin: 0;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .header-title {
        font-size: 1.8rem;
    }
    
    .personal-training-header {
        padding: 0.8rem 0;
    }
    
    .header-logo {
        max-width: 80px;
    }
} 