/* 
   AJANS PR PREMIUM - SAAS B2B DASHBOARD CSS
   ------------------------------------------
*/

:root {
    --color-primary: #fe8706;         /* Ana turuncu */
    --color-primary-dark: #e67a05;    /* Koyu turuncu hover */
    --color-secondary: #ffab40;       /* Açık turuncu */
    --color-dark: #2a2a2a;            /* Charcoal / mat siyah */
    --color-dark-theme: #141414;      /* Dark mode background */
    --color-dark-card: #1c1c1c;       /* Dark mode card */
    --color-text: #5C5C6E;            /* Gri metin */
    --color-text-light: #9898a8;      /* Açık gri metin */
    --color-light: #F5F5F7;           /* Açık arka plan */
    --color-white: #FFFFFF;
    --color-border: rgba(42, 42, 42, 0.1); /* Charcoal bazlı kenar */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Nunito', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 10px 40px rgba(0, 0, 0, 0.1);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.4);
    --transition: 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-light);
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-dark); font-weight: 800; letter-spacing: -0.5px; }
a { color: var(--color-secondary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary); }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.ani-up { animation: fadeInUp 0.8s ease backwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* --- FLOATING BUTTONS --- */
#whatsappBtn, #backToTop, #darkModeToggle {
    position: fixed;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
}

#whatsappBtn:hover, #backToTop:hover, #darkModeToggle:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

#backToTop {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    color: var(--color-dark);
    font-size: 18px;
}

#darkModeToggle {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid #eee;
    font-size: 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 12px 24px; border-radius: 8px; font-family: var(--font-heading);
    font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: var(--transition);
}
.btn-primary { background: linear-gradient(135deg, var(--color-primary) 0%, #ff8c60 100%); color: var(--color-white) !important; box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4); }
.btn-block { width: 100%; }

/* --- FORMS --- */
.form-group { margin-bottom: 20px; }
.form-row { display: flex; gap: 15px; }
.form-row .half { width: 50%; }
label { display: block; font-family: var(--font-heading); font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--color-dark); text-transform: uppercase; letter-spacing: 0.5px; }
input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
    width: 100%; padding: 14px 18px; border-radius: 8px; border: 1px solid var(--color-border);
    background: #fbfbfb; font-family: var(--font-body); font-size: 15px; transition: var(--transition); outline: none;
}
input:focus { border-color: var(--color-secondary); background: var(--color-white); box-shadow: 0 0 0 4px rgba(98, 84, 231, 0.1); }

/* --- BLOBS --- */
.blob { position: absolute; z-index: -1; filter: blur(100px); border-radius: 50%; }
.auth-blob-1 { background: var(--color-primary); width: 400px; height: 400px; top: -100px; left: -100px; opacity: 0.3; }
.auth-blob-2 { background: var(--color-secondary); width: 500px; height: 500px; bottom: -100px; right: -100px; opacity: 0.2; }

/* --- AUTH PAGES (LOGIN & KAYIT) --- */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; overflow: hidden; position: relative; }
.auth-container { display: flex; width: 100%; max-width: 1100px; background: transparent; margin: 0 20px; z-index: 10; align-items: center; }

/* Banner / Info Side */
.auth-banner { width: 50%; padding-right: 60px; }
.banner-glass { background: rgba(255,255,255,0.4); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 40px; border-radius: 20px; border: 1px solid var(--glass-border); }
.banner-glass h2 { font-size: 32px; margin-bottom: 30px; line-height: 1.3; }
.auth-features { list-style: none; }
.auth-features li { display: flex; align-items: center; font-size: 18px; margin-bottom: 18px; font-weight: 600; color: var(--color-dark); }
.auth-features .icon { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; background: rgba(255,255,255,0.8); border-radius: 10px; margin-right: 15px; font-size: 20px; box-shadow: var(--shadow-soft); }

/* Form Side */
.auth-form-wrapper { width: 50%; }
.signup-container .auth-form-wrapper { width: 100%; max-width: 600px; margin: 0 auto; }

.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: 24px; padding: 50px; box-shadow: var(--shadow-glass);
}

.auth-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.auth-logo { height: 45px; }
.premium-badge { background: rgba(255, 107, 53, 0.1); color: var(--color-primary); font-family: var(--font-heading); font-size: 11px; font-weight: 800; padding: 6px 12px; border-radius: 20px; letter-spacing: 1px; }

.auth-card h3 { font-size: 26px; margin-bottom: 8px; }
.auth-card .subtitle { margin-bottom: 30px; font-size: 15px; }

.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; font-size: 14px; }
.auth-footer { text-align: center; margin-top: 25px; font-size: 14px; }
.auth-footer a { font-weight: 700; text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
    .auth-container { flex-direction: column; }
    .auth-banner, .auth-form-wrapper { width: 100%; padding: 0; }
    .auth-banner { margin-bottom: 30px; display: none; /* Mobilde yazıyı gizleyebiliriz */ }
    .glass-card { padding: 30px 20px; }
    .form-row { flex-direction: column; gap: 0; }
    .form-row .half { width: 100%; }
}
