
.flip-card {
    perspective: 1000px;
    height: 300px;
    cursor: pointer;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}
.travel_area{
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
}
.travel_area2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0; /* daha açık gri */
}

.travel_area2:last-child {
    border-bottom: none;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
.travel_title{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}
.travel_point{
    font-size: 16px;
    font-weight: 700;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}
.travel_info{
    font-size: 14px;
}
.travel_text{
    font-size: 14px;
    font-style: italic;
}
.travel_image{
    aspect-ratio: 1;
    background-size: cover;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    margin: auto;
}
.cardimage{
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    width: 100%;
    height: 100%;
}

/* Hover efekti sadece flipped değilse */
.flip-card:hover:not(.flipped) .flip-card-inner{
    transform: scale(1.1) rotate(3deg);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 300px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* Tıklayınca dönme */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 300px;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.flip-card-front {
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-front .no-image {
    font-size: 48px;
    color: #ccc;
}

.flip-card-back {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-title {
    font-size: 24px;
    line-height: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.flip-card-description {
    font-size: 14px;
    line-height: 16px;
    overflow-y: auto;
    max-height: 200px;
}
