/* Homepage */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Arka Plan ve Navbar İçin Düzenleme */
html {
    scroll-behavior: smooth;
}

.homepage-body {
    padding-top: 65px; /* Sadece homepage için navbar yüksekliği kadar boşluk bırak */
}

.homepage {
    padding-top: 50px; /* Navbar yüksekliği kadar boşluk bırak */
    position: relative;
    width: 100%;
}

.homepage::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.homepage .content {
    position: relative;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.homepage .text {
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
}

.homepage .text h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    font-family: Arial, sans-serif;
}

.homepage a {
    color: #333;
    text-decoration: none;
    background: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    border: 2px solid #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    font-size: 18px;
    transition: 0.3s;
    font-family: Arial, sans-serif;
    margin-top: 15px;
}

.homepage a:hover {
    color: #fff;
    background: rgba(255,255,255,0.3);
}

@media only screen and (max-width: 768px) {
    .homepage {
        position: relative;
        height: 100vh;
        width: 100%;
        background-position: center;
        background-size: cover;
        overflow: hidden;
    }

    .homepage .text h1 {
        font-size: 20px;
        color: white;
    }

    .homepage a {
        font-size: 16px;
        padding: 8px 20px;
    }

    .homepage .text {
        font-size: 14px;
    }
}

/*  — küçük ekranlar için animasyonu kapat (istersen) — */
@media (max-width:768px){
    .homepage::after { animation: none; }   /* sabit görsel */
}

/*  — kullanıcının “motion off” tercihini dinle — */
@media (prefers-reduced-motion:reduce){
    .homepage::after { animation: none; }
}
