.oda-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin: 40px 0;
}

.oda-kutu-link {
    width: 31%;
    text-decoration: none;
    color: inherit;
    display: block;
}

.oda-kutu {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.oda-kutu:hover {
    transform: translateY(-5px);
}

.oda-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff;
}

.oda-baslik {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 8px;
}

.oda-detaylar {
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.oda-detaylar span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.oda-detaylar i {
    font-size: 16px;
}

/* Responsive Ayarlar */
@media (max-width: 1024px) {
    .oda-kutu-link {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .oda-kutu-link {
        width: 100%;
    }
}
