
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');


@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat.ttf') format('truetype');
}

:root {
    --primary-color: #0EA5E9;
    --primary-color-low: rgba(14, 165, 233, 0.15);
    --primary-color-dark: #0369A1;

    --secondary-color: #FB7185;
    --secondary-color-low: rgba(251, 113, 133, 0.15);
    --secondary-color-dark: #BE123C;

    --tertiary-color: #FFFFFF;
    --tertiary-color-low: rgba(255, 255, 255, 0.6);
    --tertiary-color-dark: #E6E6E6;

    --bg-color: #e7e7e7;
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e4e7eb;

    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #0369A1;
    --button-color-low: rgba(3, 105, 161, 0.5);
    --button-color-dark: #075985;

    --card-bg: #fcfcfc;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);
}


*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    display: flex;
    position: relative;
}

.custom-cursor {
    display: none !important;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none; 
    align-items: center;
    justify-content: center;
    background: #ffffff;
    will-change: opacity;
}

.page-loader .loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    will-change: transform, opacity;
    opacity: 0;
}

.page-loader .loader-sprite {
    transform: scale(0.4) rotate(-10deg);
    margin-bottom: -135px;
    margin-top: -115px;
}

.page-loader .loader-logo-text {
    width: 100px;
    height: auto;
    opacity: 0.9;
    margin-top: -10px;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.page-loader .loader-bar-track {
    width: 100px;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.page-loader .loader-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    will-change: width;
    box-shadow: 0 0 8px rgba(147, 60, 201, 0.3);
}

.page-loader.loader-hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
}

/* Mobilde InvertedRadius dekorları kapalı (JS ile de kapatılır; yedek kural) */
@media (max-width: 768px) {
    [data-inverted-corner] {
        overflow: hidden !important;
    }

    [data-inverted-corner] [data-corner]:not(.quick-contact-corner):not(.footer-brand-social-inverted) {
        display: none !important;
    }

    [data-shape] {
        clip-path: none !important;
        -webkit-clip-path: none !important;
    }

    .quick-contact-corner[data-corner],
    .footer-brand-social-inverted[data-corner] {
        position: relative !important;
        inset: auto !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        max-width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}
