/* Genel Ayarlar ve Reset */
:root {
    --primary-color: #8A2BE2; /* Mavi-mor (Mor tonu) */
    --secondary-color: #F0F0F0; /* Beyaz (Metin ve vurgu için) */
    --dark-bg: #0A0A0A; /* Çok koyu siyah */
    --dark-alt-bg: #1A1A1A; /* Alternatif koyu siyah */
    --text-color-light: #F0F0F0; /* Beyaz */
    --text-color-dark: #333; /* Koyu metin (genelde kullanılmıyor ama kalsın) */
    --card-bg: #1F1F1F; /* Koyu gri kart arka planı - Eski değer */
    --border-color: rgba(255, 255, 255, 0.1); /* Hafif şeffaf beyaz kenarlık */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif; /* Google Fonts'tan eklemelisin */
    line-height: 1.6;
    background-color: var(--dark-bg); /* Canvas yüklenene kadar veya fallback */
    color: var(--text-color-light);
    overflow-x: hidden; /* Yatay kaydırmayı engelle */
}

/* Yeni Canvas Arka Plan Stilleri */
#backgroundCanvas {
    position: fixed; /* Ekranın her yerini kaplasın */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Diğer içeriğin arkasında kalsın */
    display: block; /* Tarayıcıların varsayılan boşluklarını kaldırır */
    background-color: var(--dark-bg); /* Canvas yüklenene kadar veya fallback */
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: var(--secondary-color); /* Beyaz */
    margin-bottom: 20px;
}

h2.section-title {
    font-size: 4em; /* Büyük başlık */
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 2px;
}

h2.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color); /* Mor */
    border-radius: 2px;
}

a {
    color: var(--primary-color); /* Mor */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #9D4EDD; /* Daha açık mor */
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color); /* Mor kenarlık */
    background-color: transparent;
    color: var(--primary-color); /* Mor metin */
}

.btn:hover {
    background-color: var(--primary-color); /* Mor arka plan */
    color: var(--dark-bg); /* Koyu siyah metin */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3); /* Mor gölge */
}

/* --- Header & Navigasyon --- */
.main-header {
    background-color: rgba(13, 13, 13, 0.8); /* Yarı şeffaf koyu */
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.4s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF; /* EyeDesignDev yazısı beyaz yapıldı */
    letter-spacing: 1px;
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 40px;
}

.main-nav ul li a {
    font-weight: 500;
    font-size: 1.1em;
    position: relative;
    padding-bottom: 8px;
    color: var(--text-color-light); /* Beyaz */
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color); /* Mor */
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none; /* Masaüstünde gizle */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color-light); /* Beyaz */
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section (Parallax & Giriş Animasyonları) --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: transparent; /* Canvas alacağı için şeffaf yapıldı */
    z-index: 0; /* İçeriğin üzerinde kalmasını sağlar */
}

/* Eski parallax layer stilleri kaldırıldı */
/* .parallax-layer, .layer-1, .layer-2 artık kullanılmıyor */


.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-color-light); /* Beyaz */
}

.hero-content h1 {
    font-size: 4.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(138, 43, 226, 0.5); /* Mor gölge */
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8); /* Hafif şeffaf beyaz */
}

/* Hero Content Giriş Animasyonları (JavaScript ile tetiklenecek) */
.animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: textFadeInUp 0.8s forwards;
}

@keyframes textFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-subtext {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards 0.5s; /* Gecikme ile */
}

.animated-btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 1s ease-out forwards 1s; /* Daha fazla gecikme */
}

/* Genel fadeInSlideUp Animasyonu (JS ile tetiklenenler için) */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Hakkımızda Bölümü --- */
.about-section {
    padding: 100px 0;
    background-color: rgba(13, 13, 13, 0.5); /* Hafif şeffaf koyu arka plan */
    /* transition ve hover efektleri kaldırıldı, çünkü kutuya taşındı */
}

.about-content {
    max-width: 800px; /* Belirlenen maksimum genişlik */
    margin: 0 auto 80px auto; /* Ortalamak için */
    text-align: center;
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    padding: 50px; /* Daha fazla iç boşluk */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Geçiş efektleri burada kaldı */
    
}

.about-content:hover { /* Mor neon efekti buraya taşındı */
    transform: translateY(-10px) scale(1.01); /* Hafif yukarı ve büyütme */
    background-color: rgba(138, 43, 226, 0.15); /* Açık mor, %15 opaklık (Neon efekti için zemin) */
    box-shadow: 0 0 15px var(--primary-color); /* Mor neon gölge */
}

.about-paragraph {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7); /* Hafif şeffaf beyaz */
}

