﻿.profile-header {
    background: var(--header-bg);
    padding: 2rem 0;
}
.profile-header .container,
section.container {
    max-width: var(--container-width);
}
.container-100 {
    padding-left: var(--nav-menu-marging);
    padding-right: var(--nav-menu-marging);
}

.profile-header h1 {
    color: #2C3E50;
    font-weight: 700;
    border-bottom: var(--about-border-left);
    display: inline-block;
    padding-bottom: 0.5rem;
    margin: 0;
    margin-right: 0.5rem;
}

.profile-header .profile-subheader {
    background-color: var(--light-turquoise);
    color: var(--dark-turquoise);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-weight: bold;
}

.profile-header .header-badge {
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
}
.profile-header .header-badge.is-practice {
    background-color: var(--capuchino);
}
.profile-header .header-badge.is-canceled,
.profile-header .header-badge.is-closed,
.profile-header .header-badge.is-inactive {
    background-color: var(--is-canceled-bg-color);
}
.profile-header .header-badge.is-promo {
    background-color: var(--is-promo-bg-color);
}

.sidebar-section {
    margin-bottom: 1.5rem;
}

.profile-img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.info-label {
    color: var(--capuchino-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
    margin-top: 1rem;
}

.info-value {
    /* color: #2C3E50; */
    margin-bottom: 0;
}
.info-value a {
    color: var(--dark-turquoise);
    text-decoration: none;
    font-weight: 500;
}
.info-value a:hover {
    text-decoration: underline;
}

.info-description {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.25rem;
}

.dance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.dance-badge {
    background-color: var(--light-turquoise);
    color: var(--dark-turquoise);
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.share-button {
    font-weight: 600;
    transition: all 0.3s;
    max-width: 400px;
}
.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
}

.about-section {
    border-left: var(--about-border-left);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-box-shadow);
}
.about-section h5 {
    color: var(--capuchino-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}
.about-section:not(:first-of-type) {
    margin-top: 1.5rem;
}
.about-section:last-of-type {
    margin-bottom: 2rem;
}
.about-section a {
    color: var(--dark-turquoise);
}
.about-section a.btn {
    text-decoration: none;
}
.about-section a:hover {
    color: var(--turquoise);
}
.about-section .links {
    display: inline-block;
}
.about-section .links a {
    margin-right: 0.3rem;
}
.about-section .description div {
    min-height: 1rem;
}

.schedule-table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-box-shadow);
}
.schedule-table table {
    margin-bottom: 0;
}
.schedule-table tbody tr:hover {
    background-color: var(--light-turquoise);
}
.schedule-table tbody td {
    padding: 2px 0;
}

@media (max-width: calc(900px + 3rem)) {
    .container {
        padding-left: var(--nav-menu-marging);
        padding-right: var(--nav-menu-marging);
    }
}