* Banner Career Css */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
  
}

.slider-option {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.slider-content-area {  
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 3;
}

/* Metin Efekti */
.effect-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
}

.hero-banner__title {
    font-size: 3.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff; /* Beyaz neon yazı */
    opacity: 0;
    animation: fade-in 2s ease-in-out forwards;
    z-index: 3;
    position: relative;
    font-family: "Quicksand", sans-serif !important;

    /* Yazı seçilebilsin */
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;

    /* Neon beyaz glow + 28a75 tonlu gölge */
    text-shadow:
        0 0 2.5px #ffffff,
        0 0 2.5px #ffffff,
        0 0 5px #ffffff,
        6px 6px 8px #28a75a;
}



.hero-banner__subtitle {
    font-size: 3.75rem; /* 60px yerine */
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    margin-top: 20px;
    animation: fade-in 2s ease-in-out forwards 0.5s;
    z-index: 3;
    position: relative;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-default-career-banner {
    padding: 1rem 2rem;
    background: #28a745;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-top: 50px;
    display: inline-block;
    position: relative;
    z-index: 3;
}

.btn-default-career-banner:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff !important;
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .hero-banner__title {
        font-size: 3rem;
    }
    .hero-banner__subtitle {
        font-size: 2rem;
    }
    .btn-default-career-banner {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
 
}
a {
    text-decoration: none; /* Alt çizgiyi kaldır */
    color: inherit; /* Varsayılan rengi koru */
}

a:focus,
a:active {
    outline: none; /* Kenarlık (focus) efektini kaldır */
    color: inherit; /* Tıklandığında rengi değiştirme */
    text-decoration: none;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Varsayılan: 1 sütun */
    gap: 20px; /* Elemanlar arası boşluk */
    padding: 20px;
}

/* Kart Stili */
.grid-item {
    background-color: white; /* Kart Arkaplanı Beyaz */
    color: #333; /* Yazı Rengi */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #28a745; /* Yeşil Border */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out; /* Hover animasyonu */
}

/* Hover efekti */
.grid-item:hover {
    transform: scale(1.05);
}

/* Görsel Container */
.grid-item .grid-img-cont {
    width: 100%; /* Kartın tam genişliğini kullan */
    max-width: 300px; /* Maksimum genişlik belirle */
    height: auto;
    padding: 20px; /* Görsel ile kart içeriği arasında boşluk */
}

/* Görsellerin taşmasını önleme */
.grid-item .grid-img-cont img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Görselin kırpılmasını engeller */
    border-radius: 5px; /* Hafif köşe yuvarlama */
}

/* More Butonu Stili */
.grid-item .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #28a745; /* Yeşil arka plan */
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}

/* More Butonu Hover Efekti */
.grid-item .btn:hover {
    background-color: #218838; /* Daha koyu yeşil */
}

/* Responsive Ayarlar */
@media (min-width: 601px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 sütun */
    }
}

@media (min-width: 1025px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr); /* Bilgisayar: 3 sütun */
    }
}

@media (min-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(4, 1fr); /* Büyük ekranlar: 4 sütun */
    }
}
