/* Honda Slider Styles */
.honda-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 120px; /* Menü ile slider arasında daha fazla boşluk */
    margin-bottom: 40px;
    overflow: hidden;
}

.honda-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #f0f0f0; /* Gri arka plan */
    border: 0.5px solid #cccccc; /* Daha açık gri çizgi */
    border-top-left-radius: 8px; /* Sadece üst köşeler bombeli */
    border-top-right-radius: 8px;
    border-bottom: none; /* Alt çizgi yok */
}

.honda-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.honda-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.honda-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Bilgi Kutusu Container (Resmin ALTINDA) */
.honda-slider-info-container {
    position: relative;
    padding: 20px;
    background-color: #fff;
    border-left: 0.5px solid #cccccc; /* Daha açık gri çizgi */
    border-right: 0.5px solid #cccccc; /* Daha açık gri çizgi */
    border-bottom: 0.5px solid #cccccc; /* Daha açık gri çizgi */
    border-bottom-left-radius: 8px; /* Sadece alt köşeler bombeli */
    border-bottom-right-radius: 8px;
}

.honda-slide-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative; /* Buton için pozisyon referansı */
}

.slide-info-content {
    flex: 1;
    padding-right: 120px; /* Buton için yer açma */
}

.model-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-style: italic; /* Başlığı italik yap */
}

.slide-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 5px 0 0 0;
    font-style: italic; /* Sloganı italik yap */
}

/* Buton - Sağ alt köşede */
.slide-button {
    display: inline-block;
    background-color: #CC0000;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    padding: 10px 20px;
    border-radius: 4px;
    white-space: nowrap;
    position: absolute;
    right: 0;
    bottom: 0;
}

.slide-button:hover {
    background-color: #AA0000;
    color: white;
}

/* Navigasyon Okları */
.honda-slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.honda-slider-prev,
.honda-slider-next {
    position: absolute;
    background: rgba(255,255,255,0.7);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    pointer-events: auto;
    transition: background 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honda-slider-prev { left: 20px; }
.honda-slider-next { right: 20px; }

.honda-slider-prev:hover,
.honda-slider-next:hover {
    background: #CC0000;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .honda-slider-container { margin-top: 80px; } /* Mobilde daha az boşluk */
    .honda-slider { height: 400px; }
    .honda-slide-info { flex-direction: column; align-items: flex-start; }
    .slide-info-content { padding-right: 0; }
    .slide-button { 
        position: static;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .honda-slider-container { margin-top: 60px; } /* Küçük ekranlarda daha da az boşluk */
    .honda-slider { height: 300px; }
    .model-name { font-size: 1.5rem; }
    .slide-subtitle { font-size: 1rem; }
    .slide-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
