*{
    padding: 0;
    margin: 0;
    color: cadetblue;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: rgb(155, 213, 228);
}

.kapsayici{
    background-color: rgb(40, 40, 40);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.kapsayici img{
    width: 5%;
    height: auto;
    cursor: pointer;
}

/* SEARCH BAR */
.navbar-search{
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-search input[type="text"]{
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 6px 0 0 6px;
    width: 200px;
}

.navbar-search button{
    padding: 10px 15px;
    border: none;
    background-color: royalblue;
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: 0.8s;
}

.navbar-search button:hover{
    background-color: rgb(60, 100, 255);
}

/* NAV MENU */
.kapsayici ol{
    display: flex;
    list-style: none;
    gap: 20px;
}

.kapsayici ol li a{
    text-decoration: none;
    padding: 10px 18px;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.8s;
}

.kapsayici ol li a:hover{
    background-color: cadetblue;
    color: black;
}


@media (max-width: 768px){
    .kapsayici{
        flex-direction: column;
        gap: 15px;
    }

    .kapsayici ol{
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* HERO BANNER */
.hero{
    width: 97,5%;
    height: 70vh;
    background: linear-gradient(to bottom right, #2b2b2b, #3f3f3f);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    color: white;
    padding: 20px;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
}

.hero h1{
    font-size: 48px;
    color: white;
}

.hero p{
    font-size: 20px;
    opacity: 0.8;
}

.hero-btns{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.btn{
    padding: 12px 28px;
    background-color: royalblue;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.8s;
    box-shadow: 0 5px 15px rgba(0,0,255,0.3);
}

.btn:hover{
    background-color: rgb(60, 100, 255);
    transform: translateY(-3px);
}

.btn-outline{
    background-color: transparent;
    border: 2px solid royalblue;
}

.btn-outline:hover{
    background-color: royalblue;
    color: white;
}


footer{
    background-color: rgb(30, 30, 30);
    color: cadetblue;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
    font-weight: bold;
    letter-spacing: 1px;
}

/* TELEFON UYUMU */
@media (max-width: 768px){
    .hero h1{
        font-size: 32px;
    }
    .hero p{
        font-size: 16px;
    }
    .hero-btns{
        flex-direction: column;
    }
}
.bolum{
    width: 97,5%;
    padding: 60px 40px;
    background-color: #2b2b2b;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    ;
}

.bolum h2{
    font-size: 32px;
    margin-bottom: 20px;
    color: cadetblue;
    text-align: center;
}

.bolum p{
    font-size: 20px;
    color: cadetblue;
    line-height: 1.6;
}
/* FORM TASARIMI */
.form{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 60%;
    margin: auto;
}

.form label{
    font-size: 18px;
    color: royalblue;
}

.form input{
    padding: 10px;
    border: 2px solid cadetblue;
    border-radius: 6px;
    font-size: 16px;
}

.form-btn{
    margin-top: 10px;
    padding: 12px;
    background-color: royalblue;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-btn:hover{
    background-color: rgb(60, 100, 255);
}


.detay-list{
    margin: 20px 0;
    padding-left: 20px;
}

.detay-list li{
    font-size: 18px;
    margin-bottom: 10px;
    color:royalblue;
}

.odevler-buton {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
   
    
}

.odev-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: cadetblue;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    text-align: center;
    transition: 0.3s;
}

.odev-btn:hover {
    background-color: rgb(60, 100, 255);
    transform: translateY(-2px);
}
img{
   margin: px 100px;
    
    border-radius: 50%;
}
html {
  scroll-behavior:smooth;
}




