.user-profile {
    margin-top: 100px;
    font-family: 'Space Grotesk', sans-serif;
}

.cover-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cover-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    background: white;
    border-bottom: 1px solid #eee;
}

.profile-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid #ff8000;
}

.profile-details {
    flex: 1;
}

.user-name {
    margin: 0;
    color: #333;
    font-size: 1.8em;
    font-weight: bold;
}

.user-role {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 1em;
}

.profile-actions {
    margin-left: auto;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.subscribe-btn {
    background-color: #ff8000;
    color: white;
    font-size: 0.9em;
    padding: 8px 16px;
}

.subscribe-btn:hover {
    background-color: #e67300;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 128, 0, 0.3);
}

.user-menu {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 0 5%;
}

.user-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.user-menu li {
    margin-right: 30px;
}

.menu-link {
    display: block;
    padding: 15px 0;
    color: #666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.menu-link:hover,
.menu-link.active {
    color: #ff8000;
    border-bottom-color: #ff8000;
}

.tab-content {
    display: none;
    padding: 30px 5%;
    background: #f8f9fa;
    min-height: 400px;
}

.tab-content.active {
    display: block;
}

.card-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-title {
    padding: 15px 20px 10px;
    margin: 0;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
}

.card-info {
    padding: 0 20px 10px;
}

.date-time {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9em;
}

.location-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.card-bottom {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.organizer {
    color: #666;
    font-size: 0.9em;
}

.organizer span {
    font-weight: bold;
    color: #333;
}

.reserve-btn {
    background-color: #ff8000;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.reserve-btn:hover {
    background-color: #e67300;
    color: white;
}
