body {
    font-family: 'Raleway', sans-serif;
}

/* === RESİM GALERİ === */
.uygulama {
  margin-bottom: 30px;
}

.uygulama img {
  width: 100%;
  border-radius: 20px;
}

.uygulama a {
  color: #000;
}

.uygulama a:hover {
  color: #eb2b41;
}

/* === FADE SLIDER (resimle direkt ilgili) === */
.fade-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.fade-slider img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    max-width: 100%;
}

.fade-slider img.active {
    opacity: 1;
    position: relative;
}

/* === HERO RESİM ALANI === */
.hero-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 70vh;
}

/* === SAĞ BÜYÜK GÖRSEL === */
.sag-buyuk-img {
    width: 120%;
    position: relative;
    right: -80px;
    border-radius: 12px;
    display: block;
    max-width: none;
}

@media (max-width: 768px) {
    .sag-buyuk-img {
        width: 100%;
        right: 0;
        margin-top: 20px;
    }
}