/* --- FONT TANIMLAMALARI --- */
/* Font dosyalarinin assets/fonts klasöründe oldugundan emin olun */
@font-face {
    font-family: 'GothamBlack';
    src: url('../fonts/GothamBlack.otf');
}
@font-face {
    font-family: 'Alber-Bold';
    src: url('../fonts/Alber-Bold.otf');
}
@font-face {
    font-family: 'Alber-Regular';
    src: url('../fonts/Alber-Regular.otf');
}
@font-face {
    font-family: 'GothamLight';
    src: url('../fonts/GothamLight.otf');
}
@font-face {
    font-family: "twemoji";
    src: url('../fonts/flag-font/Twemoji.Mozilla.ttf') format("truetype");
}

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

html {
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: 'Alber-Regular', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Footer'i asagi itmek için */
}

/* Footer'in asagida kalmasini garantileyen kapsayici */
#page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Icerik az olsa bile alani doldurur */
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* --- TİPOGRAFİ --- */
.font-header {
    font-family: 'GothamBlack', sans-serif;
}

.font-text {
    font-family: 'GothamLight', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'GothamBlack', sans-serif;
}

p {
    font-family: 'GothamLight', sans-serif;
}

/* --- RENK DEĞİŞKENLERİ --- */
:root {
    --primary-dark: #0D0D0D;
    --primary-gray: #adb5bd;
    --primary-blue: #2860aa;
    --primary-white: #f0f1f5;
}

.bg-custom-dark {
    background-color: var(--primary-dark);
}

.text-custom-dark {
    color: var(--primary-dark);
}

.bg-custom-gray {
    background-color: var(--primary-gray);
}

.bg-custom-blue {
    background-color: var(--primary-blue);
}

.text-custom-blue {
    color: var(--primary-blue);
}

.bg-gradient {
    background-image: linear-gradient(164deg, #3985f6 32%, #1d3856 153%);
}

/* --- ÖZEL BİLEŞENLER --- */
.accordion-content {
    transition: max-height .3s ease-out, padding .3s ease;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* --- OWL CAROUSEL (SLIDER) AYARLARI --- */
.slider-container {
    width: 100%;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    background-color: transparent !important;
    border: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    outline: none;
}

.owl-prev {
    left: 6rem;
}

.owl-next {
    right: 6rem;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: transparent !important;
}

.owl-carousel .item img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
}

/* Slider Animasyonları (Aktif olan büyür, diğerleri küçülür) */
.owl-carousel .owl-item {
    transition: transform .5s ease, opacity .5s ease;
}

.owl-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.owl-carousel .owl-item:not(.center) {
    opacity: .5;
    transform: scale(.9);
}

.owl-carousel .owl-stage-outer {
    max-height: 600px; /* Slider yüksekliği taşmasın */
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Slider Noktaları (Dots) */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #fff !important;
    margin: 0 5px;
    background-color: transparent !important;
    outline: none;
}

.owl-dots .owl-dot span {
    background-color: transparent !important;
}

.owl-dots .owl-dot.active {
    background-color: #fff !important;
}

.owl-dots .owl-dot.active span {
    background-color: transparent !important;
}

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media screen and (max-width: 992px) {
    .owl-prev, .owl-next {
        font-size: 20px;
        width: 75px;
        height: 75px;
    }
    .owl-prev { left: 3rem; }
    .owl-next { right: 3rem; }
}

@media screen and (max-width: 768px) {
    .owl-prev, .owl-next {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }
    .owl-prev { left: 2rem; }
    .owl-next { right: 2rem; }
}

@media screen and (max-width: 480px) {
    .owl-prev, .owl-next {
        font-size: 16px;
        width: 30px;
        height: 30px;
    }
    .owl-prev { left: 10px; }
    .owl-next { right: 10px; }
}