/* Genel stil ayarları */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:  #979595;
}

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;
}

/* Kategoriler */
.categories {
    padding: 50px 0;
    background-color: #979595;
}

.categories .container {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.categories h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.categories p {
    font-size: 1.2em;
    color: white;
    margin-bottom: 40px;
}

/* Kategori Listesi */
.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.category-item {
    height: 200px;
    width: 200px;
    background-color:  #333;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.category-item h3 {
    font-size: 1.5em;
    color: white;
    margin-top: 10px;
}

.category-item a {
    text-decoration: none;
    color: inherit;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer .container {
    width: 80%;
    margin: 0 auto;
}
