/* Fenerbahçe Ankara - Okul Sayfaları Genel CSS */

.fb-school-page {
    padding: 40px 0 60px;
    background: #f8f9fc;
}

/* School Header */
.fb-school-header {
    background: linear-gradient(135deg, #001C58 0%, #002d72 100%);
    padding: 50px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fb-school-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 237, 0, 0.15) 0%, transparent 70%);
    animation: pulse 5s ease-in-out infinite;
}

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

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

/* Main Content Box */
.fb-content-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.fb-content-box h2,
.fb-content-box h3,
.fb-content-box h4 {
    color: #001C58;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}

.fb-content-box h2 {
    font-size: 32px;
    border-bottom: 3px solid #FFED00;
    padding-bottom: 15px;
    margin-top: 0;
}

.fb-content-box h3 {
    font-size: 26px;
}

.fb-content-box h4 {
    font-size: 22px;
}

.fb-content-box h3.section-subtitle {
    font-size: 24px;
    color: #001C58;
    background: linear-gradient(135deg, #FFED00 0%, #ffd700 100%);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 30px 0 20px;
    border: none;
}

.fb-content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.fb-content-box p.section-text {
    font-size: 16px;
    line-height: 1.9;
}

.fb-content-box p.color-black {
    color: #333;
}

.fb-content-box strong {
    color: #001C58;
    font-weight: 700;
}

/* Tables */
.fb-content-box table {
    width: 100%;
    margin: 30px 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.fb-content-box table td {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
}

.fb-content-box table td[bgcolor="#fff200"] {
    background: linear-gradient(135deg, #FFED00 0%, #ffd700 100%) !important;
    color: #001C58;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fb-content-box table tr:not(:first-child) td {
    background: #fff;
}

.fb-content-box table tr:hover:not(:first-child) td {
    background: #f8f9fc;
}

.fb-content-box table a {
    color: #001C58;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fb-content-box table a:hover {
    color: #FFED00;
    text-decoration: underline;
}

/* Iframe */
.fb-content-box iframe {
    border-radius: 10px;
    border: 3px solid #e0e0e0;
    margin: 30px 0;
}

/* Sidebar */
.fb-sidebar {
    position: sticky;
    top: 20px;
}

.fb-sidebar-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.fb-sidebar-title {
    font-size: 24px;
    font-weight: 800;
    color: #001C58;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #FFED00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.fb-schools-list li {
    margin-bottom: 12px;
}

.fb-schools-list a {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
    border-radius: 10px;
    text-decoration: none;
    color: #001C58;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.fb-schools-list a:hover {
    background: linear-gradient(135deg, #FFED00 0%, #ffd700 100%);
    color: #001C58;
    text-decoration: none;
    transform: translateX(8px);
    border-color: #001C58;
    box-shadow: 0 5px 15px rgba(255, 237, 0, 0.3);
}

.fb-schools-list a.active {
    background: linear-gradient(135deg, #001C58 0%, #002d72 100%);
    color: #FFED00;
    border-color: #FFED00;
}

.fb-schools-list a i {
    margin-right: 12px;
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.fb-schools-list a .fa-arrow-right {
    margin-left: auto;
    margin-right: 0;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fb-schools-list a:hover .fa-arrow-right {
    opacity: 1;
}

/* All Schools Button */
.fb-all-schools-btn {
    display: block;
    text-align: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, #001C58 0%, #002d72 100%);
    color: #FFED00;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 25px;
    transition: all 0.3s ease;
    border: 2px solid #001C58;
}

.fb-all-schools-btn:hover {
    background: linear-gradient(135deg, #FFED00 0%, #ffd700 100%);
    color: #001C58;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 28, 88, 0.3);
}

.fb-all-schools-btn i {
    margin-right: 10px;
    font-size: 20px;
}

/* Contact Box */
.fb-contact-box {
    background: linear-gradient(135deg, #001C58 0%, #002d72 100%);
    border-radius: 15px;
    padding: 30px;
    color: #fff;
    text-align: center;
}

.fb-contact-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #FFED00;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.fb-contact-item {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
}

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

.fb-contact-item strong {
    color: #FFED00;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .fb-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .fb-school-header h1 {
        font-size: 32px;
    }
    
    .fb-content-box {
        padding: 25px;
    }
    
    .fb-content-box h2 {
        font-size: 26px;
    }
    
    .fb-sidebar-box {
        padding: 20px;
    }
    
    .fb-schools-list a {
        font-size: 15px;
        padding: 12px 15px;
    }
}
