:root {
    --primary-color: #ff4081; /* Canlı pembe */
    --secondary-color: #f7a7c7;
    --background-dark: #0f0a1c; /* Çok koyu mor */
    --background-light: #2a1b3f;
    --text-color: #ffffff;
    --accent-color: #7b2cbf; /* Eflatun */
}

body {
    background-color: var(--background-dark);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Dancing Script', cursive;
}

/* Giriş Ekranı ve Animasyon */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1.5s ease-out;
}

.pulsating-heart {
    font-size: 150px;
    color: var(--primary-color);
    animation: pulse 1.5s infinite;
}

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

/* Paralaks Bölümü */
.parallax-section {
    background: url('images/hero-bg.jpg') no-repeat fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease-out;
}

/* Başlık ve Buton Animasyonları */
.animate-fade-in-down {
    animation: fadeInDown 1.5s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Genel Bölüm Stilleri */
.content-section {
    background-color: var(--background-light);
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Sayaç Kutusu */
.counter-box {
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: var(--text-color);
    font-size: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.counter-box div {
    text-align: center;
    margin: 10px 15px;
}

.counter-box span {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

/* Galeri Stilleri */
.gallery-section {
    background-color: var(--background-dark);
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Lightbox stilleri */
.modal-content {
    background-color: var(--background-light);
    border: 1px solid var(--accent-color);
    border-radius: 15px;
    color: var(--text-color);
}

.modal-header {
    border-bottom: 1px solid var(--accent-color);
}

.modal-title {
    color: var(--primary-color);
}

.list-group-item {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--text-color);
}

.lightbox-loading, .lightbox-nav a, .lightbox-image {
    background-color: var(--background-dark) !important;
}

.lightbox .lb-dataContainer {
    background-color: var(--background-light) !important;
}

/* Müzik Kontrol Butonları */
.music-player-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.music-btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.2s;
}

.music-btn:hover {
    transform: scale(1.1);
}

/* --- MOBİL UYUMLULUK EKLEMELERİ --- */

/* Genel mobil ayarlar (768px ve altı) */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        background-position: center;
        height: 70vh;
    }

    .parallax-section h1 {
        font-size: 2.2rem;
    }

    .parallax-section p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .counter-box {
        padding: 1rem;
        font-size: 1rem;
        justify-content: center;
    }
    
    .counter-box div {
        margin: 5px 5px;
        flex-basis: 30%;
    }

    .counter-box span {
        font-size: 1.8rem;
    }

    .gallery-item img {
        height: 180px;
    }
    
    .media-box {
        padding: 1.5rem !important;
    }
    
    .media-box h4 {
        font-size: 1.3rem;
    }

    .card {
        padding: 1.5rem !important;
    }
    .card-body {
        padding: 1rem !important;
    }

    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Sadece telefonlar için (576px ve altı) */
@media (max-width: 576px) {
    .parallax-section h1 {
        font-size: 1.8rem;
    }
    
    .music-player-container {
        bottom: 10px;
        right: 10px;
    }
    
    .music-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .modal-header .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        font-size: 0.85rem;
    }

    .gallery-section .row > div {
        flex: 0 0 auto;
        width: 50%;
    }
}

/* Küçük telefonlar için (375px ve altı) */
@media (max-width: 375px) {
    .parallax-section h1 {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .counter-box span {
        font-size: 1.5rem;
    }
    .gallery-item img {
        height: 150px;
    }
}