/* Sponsorlar Hiyerarşik Sayfası - Soy Ağacı Tasarımı */
.sponsors-hierarchical-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    min-height: 80vh;
}

.sponsor-tier {
    margin-bottom: 4rem;
    text-align: center;
}

.tier-header {
    margin-bottom: 2.5rem;
}

.tier-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tier-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Diamond Sponsor */
.tier-diamond .tier-header i {
    color: #b9f2ff;
    text-shadow: 0 0 20px rgba(185, 242, 255, 0.5);
}

.diamond-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.diamond-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    border: 3px solid #b9f2ff;
    border-radius: 20px;
    padding: 3rem 4rem;
    box-shadow: 0 10px 40px rgba(185, 242, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    max-width: 400px;
}

.diamond-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(185, 242, 255, 0.1), transparent);
    animation: diamondShine 3s infinite;
}

@keyframes diamondShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.diamond-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px rgba(185, 242, 255, 0.5);
}

.diamond-card .sponsor-logo-wrapper {
    margin-bottom: 1.5rem;
}

.diamond-card .sponsor-logo-wrapper img {
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.diamond-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 1rem;
}

/* Gold Sponsorlar */
.tier-gold .tier-header i {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.gold-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.gold-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffef0 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 2rem 3rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
}

.gold-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.gold-card .sponsor-logo-wrapper {
    margin-bottom: 1rem;
}

.gold-card .sponsor-logo-wrapper img {
    max-width: 200px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.gold-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

/* Silver Sponsorlar */
.tier-silver .tier-header i {
    color: #c0c0c0;
    text-shadow: 0 0 15px rgba(192, 192, 192, 0.4);
}

.silver-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.silver-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid #c0c0c0;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 20px rgba(192, 192, 192, 0.15);
    transition: all 0.3s ease;
    flex: 0 1 calc(25% - 1.5rem);
    min-width: 200px;
    max-width: 280px;
}

.silver-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.25);
}

.silver-card .sponsor-logo-wrapper {
    margin-bottom: 0.75rem;
}

.silver-card .sponsor-logo-wrapper img {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.silver-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

.sponsor-link-hierarchical {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

.sponsor-card-hierarchical {
    position: relative;
}

/* Mobil Responsive */
@media (max-width: 1024px) {
    .gold-card {
        flex: 0 1 calc(50% - 2rem);
    }
    
    .silver-card {
        flex: 0 1 calc(33.333% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .tier-header h2 {
        font-size: 2rem;
    }
    
    .diamond-card {
        padding: 2rem 2.5rem;
        max-width: 100%;
    }
    
    .diamond-card .sponsor-logo-wrapper img {
        max-width: 200px;
        max-height: 100px;
    }
    
    .gold-card,
    .silver-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
    
    .gold-content,
    .silver-content {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .sponsors-hierarchical-section {
        padding: 2rem 0;
    }
    
    .tier-header i {
        font-size: 2rem;
    }
    
    .tier-header h2 {
        font-size: 1.5rem;
    }
    
    .diamond-card {
        padding: 1.5rem 2rem;
    }
    
    .diamond-card .sponsor-logo-wrapper img {
        max-width: 180px;
        max-height: 90px;
    }
    
    .gold-card,
    .silver-card {
        padding: 1.5rem;
    }
}

