/* ==========================================================================
   EsenTarz - Ana Stil Dosyası
   ========================================================================== */

/* Genel Ayarlar */
:root {
    --brand-color: #d63384;
    --brand-hover: #b82a6f;
    --light-bg: #fcfcfc;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: #333;
}

/* Navbar ve Logo Ayarları */
.navbar-brand img {
    height: 50px !important; /* Logonun boyutunu sabitleyen kritik satır */
    width: auto;
}

.btn-brand {
    background-color: var(--brand-color);
    color: white !important;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: none;
}

.btn-brand:hover {
    background-color: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 51, 132, 0.2);
}

/* Ürün Kartları */
.product-card {
    border: none;
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* Öne Çıkan Ürünler Bölümü (Paralaks) */
.featured-products-section {
    background: url('../assets/images/featured-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.featured-products-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.featured-products-section .container {
    position: relative;
    z-index: 2;
}

/* --- AUTH & İLETİŞİM SAYFALARI (Cam Efekti) --- */
.auth-wrapper, .contact-wrapper {
    background: url('../assets/images/login-user-bg.png') no-repeat center center fixed;
    background-size: cover;
    min-height: calc(100vh - 76px); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.auth-wrapper::before, .contact-wrapper::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0; /* Arka plana ittik */
}

.auth-container, .contact-container {
    position: relative;
    z-index: 10; /* Formu öne çıkardık */
    width: 100%;
    max-width: 420px;
}

.contact-container { max-width: 600px; }

.auth-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.auth-card .form-control {
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    background-color: #f8f9fa;
}

/* Metin ve Diğer Ayarlar */
.text-brand { color: var(--brand-color) !important; }

.form-control:focus {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 0.25rem rgba(214, 51, 132, 0.25);
}

.result-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 20px;
    animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}