/**
 * =================================================================================
 * PROJE ADI: Nuvu Zenith
 * DOSYA ADI: public/assets/css/webtencere.css
 * AMACI: Web Tencere (Landing Page) için özel stiller.
 * SAHİBİ: Recep Gülşen
 * DESTEK: Gemini
 * ---------------------------------------------------------------------------------
 * GELİŞTİRİCİ NOTLARI:
 * - 31.12.2025: app/Views/pages/tr/public/webtencere.php sayfasından ayrıştırıldı.
 * =================================================================================
 */

/* Web Tencere Özel Stilleri */
:root {
    --wt-primary: #FF6B6B;
    --wt-secondary: #4ECDC4;
    --wt-dark: #2C3E50;
    --wt-light: #F7F9FC;
}

.wt-hero-section {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    padding: 160px 0 220px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.wt-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.wt-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.wt-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--wt-primary);
    border-radius: 2px;
}

.wt-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.wt-process-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.wt-process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--wt-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(78, 205, 196, 0.4);
}

.kumpir-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.kumpir-img:hover {
    transform: scale(1.02) rotate(1deg);
}

.pricing-table-row {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    transition: background 0.2s;
}

.pricing-table-row:last-child {
    border-bottom: none;
}

.pricing-table-row:hover {
    background-color: #f8f9fa;
}

.price-tag {
    font-weight: 700;
    color: var(--wt-primary);
    font-size: 1.2rem;
}

/* Scroll Spy Active State */
.nav-link.active {
    color: var(--wt-primary) !important;
    font-weight: bold;
}

/* Hide Standard Navbars to prevent overlap */
/* Auth Layout Navbar */
body>header>nav.navbar {
    display: none !important;
}

/* App Layout Navbar */
#app-wrapper>nav.navbar {
    display: none !important;
}

/* Padding correction since standard nav is gone */
#app-wrapper {
    padding-top: 0 !important;
}

body {
    font-family: 'Inter', sans-serif;
}
