/* Footer Genel Yapısı */
.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 0 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 0 5%;
    padding-bottom: 50px;
}

/* Logo ve Yazılar */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span {
    display: block;
    font-size: 0.8rem;
    color: #e9c4c4;
    letter-spacing: 3px;
}

.footer-about {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Başlıklar */
.footer-content h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e9c4c4;
}

/* Linkler ve İletişim */
.footer-links, .footer-contact, .footer-hours {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li, .footer-hours li {
    margin-bottom: 15px;
    color: #b3b3b3;
    font-size: 0.9rem;
}

.footer-links a {
    text-decoration: none;
    color: #b3b3b3;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #e9c4c4;
    padding-left: 8px;
}

.footer-contact i {
    color: #e9c4c4;
    margin-right: 10px;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
}

.footer-hours .closed span {
    color: #ff6b6b;
}

/* Sosyal Medya */
.footer-socials a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.4s;
}

.footer-socials a:hover {
    background: #e9c4c4;
    color: #1a1a1a;
    transform: translateY(-5px);
}

/* Alt Bar */
.footer-bottom {
    background: #111;
    padding: 20px 5%;
    border-top: 1px solid #333;
    margin-top: 20px;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #777;
}

/* WIZARD AJANS İMZASI - Renkli Dalgalanma Efekti */
.wizard-text {
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 1px;
    background: linear-gradient(
        to right, 
        #ff00cc, #3333ff, #00ffcc, #ff00cc
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: waveGradient 3s linear infinite;
}

/* Linkin alt çizgisini ve varsayılan rengini temizle */
.wizard-link {
    text-decoration: none;
    display: inline-block;
}


@keyframes waveGradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .bottom-container {
        flex-direction: column;
        text-align: center;
    }
}