 /* ===== TATİL SAYFASI GENEL ===== */
.tatil-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Boşluklar milimetrik daraltıldı */
}

/* ===== TATİL BANNER ===== */
.tatil-banner {
    min-height: 850px; /* Görselin altını göstermek için ideal yükseklik */
    background-image: url("../img/tatil-0.png");
    background-size: cover;
    background-position: center bottom; /* Görselin altını baz alır */
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tatil-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* ===== TATİL OVERLAY (ŞEFFAF KUTU) ===== */
.tatil-overlay-box {
    position: relative;
    z-index: 2;
    padding: 22px 35px; /* Padding biraz daraltıldı */
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0, 0, 0, 0.7); /* Netlik için biraz daha koyu cam */
    backdrop-filter: blur(10px);
    color: white;
    text-align: center;
    max-width: 550px;
    margin-bottom: 25px; /* Alt ikonlara yaklaşması için */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.tatil-overlay-box i {
    font-size: 38px;
    margin-bottom: 12px;
    display: block;
}

/* ===== ŞIK KARTLAR BANDI (DARALTIŞMIŞ) ===== */
.tatil-content-band {
    background: #fff;
    padding: 15px 0 10px; /* Boşluklar aşırı düşürüldü */
    clear: both;
    border-bottom: 1px solid #eee;
}

.tatil-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 15px; /* Kartlar arası daraltıldı */
}

/* ===== ŞIK ÇERÇEVELİ KART (GERİ GETİRİLDİ) ===== */
.tatil-card {
    background: #fdfdfd;
    padding: 15px; /* Kart içi boşluk daraltıldı */
    border-radius: 10px;
    border: 1px solid #f1f1f1; /* Şık ince çerçeve */
    text-align: left; /* Ekran görüntüsündeki yapıya sadık kaldık */
    transition: 0.3s;
}

.tatil-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #e10000; /* Kırmızı vurgu */
}

.tatil-card i {
    font-size: 24px;
    color: #e10000;
    margin-bottom: 8px;
    display: block;
}

.tatil-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.tatil-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    margin: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .tatil-banner { min-height: 500px; }
    .tatil-overlay-box h1 { font-size: 26px; }
    .tatil-info-grid { grid-template-columns: 1fr; gap: 10px; }
}
