/* Genel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:  #333333;
}

h1 {
    font-size: 2em;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #333333;
    color: white;
    padding: 20px 0;
}

header .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

/* Hero Section */
.hero {
    background-color:  #333333;
    padding: 50px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2em;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero .btn-primary {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
}

.hero .btn-primary:hover {
    background-color: #555;
}

/* Popüler Tarifler */
.popular-recipes {
    padding: 40px 0;
    background-color:  #333333;
}

.popular-recipes .container {
    width: 80%;
    margin: 0 auto;
}

.recipes {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.recipe {
    background-color: grey;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 30%;
}

.recipe img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.recipe h3 {
    margin: 15px 0;
}

.recipe .btn-secondary {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.recipe .btn-secondary:hover {
    background-color: #555;
}

/* Tarif Detayları */
.recipe-detail {
    background-color: #333333;
    padding: 50px 0;
}

.recipe-detail .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.recipe-content h2 {
    font-size: 1.5em;
}

.recipe-content ul {
    list-style: none;
    padding: 0;
}

.recipe-content ol {
    list-style: decimal;
    padding-left: 20px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer .container {
    width: 80%;
    margin: 0 auto;
}

