/* Fenerbahçe Ankara - Tüm Okullarımız Premium Styles */

/* Header */
.fb-schools-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 28, 88, 0.3);
    position: relative;
    overflow: hidden;
}

.fb-schools-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 237, 0, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.fb-schools-header h1 {
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 20px 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFED00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.fb-schools-header p {
    font-size: 20px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    max-width: 800px;
}

/* School Cards */
.fb-school-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 30px;
    border-top: 6px solid #FFED00;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
}

.fb-school-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 237, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.fb-school-card:hover::before { 
    left: 100%; 
}

.fb-school-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 28, 88, 0.25);
    text-decoration: none;
    color: inherit;
}

/* Icon Styles - Direkt FA kullanımı */
.fb-school-card i.fa {
    display: block;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    border-radius: 50%;
    line-height: 100px;
    font-size: 48px;
    color: #001C58;
    box-shadow: 0 8px 20px rgba(255, 237, 0, 0.4);
    transition: all 0.4s ease;
}

.fb-school-card:hover i.fa {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(255, 237, 0, 0.6);
}

.fb-school-title {
    font-size: 26px;
    font-weight: 700;
    color: #001C58;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fb-school-description {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px 0;
    flex: 1;
}

.fb-school-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #FFED00 0%, #FDD835 100%);
    color: #001C58;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 237, 0, 0.3);
}

.fb-school-btn:hover {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #FFED00;
    transform: translateX(5px);
    text-decoration: none;
}

.fb-school-btn i { 
    margin-left: 8px; 
}

/* Branch Colors */
.fb-school-card.basketball { border-top-color: #ff6b35; }
.fb-school-card.basketball i.fa {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.fb-school-card.volleyball { border-top-color: #4ecdc4; }
.fb-school-card.volleyball i.fa {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a3a0 100%);
    color: #fff;
}

.fb-school-card.football { border-top-color: #95cd41; }
.fb-school-card.football i.fa {
    background: linear-gradient(135deg, #95cd41 0%, #7ab82e 100%);
    color: #fff;
}

.fb-school-card.gymnastics { border-top-color: #d946ef; }
.fb-school-card.gymnastics i.fa {
    background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
    color: #fff;
}

.fb-school-card.boxing { border-top-color: #ef4444; }
.fb-school-card.boxing i.fa {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
}

.fb-school-card.swimming { border-top-color: #00a8e8; }
.fb-school-card.swimming i.fa {
    background: linear-gradient(135deg, #00a8e8 0%, #0077b6 100%);
    color: #fff;
}

.fb-school-card.summer { border-top-color: #ffa500; }
.fb-school-card.summer i.fa {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #fff;
}

/* Info Box */
.fb-schools-info {
    background: linear-gradient(135deg, #001C58 0%, #00102E 100%);
    color: #fff;
    border-radius: 15px;
    padding: 40px;
    margin: 60px 0 40px;
    box-shadow: 0 10px 40px rgba(0, 28, 88, 0.3);
    position: relative;
    overflow: hidden;
}

.fb-schools-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 237, 0, 0.1) 0%, transparent 60%);
}

.fb-schools-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #FFED00;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.fb-schools-info h3 i { 
    margin-right: 12px; 
}

.fb-schools-info p {
    font-size: 16px;
    line-height: 1.9;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.fb-contact-details {
    text-align: center;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.fb-contact-details p {
    font-size: 18px;
    margin: 10px 0;
}

.fb-contact-details i {
    color: #FFED00;
    margin-right: 10px;
    font-size: 20px;
}

.fb-contact-details strong { 
    color: #FFED00; 
}

/* Responsive */
@media (max-width: 767px) {
    .fb-schools-header h1 { 
        font-size: 36px; 
    }
    .fb-schools-header p { 
        font-size: 16px; 
    }
    .fb-school-card { 
        min-height: auto; 
    }
    .fb-school-card i.fa { 
        width: 80px; 
        height: 80px;
        line-height: 80px;
        font-size: 40px; 
    }
}
