body{
    margin:0;
    font-family:Arial;
    background:#f8f4ef;
    color:#2d2d2d;
}

/* MENÜ */
nav{
    background:#6d1f2f;

    display:flex;
    align-items:center;

    gap:50px;

    padding:15px 40px;
}

.logo{
    color:white;
    font-size:28px;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;

    margin:0;
    padding:0;
}

nav ul li a{
    color:white;
    text-decoration:none;
    font-weight:bold;
}

/* ANA KUTU */
.tarif-kutu{
    max-width:1000px;
    margin:40px auto;

    background:white;

    padding:30px;

    border-radius:20px;

    box-shadow:0 0 15px rgba(0,0,0,0.1);
}

/* FOTO */
.tarif-kutu img{
    width:100%;
    height:400px;

    object-fit:cover;

    border-radius:20px;
}

/* BAŞLIK */
h1{
    color:#6d1f2f;
}

/* AÇIKLAMA */
.aciklama{
    font-size:18px;
    line-height:1.6;
}

/* BİLGİ */
.bilgi{
    display:flex;
    gap:20px;

    margin:30px 0;
}

.bilgi-kart{
    flex:1;

    background:#f8e8d0;

    padding:20px;

    border-radius:15px;

    text-align:center;
}

/* LİSTE */
.liste li{
    margin:10px 0;
}

/* YAZI */
.yazi{
    line-height:1.8;
}

/* ŞEF */
.sef{
    display:flex;
    align-items:center;

    gap:20px;

    margin-top:40px;

    background:#fff4e6;

    padding:20px;

    border-radius:20px;
}

.sef img{
    width:250px;
    height:200px;

    object-fit:cover;

    border-radius:15px;
}

/* YORUM */
.yorumlar{
    margin-top:40px;
}

.yorum{
    background:#f4f4f4;

    padding:15px;

    border-radius:10px;

    margin-bottom:10px;
}

textarea{
    width:100%;
    height:120px;

    padding:15px;

    border-radius:15px;

    margin-top:15px;
}

/* BUTON */
button{
    margin-top:15px;

    background:#6d1f2f;
    color:white;

    border:none;

    padding:12px 25px;

    border-radius:10px;

    cursor:pointer;
}

button:hover{
    background:#a53860;
}