/* index.html - Home Page Styles */

/* Premium Background */
body {
    background-image: url('../../assets/backgrounds/premium-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Hero Section */
.hero {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

@media(min-width: 768px) {
    .hero {
        grid-template-columns: 2fr 1fr;
    }
}

/* Slider */
.slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.slide {
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.sliderControls {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Small Card / Welcome */
.smallCard {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.kicker {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.smallCard h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.ctaRow {
    margin: 16px 0;
}

.trustRow {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--muted);
}

.sep {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

/* Home Extended Sections */
.home-hero,
.delivery-zone,
.map-zone,
.contact-zone,
.qr-zone,
.about-zone,
.faq-zone,
.security-zone,
.seo-zone {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.hero-features,
.delivery-features,
.about-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 0.95rem;
}

.neighborhoods {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 16px;
}

/* Map */
.map-frame iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: var(--radius);
}

/* Contact Links */
.contact-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.contact-links a {
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.contact-links a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* QR */
.qr-zone img {
    max-width: 200px;
    margin: 0 auto 16px;
    border-radius: var(--radius);
}

/* FAQ */
details {
    text-align: left;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 12px;
}

summary {
    cursor: pointer;
    font-weight: 600;
}

details p {
    margin-top: 12px;
    color: var(--muted);
}

/* Security Badge */
.security-zone {
    font-size: 0.9rem;
    color: var(--muted);
}

/* =====================================================
   HERO BRAND BOX - Glitter arka plan + metalik yazı
===================================================== */
.hero-brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../../assets/backgrounds/glitter-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px 24px;
    text-align: center;
    min-height: 160px;
    /* 260px * 0.60 = 160px (%40 küçük) */
}

/* Premium Gümüş Metalik Yazı - PC Default Size */
.hero-brand-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 30%, #b0b0b0 50%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 24px;
    margin-bottom: 6px;
    position: relative;
}

/* Güçlendirilmiş Işıltılı Glow efekti */
.hero-brand-title::after {
    content: 'GİZLİ KUTU';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.35);
    filter: blur(10px);
    z-index: -1;
}

.hero-brand-subtitle {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 7px;
    background: linear-gradient(180deg, #ffffff 0%, #d0d0d0 40%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-brand-subtitle::after {
    content: 'ONLİNE';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 7px;
    color: rgba(255, 255, 255, 0.3);
    filter: blur(9px);
    z-index: -1;
}

/* =====================================================
   MOBİL ANASAYFA
===================================================== */
@media (max-width: 520px) {

    /* Hero tek kolon */
    .hero {
        grid-template-columns: 1fr !important;
    }

    /* Mobilde hero-brand-box - %6 büyütülmüş */
    .hero-brand-box {
        padding: 28px 16px;
        min-height: 235px;
        /* ✅ Kutu artık kırpılmaz */
        max-height: 235px;
        /* ✅ Mobilde şişme olmaz */
        overflow: visible;
        /* ✅ Üst taşma kesilmez */
        border-bottom: none;
        border-radius: var(--radius) var(--radius) 0 0;
        margin-bottom: -1px;
    }

    /* Mobil yazı boyutları - DEĞİŞTİRİLMEDİ */
    .hero-brand-title {
        font-size: 23px;
        letter-spacing: 2px;
    }

    .hero-brand-title::after {
        font-size: 23px;
        letter-spacing: 2px;
    }

    .hero-brand-subtitle {
        font-size: 17px;
        letter-spacing: 3px;
    }

    .hero-brand-subtitle::after {
        font-size: 17px;
        letter-spacing: 3px;
    }

    /* smallCard mobilde */
    .smallCard {
        .smallCard {
            padding: 20px 16px;
            border-radius: 0 0 var(--radius) var(--radius);
        }

        .smallCard h1 {
            font-size: 1.4rem;
        }
    }
}

/* <-- @media (max-width: 520px) KAPANIŞI */


/* =====================================================
   💬 CANLI DESTEK - BAŞLIK VE İKONLAR BEYAZ
===================================================== */
.live-support .live-header span,
.live-support .live-header button,
#minimizeSupport,
#closeSupport {
    color: #ffffff !important;
}

/* SEO Content Styles */
.seo-zone {
    text-align: left;
}

.seo-zone h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text);
    text-align: center;
}

.seo-zone h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 24px 0 12px;
}

.seo-zone p {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--muted);
}

.city-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 28px 0;
}

.city-faq-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.city-faq-item h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text);
    font-weight: 600;
}

.city-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 10px;
}

.city-contact-list li {
    margin-bottom: 12px;
    color: var(--muted);
}

.city-contact-list a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.city-contact-list a:hover {
    text-decoration: underline;
}

/* Glowing Text Animation */
/* Glowing Text Animation */
.glowing-red-pink {
    color: #374151 !important;
    /* Dark Gray */
    font-weight: 800;
    display: block;
    margin-top: 15px;
    width: 100%;
    font-size: 0.95rem;
    font-style: italic;
    background: rgba(0, 0, 0, 0.05);
    /* Subtle dark bg */
    padding: 8px;
    border-radius: 8px;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    animation: grayPulse 2s ease-in-out infinite;
}

@keyframes grayPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}