
.tabs {
    display: flex;
    background: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 100;
}

.tab-button {
    flex: 1;
    padding: 15px 10px;
    background: none;
    border: none;
    color: #ecf0f1;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #3498db;
    transition: width 0.3s ease;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    color: #3498db;
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.tab-content h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    font-size: 1.8rem;
    font-family: 'Outfit';
}

.tab-content p {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Clubs Grid */
.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.club-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.club-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #3498db, #9b59b6);
}

.club-card h3 {
    color: #2c3e50;
    padding: 24px 20px;
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Houses Section */
.houses-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.house {
    width: 220px;
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.house-red {
    background: linear-gradient(135deg, #E2DC5A, #F4F700);
}

.house-blue {
    background: linear-gradient(135deg, #27D644, #9DED38);
}

.house-green {
    background: linear-gradient(135deg, #FC684E, #FF382E);
}

.house-yellow {
    background: linear-gradient(135deg, #4E5DDD, #041BDD);
}

.house h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.house p {
    color: #fff;
    font-size: 1rem;
}

.house-emblem {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.house-emblem svg {
    width: 50px;
    height: 50px;
}

/* Choir Section */
.choir-container {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.choir-info {
    flex: 1;
    min-width: 300px;
}

.choir-image {
    flex: 1;
    min-width: 300px;
    height: 300px;
    background: #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choir-image svg {
    width: 70%;
    height: 70%;
    fill: #3498db;
}

/* Band Section */
.band-instruments {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.instrument {
    width: 120px;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.instrument:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instrument svg {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    fill: #3498db;
}

.instrument p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Festivities Section */
.festivities-timeline {
    margin-top: 30px;
    position: relative;
    padding-left: 30px;
}

.festivities-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #3498db, #9b59b6);
    border-radius: 5px;
}

.festivity {
    margin-bottom: 30px;
    position: relative;
}

.festivity::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    border: 3px solid #3498db;
}

.festivity h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.festivity-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
    }
    
    .tab-button {
        padding: 12px 5px;
        font-size: 0.9rem;
    }
    
    .houses-container, .choir-container {
        flex-direction: column;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
}
.object_img{
    display: block;
    width: 100%;
    height: 380px;
    object-fit: contain;
    text-align: center;
}