@charset "utf-8";

:root {
    /* Ana renkler */
    --primary-color: #009be6;    /* Mavi tonu */
    --primary-dark: #e5007c;     /* Hover (üstüne gelince) için daha koyu ton */
    --secondary-color: #fff100;  /* Yeşil tonu */
    --text-color: #000000;       /* Genel metin rengi */
    
    /* Arka planlar */
    --bg-color: #ffffff;
        
    }

    *{
        width: 100%;
        box-sizing: border-box;
    }

@media screen and (max-width: 769px){

    body{
        margin: 0px;
        padding: 0px;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-image: url("images/arkaplan.jpg");
        background-repeat: repeat;
        background-attachment: fixed;
        background-position: center;
        background-size: 100px 100px;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    header{
        background-color: #ffffff;
        width: 80%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 1));
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .logo{
        width: 50%;
    }

    nav{
        margin-top: 15px;
    }

    nav ul{
        margin: 0px;
        padding: 0px;
    }

    nav ul li{
        list-style: none;
    }

    nav ul li a{
        display: block;
        min-height: 30px;
        text-decoration: none;
        text-align: center;
        line-height: 30px;
        color: #b0963b;
        background-color: #1a1004;
        margin-top: 2px;
        margin-bottom:2px;
        border-radius: 10px;
    }

    nav ul li a:hover{
        color: #1a1004;
        background-color: #b0963b;
        transition: background-color 200ms, color 200ms;
    }

    main{
        width: 80%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        margin-top: 20px;
        border-radius: 10px;
        filter: drop-shadow(0px 5px 10px #000000);
    }

    main h1{
        color: #b0963b;
        background-color: #1a1004;
        font-size: x-large;
        text-align: center;
        border-radius: 10px;
        padding: 20px;
        margin: 0px;
    }

    article{
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #b0963b;
        border-radius: 10px;
        padding: 20px;
        margin-top: 10px;
    }

    header.menuisim{
        margin: 0px;
        padding: 0px;
        background-color: #b0973b00;
        filter: none;
    }

    header.menuisim h2{
        margin: 0px;
        padding: 5px;
        text-align: center;
    }

    .fiyat{
        color: #1a1004;
        text-align: right;
        font-weight: bold;
    }

    footer{
        width: 80%;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        margin-top: 20px;
        border-radius: 10px;
        text-align: center;
    }

    footer a{
        color: #1a1004;
        text-decoration: none;
    }

    .tasarim{
        font-size: xx-small;
    }
}

@media screen and (min-width: 769px){

    body{
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #b0963b;
    }
}