.team-section {
    text-align: center;
    margin-top: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: minmax(250px, 400px); /* Kutunun maksimum genişliğini ayarlar */
    justify-content: center; /* Kutuyu yatayda ortalar */
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Geçişlere background ve box-shadow eklendi */
    opacity: 0; /* JS ile görünür olacak */
    transform: translateY(20px); /* JS ile gelecek */
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: rgba(138, 43, 226, 0.15); /* Açık mor, %15 opaklık (Neon efekti için zemin) */
    box-shadow: 0 0 15px var(--primary-color); /* Mor neon gölge */
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color); /* Mor kenarlık */
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.team-member:hover img {
    border-color: #9D4EDD; /* Daha açık mor */
}

.team-member h4 {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.team-member p {
    color: rgba(255, 255, 255, 0.6); /* Hafif şeffaf beyaz */
}

/* --- Hizmetlerimiz Bölümü (Açılır Kartlar) --- */
.services-section {
    padding: 100px 0;
    background-color: rgba(13, 13, 13, 0.5); /* Hafif şeffaf koyu arka plan */
    /* transition ve hover efektleri kaldırıldı, çünkü kutuya taşındı */
}

.services-grid {
    max-width: 1200px; /* Belirlenen maksimum genişlik */
    margin: 60px auto 0 auto; /* Üstten boşluk ve ortalama */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px; /* İçeriden boşluk bırak */
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Geçiş efektleri burada kaldı */
}

.services-grid:hover { /* Mor neon efekti buraya taşındı */
    transform: translateY(-5px); /* Hafif yukarı kalkma */
    background-color: rgba(138, 43, 226, 0.15);
    box-shadow: 0 0 15px var(--primary-color);
}

.service-card {
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Geçişlere background ve box-shadow eklendi */
    opacity: 0; /* JS ile görünür olacak */
    transform: translateY(20px); /* JS ile gelecek */
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 15px var(--primary-color); /* Mor neon gölge */
    background-color: rgba(138, 43, 226, 0.15); /* Açık mor, %15 opaklık (Neon efekti için zemin) */
}

.service-card .card-header {
    display: flex;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--border-color); /* Hafif şeffaf beyaz kenarlık */
    transition: background-color 0.3s ease;
}

.service-card:hover .card-header {
    background-color: rgba(138, 43, 226, 0.1); /* Hafif mor şeffaf */
}

.service-card .service-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    fill: var(--primary-color); /* Mor */
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1); /* SVG ikona hover animasyonu */
}

.service-card h3 {
    margin: 0;
    font-size: 1.8em;
    color: var(--secondary-color); /* Beyaz */
}

.service-card .card-content {
    padding: 0 30px 30px 30px;
    max-height: 0; /* Başlangıçta gizli */
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    visibility: hidden;
}

.service-card.active .card-content {
    max-height: 300px; /* İçeriğe göre ayarlanmalı */
    padding: 20px 30px 30px 30px;
    opacity: 1;
    visibility: visible;
}

.service-card .card-content p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7); /* Hafif şeffaf beyaz */
}

.service-card .card-content ul {
    list-style: none;
    padding-left: 0;
}

.service-card .card-content ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.6); /* Hafif şeffaf beyaz */
}

.service-card .card-content ul li::before {
    content: '✓'; /* Basit bir tik işareti */
    color: var(--primary-color); /* Mor */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* --- Portfolyo Bölümü (Mozaik Grid) --- */
.portfolio-section {
    padding: 100px 0;
    background-color: rgba(13, 13, 13, 0.5); /* Hafif şeffaf koyu arka plan */
    /* transition ve hover efektleri kaldırıldı, çünkü kutuya taşındı */
}

.portfolio-grid {
    max-width: 1200px; /* Belirlenen maksimum genişlik */
    margin: 60px auto 0 auto; /* Üstten boşluk ve ortalama */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    grid-auto-rows: minmax(250px, auto);
    padding: 40px;
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Geçiş efektleri burada kaldı */
}

.portfolio-grid:hover { /* Mor neon efekti buraya taşındı */
    transform: translateY(-5px);
    background-color: rgba(138, 43, 226, 0.15);
    box-shadow: 0 0 15px var(--primary-color);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    opacity: 0; /* JS ile görünür olacak */
    transform: scale(0.95); /* JS ile gelecek */
    transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Geçişlere background ve box-shadow eklendi */
}

.portfolio-item.wide {
    grid-column: span 2; /* Geniş eleman */
}

.portfolio-item.tall {
    grid-row: span 2; /* Uzun eleman */
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3)); /* Geçişli overlay */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* İçeriği alta hizala */
    align-items: flex-start; /* İçeriği sola hizala */
    padding: 30px;
    color: var(--text-color-light); /* Beyaz */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08); /* Hover'da hafif büyüsün */
}

.portfolio-item:hover .overlay {
    opacity: 1; /* Hover'da görünsün */
}

