  /* OkyanusTur Header - Kırmızı Hover Düzenlemesi */
.main-header {
    background-color: #ffffff;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    display: flex !important;
    justify-content: space-between; 
    align-items: center;
    max-width: 95%; /* Logoyu en sola, sağ bloğu en sağa yaslar */
    margin: 0 auto;
    box-sizing: border-box;
}

 /* 1. SOL BLOK: Logo */
.logo {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    /* Büyüme ve parlamanın yumuşak geçiş yapması için */
    transition: transform 0.3s ease, filter 0.3s ease; 
}

/* LOGO HOVER: Hafif büyüme ve arkasında turkuaz/mavi ışık efekti */
.logo img:hover {
    transform: scale(1.05); /* %5 hafif büyüme */
    
    /* Beyaz zeminde net görünen, logoya uyumlu okyanus mavisi/turkuaz parlaması */
    filter: drop-shadow(0 0 12px rgba(0, 168, 204, 0.6)) drop-shadow(0 0 4px rgba(0, 168, 204, 0.3));
}

.logo p {
    font-size: 13px;
    font-weight: 800;
    margin: 8px 0 0 0;
    color: #333;
    letter-spacing: 0.5px;
}


/* 2. ORTA BLOK: Slogan */
.header-middle {
    flex: 1.5;
    text-align: center;
}

.header-middle h2 {
    color: #1f3c88;
    font-size: 26px;
    font-weight: 900;
    margin: 0;
}

.header-middle p {
    color: #cc0000; 
    font-style: italic;
    font-size: 18px;
    margin: 4px 0 0 0;
}

/* 3. SAĞ BLOK: Tel ve Kırmızı Hover Buton */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    flex: 1;
}

.contact-info {
    display: flex;
    flex-direction: column; /* İkon ve numaralar düzgünce alt alta */
    text-align: right;
}

.contact-info span {
    color: #1f3c88;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.4;
    display: block;
}

.contact-info i {
    margin-right: 8px;
    font-size: 18px;
}

/* BİZE YAZIN - KIRMIZI HOVER BUTON */
.bize-yazin-btn {
    background-color: #1f3c88; /* Varsayılan Mavi */
    color: #ffffff !important;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 800;
    font-size: 15px;
    transition: all 0.3s ease; /* Renk geçişini yumuşatır */
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: inline-block;
}

.bize-yazin-btn:hover {
    background-color: #cc0000; /* Üzerine gelince Beşiktaş Kırmızısı */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(204, 0, 0, 0.2);
}

/* MOBİL UYUMLULUK */
@media (max-width: 1024px) {
    .header-middle { display: none; }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .logo, .header-right {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    .contact-info {
        text-align: center;
    }
    .bize-yazin-btn {
        width: 100%;
    }
}