/* Sayfa içi kaydırma animasyonu */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0b1120;
    color: #f8fafc;
    padding-top: 70px;
}

.bg-dark-custom {
    background-color: #070b14 !important;
}

.text-gold {
    color: #fbbf24 !important;
}

.text-soft {
    color: #94a3b8 !important; 
    line-height: 1.7;
}

.btn-gold {
    background-color: #fbbf24;
    color: #0f172a;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #f59e0b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.btn-outline-gold {
    color: #fbbf24;
    border: 2px solid #fbbf24;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #fbbf24;
    color: #0f172a;
}

/* Şık Arka Planlı Karşılama Alanı */
.hero-section {
    padding: 160px 0 120px;
    background: linear-gradient(rgba(11, 17, 32, 0.85), rgba(11, 17, 32, 0.95)), url('https://images.unsplash.com/photo-1584302179602-e4c3d3fd629d?q=80&w=1920') no-repeat center center;
    background-size: cover;
    border-bottom: 1px solid #1e293b;
}

/* Detaylı Anlatım Bölümleri */
.feature-detail-row {
    padding: 100px 0;
    border-bottom: 1px solid #1e293b;
}

.feature-detail-row:nth-child(even) {
    background-color: #0f172a; 
}

.icon-box {
    width: 65px;
    height: 65px;
    background-color: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

/* Resim Animasyonları (Hareketli Görseller) */
.animated-img {
    transition: all 0.5s ease-in-out;
    border-radius: 12px;
    border: 1px solid #334155;
}

.animated-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
}

/* Ön Sipariş / CTA Alanı */
.cta-section {
    background: linear-gradient(135deg, #070b14 0%, #0f172a 100%);
    border-top: 2px solid #fbbf24;
}