/* Ana stil tanımları */
body {
    font-family: theme('fontFamily.sans');
    color: #333;
    line-height: 1.6;
}

/* Prose sınıfı için özel stiller */
.prose {
    max-width: 65ch;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose a {
    color: theme('colors.primary');
    text-decoration: none;
    transition: opacity 0.2s;
}

.prose a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Mobil menü animasyonu */
.mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Galeri resimleri hover efekti */
.gallery-image:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Admin paneli özel stilleri */
.admin-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.admin-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

/* Responsive resimler */
.img-responsive {
    max-width: 100%;
    height: auto;
}

/* Özel buton stilleri */
.btn-primary {
    background-color: theme('colors.primary');
    color: white;
    transition: all 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}