 /* ===== GEMİ SAYFASI TEMELLERİ ===== */
.gemi-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BANNER (Görsel Alanı) ===== */
.gemi-banner {
    width: 100%;
    height: 750px; /* Görselin ve logonun tam sığacağı ideal yükseklik */
    background-image: url("../img/gemi.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Önemli: Taşan içerikleri engellemek için */
    overflow: hidden; 
}

/* ===== İNCE UZUN OVERLAY (Gemi ve Logoyu Kapatmayan) ===== */
.gemi-overlay-box {
    position: relative;
    z-index: 10;
    width: 85%;
    max-width: 850px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    text-align: center;
    /* Kutuyu yukarı çekerek gemi gövdesini ve logoyu açıyoruz */
    transform: translateY(-120px); 
}

.gemi-overlay-box h1 {
    font-size: 32px;
    color: #e10000;
    margin-bottom: 10px;
    font-weight: 800;
}

.gemi-overlay-box p {
    font-size: 17px;
    color: #000;
    font-weight: 600;
    margin-bottom: 15px;
}

.gemi-btn {
    display: inline-block;
    padding: 10px 35px;
    background: #e10000;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
}

/* ===== ALT BİLGİ BANDI (DARALTILMIŞ) ===== */
.gemi-content-band {
    background: #fff;
    padding: 30px 0; /* Beyaz boşluğu sigortadaki gibi daralttık */
    border-bottom: 1px solid #eee;
    width: 100%;
}

.gemi-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* ŞIK KART YAPISI */
.gemi-card {
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fafafa;
    transition: 0.3s;
}

.gemi-card i {
    font-size: 28px;
    color: #e10000;
    margin-bottom: 12px;
    display: block;
}

.gemi-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.gemi-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* MOBİL AYARLAR */
@media (max-width: 768px) {
    .gemi-banner { height: 500px; }
    .gemi-overlay-box { transform: translateY(0); width: 95%; }
    .gemi-info-grid { grid-template-columns: 1fr; }
}
