/* GENEL BANNER TASARIMI */
.ny-banner {
    background: #ec3b3b; /* Yılbaşı kırmızısı */
    color: #fff;
    padding: 12px 0;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.ny-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    z-index: 2; /* Kar tanelerinin üstünde kalması için */
}

/* YAZI EFEKTLERİ */
.ny-title {
    font-size: 16px;
    display: block;
    font-weight: bold;
    letter-spacing: 0.5px;
    animation: nyGlow 1.5s ease-in-out infinite alternate;
}

.ny-sub {
    font-size: 13px;
    display: block;
    opacity: 0.9;
}

/* GERİ SAYIM ALANI */
.ny-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.ny-seg {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: nyPulse 2s infinite;
}

.ny-num {
    display: block;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.ny-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    margin-top: 2px;
}

.ny-colon {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

/* KAR YAĞMA EFEKTİ */
.ny-snow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(3px 3px at 110px 110px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 150px 130px, #fff, rgba(0,0,0,0));
    background-size: 200px 200px;
    animation: nySnowAnim 4s linear infinite;
}

/* ANİMASYON TANIMLARI */
@keyframes nySnowAnim {
    from { background-position: 0px 0px; }
    to { background-position: 100px 200px; }
}

@keyframes nyGlow {
    from { text-shadow: 0 0 5px #fff, 0 0 10px #fff; transform: scale(1); }
    to { text-shadow: 0 0 10px #fff, 0 0 20px #ffb3b3; transform: scale(1.02); }
}

@keyframes nyPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* MOBİL (RESPONSIVE) DÜZENLEMELER */
@media (max-width: 767px) {
    .ny-banner {
        padding: 10px 0;
    }
    
    .ny-title {
        font-size: 13px;
        padding: 0 15px;
        line-height: 1.2;
    }

    .ny-sub {
        font-size: 11px;
    }

    .ny-countdown {
        transform: scale(0.85);
        margin-top: 4px;
    }

    /* Menü butonunun banner altında kalmaması için itme payı */
    #horizontal-menu .btn-navbar, 
    #additional-menu .btn-navbar,
    .navbar-toggle {
        margin-top: 15px !important;
        position: relative;
        z-index: 10000;
    }

    /* Header ve menü içeriği için boşluk */
   
}

footer {
  padding-top: 40px;
  background-color: #efefef;
  border-top: 1px solid #eee;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

footer h5 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  color: #000;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #ef7c18; /* Sitenin ana rengine göre değiştir */
}

.social-links a {
  font-size: 18px;
  margin-right: 15px;
  color: #3b5998; /* Facebook rengi */
}

.social-links a i.fa-instagram {
  color: #e4405f;
}

/* Bülten Kutusu */
.newsletter-box {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-box input {
  border-radius: 4px 0 0 4px;
  border: 1px solid #ddd;
}

.btn-news {
  background: none;
  border: 1px solid #ddd;
  border-left: none;
  padding: 0 15px;
  border-radius: 0 4px 4px 0;
  color: #ef7c18;
}

/* İletişim Detayları Kutuları */
.footer-contact-info {
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
}

.info-item i {
  font-size: 20px;
  margin-right: 12px;
  color: #333;
}

.info-item span {
  font-size: 12px;
  line-height: 1.4;
  color: #555;
}

/* Ödeme İkonları */
.payment-icons img {
  max-height: 35px;
  margin: 10px 15px;
  filter: grayscale(0); /* Renkli ikonlar için */
  opacity: 0.9;
}