.overlay h3 {
    margin-bottom: 10px;
    font-size: 1.8em;
    color: var(--secondary-color); /* Beyaz */
}

.overlay p {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.7); /* Hafif şeffaf beyaz */
    margin-bottom: 20px;
}

.view-project-btn {
    background-color: var(--primary-color); /* Mor */
    color: var(--dark-bg); /* Koyu siyah */
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 600;
    opacity: 0; /* Başlangıçta gizli */
    transform: translateY(10px); /* Alttan gelsin */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.portfolio-item:hover .view-project-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s; /* Hafif gecikme */
}

/* --- İletişim Bölümü --- */
.contact-section {
    padding: 100px 0;
    background-color: rgba(13, 13, 13, 0.5); /* Hafif şeffaf koyu arka plan */
    /* transition ve hover efektleri kaldırıldı, çünkü kutuya taşındı */
}

.contact-content {
    max-width: 1000px; /* Belirlenen maksimum genişlik */
    margin: 60px auto 0 auto; /* Üstten boşluk ve ortalama */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    padding: 40px;
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Geçiş efektleri burada kaldı */
}

.contact-content:hover { /* Mor neon efekti buraya taşındı */
    transform: translateY(-5px);
    background-color: rgba(138, 43, 226, 0.15);
    box-shadow: 0 0 15px var(--primary-color);
}

.contact-form {
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Geçişlere background ve box-shadow eklendi */
}

.contact-form:hover {
    background-color: rgba(138, 43, 226, 0.15); /* Açık mor, %15 opaklık (Neon efekti için zemin) */
    box-shadow: 0 0 15px var(--primary-color); /* Mor neon gölge */
}

.form-group {
    margin-bottom: 25px;
    position: relative; /* Label animasyonu için */
}

.form-group label {
    display: block;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6); /* Hafif şeffaf beyaz */
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #2a2a2a; /* Koyu gri */
    border: 1px solid var(--border-color); /* Hafif şeffaf beyaz kenarlık */
    border-radius: 5px;
    color: var(--text-color-light); /* Beyaz */
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color); /* Mor */
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.2); /* Hafif mor gölge */
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color); /* Mor */
    color: var(--dark-bg); /* Koyu siyah */
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-submit:hover {
    background-color: #9D4EDD; /* Daha açık mor */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4); /* Mor gölge */
}

.contact-info {
    background-color: rgba(31, 31, 31, 0.7); /* Transparan efekt */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Geçişlere background ve box-shadow eklendi */
}

.contact-info:hover {
    background-color: rgba(138, 43, 226, 0.15); /* Açık mor, %15 opaklık (Neon efekti için zemin) */
    box-shadow: 0 0 15px var(--primary-color); /* Mor neon gölge */
}

.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--secondary-color); /* Beyaz */
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.7); /* Hafif şeffaf beyaz */
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* --- Footer --- */
.main-footer {
    background-color: #050505; /* En koyu siyah */
    color: rgba(255, 255, 255, 0.5); /* Hafif şeffaf beyaz */
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
    border-top: 1px solid var(--border-color); /* Hafif şeffaf beyaz kenarlık */
}

.main-footer .social-links {
    margin-top: 15px;
}

.main-footer .social-links a {
    color: rgba(255, 255, 255, 0.7); /* Hafif şeffaf beyaz */
    margin: 0 10px;
    font-size: 1.1em;
}

/* --- Responsive Tasarım (Küçük Ekranlar İçin) --- */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Mobil menü JS ile kontrol edilecek */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Header yüksekliğine göre ayarla */
        left: 0;
        background-color: rgba(13, 13, 13, 0.95);
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        border-radius: 0 0 10px 10px;
        transform: translateY(-100%);
        transition: transform 0.4s ease-out;
    }

    .main-nav.active {
        display: flex;
        transform: translateY(0);
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav ul li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 3em;
    }

    .hero-content p {
        font-size: 1.2em;
    }

    h2.section-title {
        font-size: 3em;
        margin-bottom: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr; /* Tek sütun */
    }
    .portfolio-item.wide,
    .portfolio-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    /* Ana içerik kutucukları için responsive ayarlar */
    .about-content,
    .services-grid,
    .portfolio-grid,
    .contact-content {
        padding: 30px 20px; /* Yanlardan daha fazla boşluk */
        max-width: 90%; /* Genişliği %90'a çek, küçük ekranlarda daha iyi durur */
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content p {
        font-size: 1em;
    }
    h2.section-title {
        font-size: 2.5em;
        margin-bottom: 40px;
    }
}

/* Ortak Reveal Animasyonları (JS ile tetiklenecek) */
.reveal-text, .reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-text.visible, .reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Başlık için özel reveal */
.reveal-text.section-title.visible span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: textFadeInUp 0.8s forwards;
}
/* textFadeInUp keyframe'i yukarıda zaten tanımlı */