@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ribeye&display=swap');
*{
    padding: 0px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}
.container{
    background-color: #6495ed;
}
.menu{
    background-color: #8b8378;
    list-style-type: none;
    display: flex;
    justify-content: flex-start;
}
.menu li a{
    text-decoration: none;
    color: pink;
    display: block;
    padding: 15px;
    transition: all 0.5s;
}
.menu li a:hover{
    color: pink;
    background-color: beige;
}
.banner{
    background-image: url(resimler/banner.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 150px 0px 150px 0px;
    color: pink;
}
.banner h2{
    font-size: 72px;
    padding-left: 30px;
}
.hizmet{
    background-color: cornsilk;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0px 100px 0px;
    gap: 15px;
    text-align: center;
}
.urunler{
    width: 75%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.urun-kart{
    width: 250px;
    border: 1px solid #cccccc;
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.ustunuCiz{
    text-decoration: line-through;
}
.resim img{
    width: 100%;
}
.resim{
    border-bottom: 1px solid #cccccc;
    overflow: hidden;
    width: 100%;
}
.urun-kart a{
    display: block;
    text-decoration: none;
    background-color:cadetblue;
    color: beige;
    text-align: center;
    width: 100%;
    padding: 10px 0 10px 0;
    transition: all 0.5s;
}
.urun-kart a:hover{
    background-color: rgb(55, 163, 167);
    text-shadow: 
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #fff,
    0 0 42px #0fa,
    0 0 82px #0fa,
    0 0 92px #0fa,
    0 0 102px #0fa,
    0 0 151px #0fa;
}
.resim img{
    transition: all 0.5s;
}
.resim:hover img{
    scale: 1.2;
}
.iletisim{
    display: flex;
    justify-content: center;
    gap:30px;
    background-color: cornsilk;
    padding: 45px 10px 40px 10px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3a5f;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.box {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.box i {
    font-size: 30px;
    color: #2b6cb0;
    margin-bottom: 10px;
}

.box h3 {
    margin-bottom: 10px;
    color: #333;
}

.box p {
    color: #555;
    line-height: 1.5;
}
.map {
    margin: 0px 0px;
}
.map iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}
.form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form h2 {
    margin-bottom: 20px;
    color: #1e3a5f;
}

.form input,
.form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form textarea {
    resize: none;
    height: 120px;
}

.form button {
    background: cadetblue;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    width: 100%;
}

.form button:hover {
    background:#6495ed;
}
.hakkimizda{
    justify-content: center;
    gap:30px;
    background-color: cornsilk;
    padding: 45px 10px 40px 10px;
}
.hakkimizda h1{
    color: black;
    font-family: 'Ribeye';
    background: linear-gradient(
        to right, 
        #ff85a2 20%,  /* Bebek pembesi */
        #ffffff 40%,  /* Parıltı rengi (Beyaz) */
        #ffffff 60%,  /* Parıltı rengi (Beyaz) */
        #ff85a2 80%   /* Bebek pembesi */
    );
    background-size: 200% auto;
}
.footer{
    padding: 15px 0px 15px 0px;
    display: flex;
    justify-content: space-around;
    background-color: #8b8378;
    color: pink;
}
.yukari{
    background-color:#8b8378;
    width: 45px;
    border-radius: 5px;
    position: fixed;
    bottom: 15px;
    right: 15px;
}
.yukari a{
    display: block;
    text-decoration: none;
    color: pink;
    text-align: center;
    padding-top: 3px;
    font-weight: bold;
}
@media screen and (max-width:700px) {
    .menu,.urunler,.iletisim,.hakkimizda{
        flex-direction: column;
        align-items: center;
    }
    .menu li a{
        text-align: center;
    }
    .menu li{
        width: 100%;
    }
    .banner,.hizmet{
        padding: 25px 0px 25px 0px;
    }
    .banner ul{
        width:80%;
    }
    
}