/*
=========================================================
  __  __ _    _ _______ _      _    _ 
 |  \/  | |  | |__   __| |    | |  | |
 | \  / | |  | |  | |  | |    | |  | |
 | |\/| | |  | |  | |  | |    | |  | |
 | |  | | |__| |  | |  | |____| |__| |
 |_|__|_|\____/   |_|  |______|\____/ 
 |  __ \_   _| |  | |__   __|/ \   | |
 | |  | || | | |  | |  | |  / _ \  | |
 | |  | || | | |  | |  | | / ___ \ | |____ 
 | |__| || |_| |__| |  | |/_/   \_\|______|
 |_____/_____|\____/   |_|                  

 MUTLU DİJİTAL
 Samet Mutlu
 +05422419932
 mutludijital.com.tr
=========================================================
*/

/* Custom CSS extensions for the premium dark industrial aesthetic */
::selection {
    background-color: #FDBB11;
    color: #0B131D;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0B131D;
}
::-webkit-scrollbar-thumb {
    background: #1a2639;
}
::-webkit-scrollbar-thumb:hover {
    background: #FDBB11;
}

/* Text transition animation for hero */
.text-cycle {
    display: inline-block;
    min-width: 300px;
    transition: opacity 0.5s ease-in-out;
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
