/* ================================
   TAM EKRAN HERO
================================ */
.hero {
    width: 100%;
    height: 100vh;              /* TAM EKRAN */
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* FOTOĞRAFI TAM EKRANA OTURTUR */
    object-position: center;
    display: block;
}

/* HERO YAZISI */
.hero .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    z-index: 20;
}

.hero .overlay h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero .overlay div {
    font-size: 18px;
    opacity: 0.9;
}

/* ================================
   AÇIKLAMA METNİ
================================ */
.description {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-size: 16px;
    color: #222;
    line-height: 1.7;
}

/* ================================
   GALERİ
================================ */
.gallery {
    width: 94%;
    max-width: 1400px;
    margin: 60px auto 120px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .3s;
}

.gallery img:hover {
    transform: scale(1.04);
}

@media(max-width: 992px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/* ================================
   BODY OVERRIDE (DETAY SAYFASI)
================================ */
body {
    background: #fff !important;
    color: #000 !important;
}
