/* ==========================================================================
   Premium UI/UX Core Styles - Merkez Temizlik
   Awwwards & FWA Inspired Architecture
   ========================================================================== */

   :root {
    --color-bg: #030712; /* Slate 950 - Deepest Dark */
    --color-surface: #0f172a; /* Slate 900 */
    --color-surface-light: #1e293b; /* Slate 800 */
    --color-primary: #3b82f6; /* Blue 500 */
    --color-accent: #d4af37; /* Luxury Gold */
    --color-text: #f8fafc; /* Slate 50 */
    --color-text-muted: #94a3b8; /* Slate 400 */
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  }
  
  /* Reset & Base */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: auto; /* Let Lenis/GSAP handle smooth scroll */
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Selection */
  ::selection {
    background-color: var(--color-primary);
    color: #fff;
  }
  
  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
  }
  ::-webkit-scrollbar-track {
    background: var(--color-bg); 
  }
  ::-webkit-scrollbar-thumb {
    background: var(--color-surface-light); 
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary); 
  }
  
  /* Custom Cursor */
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-primary);
    background-color: transparent;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), background-color 0.3s ease, border-color 0.3s ease;
  }
  .custom-cursor.hover {
    width: 50px;
    height: 50px;
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--color-accent);
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  
  .text-outline {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-text-muted);
    transition: color 0.5s ease;
  }
  .text-outline:hover {
    color: var(--color-text);
    -webkit-text-stroke: 1px transparent;
  }
  
  /* Preloader container logic handled via Tailwind in HTML */
  #preloader {
    position: fixed;
    inset: 0;
    background-color: var(--color-bg); /* bg-slate-950 ile değiştirildi HTML içinde, ancak emin olmak için burayı da kontrol edelim */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  /* Glassmorphism */
  .glass {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  /* Hide Google Translate Default UI completely */
  .goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon { display: none !important; }
  body { top: 0px !important; }
  #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
  .goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }
  font { background-color: transparent !important; }

  /* Hero Section Parallax */
  .hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
  }
  
  /* Buttons */
  .btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--color-bg);
    background: var(--color-text);
    border-radius: 100px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 1;
  }
  .btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
  }
  .btn-premium:hover {
    color: #fff;
    cursor: none;
  }
  .btn-premium:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  /* Bento Grid Cards */
  .bento-card {
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
  }
  .bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
  }
  
  /* Form Inputs */
  .input-premium {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  .input-premium:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255,255,255,0.05);
  }
  
  /* Utilities for GSAP */
  .reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .reveal-text span {
    display: inline-block;
  }
