/* ========== ILLUMINATION TEXT SAYFASI - ÖZEL STILLER ========== */
/* Header, footer ve genel stiller style.css'den gelir */

/* HERO - GİZLİLİK POLİTİKASI GİBİ ÇOK FARKLI VE GÜZEL */
.illumination-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
}

.illumination-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(52,211,153,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(56,189,248,0.12) 0%, transparent 50%),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 8px);
    pointer-events: none;
}

.illumination-hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #34d399;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #38bdf8;
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #a855f7;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
    opacity: 0.2;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.illumination-hero-content {
    position: relative;
    max-width: 800px;
    padding: 80px 24px;
    z-index: 10;
}

.illumination-hero-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #34d399, #38bdf8);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(52,211,153,0.3);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 30px rgba(52,211,153,0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 60px rgba(52,211,153,0.6);
        transform: scale(1.05);
    }
}

.illumination-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.illumination-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.illumination-hero-date {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.illumination-hero-date span {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.illumination-hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    color: white;
    font-size: 0.8rem;
    opacity: 0.7;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.illumination-hero-scroll span:first-child {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

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

/* İÇERİK BÖLÜMÜ */
.illumination-content {
    padding: 70px 0;
    background: #ffffff;
}

body.dark-mode .illumination-content {
    background: #0a0f2a;
}

.illumination-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* SOL SIDEBAR */
.illumination-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}

body.dark-mode .sidebar-sticky {
    background: #11173b;
    border-color: #1e2a5e;
}

.sidebar-sticky h3 {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

body.dark-mode .sidebar-sticky h3 {
    color: #60a5fa;
    border-bottom-color: #1e2a5e;
}

.sidebar-sticky ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-sticky li {
    margin-bottom: 12px;
}

.sidebar-sticky a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

body.dark-mode .sidebar-sticky a {
    color: #cbd5e1;
}

.sidebar-sticky a:hover {
    color: #34d399;
    transform: translateX(5px);
}

body.dark-mode .sidebar-sticky a:hover {
    color: #34d399;
}

/* SAĞ İÇERİK */
.illumination-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.illumination-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.illumination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

body.dark-mode .illumination-card {
    background: #11173b;
    border-color: #1e2a5e;
}

.illumination-card h2 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e7ff;
}

body.dark-mode .illumination-card h2 {
    color: #60a5fa;
    border-bottom-color: #1e2a5e;
}

.illumination-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

body.dark-mode .illumination-card p {
    color: #cbd5e1;
}

.illumination-card ul {
    margin: 16px 0;
    padding-left: 24px;
}

.illumination-card li {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 8px;
}

body.dark-mode .illumination-card li {
    color: #cbd5e1;
}

.illumination-card strong {
    color: #1e3a8a;
}

body.dark-mode .illumination-card strong {
    color: #93c5fd;
}

/* INFO BOX */
.info-box {
    background: #f0fdf4;
    border-left: 4px solid #34d399;
    padding: 20px;
    border-radius: 16px;
    margin-top: 20px;
    line-height: 1.8;
}

body.dark-mode .info-box {
    background: #0a0f2a;
    border-left-color: #34d399;
}

/* İLETİŞİM KANALLARI */
.contact-channels {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.channel-link {
    display: inline-block;
    background: #1e3a8a;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s;
}

.channel-link:hover {
    background: #34d399;
    color: #1e3a8a;
    transform: translateY(-2px);
}

body.dark-mode .channel-link {
    background: #1e2a5e;
}

body.dark-mode .channel-link:hover {
    background: #34d399;
    color: #1e3a8a;
}

.note {
    font-size: 0.85rem;
    color: #64748b;
    font-style: italic;
}

body.dark-mode .note {
    color: #9ca3af;
}

/* ALT BİLGİ BANDI */
.illumination-footer-note {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

body.dark-mode .illumination-footer-note {
    background: linear-gradient(135deg, #0f142e, #11173b);
}

.note-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 30px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

body.dark-mode .note-box {
    background: #11173b;
}

.note-icon {
    font-size: 1.8rem;
}

.note-box p {
    color: #475569;
    font-size: 0.9rem;
    margin: 0;
}

body.dark-mode .note-box p {
    color: #cbd5e1;
}

.note-box a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
}

.note-box a:hover {
    text-decoration: underline;
}

body.dark-mode .note-box a {
    color: #34d399;
}

/* MOBİL UYUM */
@media (max-width: 968px) {
    .illumination-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .illumination-sidebar {
        display: none;
    }
    
    .illumination-hero-title {
        font-size: 2.5rem;
    }
    
    .illumination-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .illumination-hero {
        min-height: 450px;
    }
    
    .illumination-hero-title {
        font-size: 2rem;
    }
    
    .illumination-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .illumination-hero-date {
        gap: 15px;
    }
    
    .illumination-hero-date span {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .illumination-card {
        padding: 25px;
    }
    
    .illumination-card h2 {
        font-size: 1.3rem;
    }
    
    .contact-channels {
        flex-direction: column;
        align-items: center;
    }
    
    .channel-link {
        width: 100%;
        text-align: center;
    }
    
    .note-box {
        flex-direction: column;
        text-align: center;
        border-radius: 24px;
        padding: 20px;
    }
    
    .illumination-hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .illumination-hero-title {
        font-size: 1.6rem;
    }
    
    .illumination-hero-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .illumination-card {
        padding: 20px;
    }
    
    .illumination-card h2 {
        font-size: 1.2rem;
    }
}
