/* GENEL AYARLAR VE RENK PALETİ */
:root {
    --dark-blue: #001522;
    --gold: #ffc754;
    --orange: #f4690a;
    --white: #f0f0f0;
    --text-gray: #b0b8c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-blue);
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p {
    font-size: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: var(--gold);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* HERO BÖLÜMÜ */
.hero {
    background: var(--dark-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-text h1 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-image img {
    max-width: 300px;
    animation: float 4s ease-in-out infinite;
}

/* Telefon havada süzülme animasyonu */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* İNDİRME BUTONLARI */
.download-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background: #1a2933;
    color: var(--white);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    background-color: #2a3f4d;
}

.btn i {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.btn span {
    text-align: left;
    font-size: 0.8rem;
    line-height: 1.2;
}

.btn span b {
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-ios { border: 2px solid var(--gold); }
.btn-google { border: 2px solid var(--orange); }

/* ÖZELLİKLER BÖLÜMÜ */
.features {
    padding: 6rem 0;
    background: #011a27; /* Hafif ton farkı */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--dark-blue);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #1a2933;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* PARALLAX BÖLÜMÜ */
.parallax {
    min-height: 400px;
    /* Buradaki arkaplan resmini değiştirebilirsiniz. */
    background-image: url('../images/bg-camii.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.parallax::before { /* Resim üzerine karartma efekti */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 21, 34, 0.7);
}

.parallax-content {
    position: relative; /* Karartma efektinin üzerinde kalması için */
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.parallax-content h2 {
    font-size: 2.2rem;
    font-weight: 400;
}

.parallax-content p {
    font-size: 1.2rem;
    color: var(--gold);
    font-style: italic;
}

/* EKRAN GÖRÜNTÜLERİ */
.screenshots {
    padding: 6rem 0;
}

.screenshots-gallery {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    overflow-x: auto; /* Yatayda kaydırma */
    /* Kaydırma çubuğu için stil (isteğe bağlı) */
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark-blue);
}

.screenshots-gallery::-webkit-scrollbar {
    height: 8px;
}
.screenshots-gallery::-webkit-scrollbar-track {
    background: var(--dark-blue);
}
.screenshots-gallery::-webkit-scrollbar-thumb {
    background-color: var(--gold);
    border-radius: 10px;
}

.screenshots-gallery img {
    height: 500px;
    width: auto;
    border-radius: 20px;
    border: 3px solid #1a2933;
}

/* FOOTER */
.footer {
    padding: 4rem 0 2rem;
    text-align: center;
    background: #011a27;
}

.footer h2 {
    margin-bottom: 2rem;
}

.footer .download-buttons {
    justify-content: center;
    margin-bottom: 3rem;
}

.footer .copyright {
    font-size: 0.9rem;
    color: var(--text-gray);
}


/* MOBİL UYUMLULUK (RESPONSIVE) */
@media(max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero-content {
        flex-direction: column-reverse; /* Telefon üste, yazı alta */
        text-align: center;
    }

    .hero-text {
        margin-top: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 250px;
    }

    .download-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 250px;
        justify-content: center;
    }
}

/* ============================================= */
/*           STATİK SAYFA ŞABLONU STİLLERİ         */
/* ============================================= */

.static-header {
    padding: 1.5rem 0;
    background-color: #011a27; /* Hafif ton farkı */
    border-bottom: 2px solid var(--dark-blue);
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-home:hover {
    color: var(--white);
}

.static-content {
    padding: 4rem 0;
    max-width: 800px; /* Okunabilirliği artırmak için metin alanını daraltıyoruz */
    margin: 0 auto;
}

.static-content h1 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 2.8rem;
    border-bottom: 1px solid #1a2933;
    padding-bottom: 1rem;
}

.static-content .last-updated {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

.static-content h2 {
    color: var(--orange); /* Alt başlıklar için diğer vurgu rengi */
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.static-content p, 
.static-content li {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.static-content ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.static-content a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: underline;
}

.static-content a:hover {
    color: var(--orange);
}


.static-footer {
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
    background-color: #011a27;
    border-top: 1px solid #1a2933;
}

.static-footer p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Mobilde başlıkları biraz küçültelim */
@media(max-width: 768px) {
    .static-content h1 {
        font-size: 2.2rem;
    }
    .static-content h2 {
        font-size: 1.5rem;
    }
}