/* Genel Ayarlar */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #4CAF50; /* Yeşil Tema */
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

h1, h2, h3 {
    color: #388E3C; /* Koyu Yeşil */
}

/* WhatsApp Bölümü Stili */
.whatsapp-section {
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.whatsapp-icon {
    width: 80px; /* whatsapp.png için boyut */
    height: 80px;
    margin: 10px;
    transition: transform 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1); /* Hover efekti */
}

.small-text {
    font-size: 0.9em;
    color: #777;
}

/* Fikirler Bölümü Stili */
.fikirler h2 {
    text-align: center;
    margin-bottom: 30px;
}

.fikir-galerisi {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.fikir-kart {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 250px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
    text-align: center;
}

.fikir-foto {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Kurallar Bölümü Stili */
.kurallar-listesi ol {
    list-style-type: none;
    padding: 0;
}

.kurallar-listesi li {
    margin-bottom: 20px;
    padding: 15px;
    border-left: 5px solid #4CAF50;
    background-color: #f9fff9;
    border-radius: 4px;
}

.kurallar-listesi h3 {
    margin-top: 0;
    color: #388E3C;
}

/* Footer Stili */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
    margin-top: 30px;
}

/* Link Stili */
a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
