/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
}
hr {
    border: 0;
    border-bottom: solid 2px #eeeeee;
    margin: 3rem 0;
}

/* Genel Stiller */
.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url(image/ServicesBack.jpeg);
    background-size: cover;
    background-position: center;
}

.navbar {
    width: 85%;
    margin: auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}
.logo {
    width: 120px;
    cursor: pointer;
}
.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}
.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background: #ffc8ff;
    position: absolute;
    left: 0;
    bottom: -10px;  
    transition: 0.5s; 
}
.navbar ul li:hover:after {
    width: 100%;
}

.indexField {
    width: 100%;
    position: absolute;
    top: 30%;
    text-align: center;
    color: gainsboro;
}
.indexField h1 {
    font-size: 150px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 100px;
    color: goldenrod;
}
.indexField p {
    font-size: 20px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;
    color: darkgray;
}
.indexField h3 {
    font-size: 35px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 0px;
    color: darkgrey;
}

/* Kart ve İçerik Alanları */
.whapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fafafa;
    margin-top: 80px; /* Navbar ile çakışmayı önlemek için */
}
.whapper h1 {
    font-size: 3em;
    margin: 25px 0;
    text-align: center;
    font-weight: 500;
}
.content-box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 1000px;
    margin-top: 30px;    
}
.card {
    min-height: 220px;
    width: 320px;
    padding: 40px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    margin: 10px 4px;
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

/* Medya Sorguları */
@media screen and (max-width: 414px) {
    /* Mobil (360x640 - 414x896) */
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar ul {
        text-align: center;
    }
    .indexField h1 {
        font-size: 60px;
    }
    .indexField p {
        font-size: 16px;
    }
    .card {
        width: 280px;
        margin: 15px auto;
    }
}

@media screen and (min-width: 601px) and (max-width: 1280px) {
    /* Tablet (601x962 - 1280x800) */
    .navbar {
        width: 90%;
        padding: 20px 0;
    }
    .content-box {
        width: 90%;
    }
    .indexField h1 {
        font-size: 100px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1920px) {
    /* Masaüstü (1280x720 - 1920x1080) */
    .navbar {
        width: 80%;
        padding: 30px 0;
    }
    .content-box {
        width: 1200px;
    }
    .indexField h1 {
        font-size: 120px;
    }
} /* Son */

