/* Footer Styles */
.akaf-custom-footer {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #ffffff;
    margin-top: 2rem;
    padding: 1.5rem 0;
    width: 100%;
}

.akaf-footer-content {
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.akaf-footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.akaf-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Logo Container */
.akaf-logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.akaf-logo {
    width: 80px;
    height: auto;
    background: white;
    padding: 5px;
    border-radius: 5px;
}

/* Title Styles */
.akaf-info-section h4 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

/* Content Styles */
.akaf-info-section p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
}

.akaf-info-section i {
    width: 20px;
    text-align: center;
}

.akaf-info-section a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.akaf-info-section a:hover {
    text-decoration: underline;
}

.akaf-social-icons {
    display: flex;
    gap: 1rem;
}

.akaf-social-icons a {
    color: #ffffff;
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.akaf-footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.akaf-copyright {
    margin: 0;
    direction: ltr !important;
}

/* RTL Styles - Fixed Alignment */
[dir="rtl"] .akaf-info-section {
    align-items: flex-start;
}

[dir="rtl"] .akaf-info-section h4 {
    width: 100%;
    text-align: right;
}

[dir="rtl"] .akaf-info-section p {
    flex-direction: row-reverse;
    text-align: right;
    justify-content: flex-start;
}

[dir="rtl"] .akaf-info-section p i {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .akaf-info-section a {
    text-align: right;
}

[dir="rtl"] .akaf-social-icons {
    justify-content: flex-start;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .akaf-footer-info {
        grid-template-columns: 1fr;
    }

    .akaf-info-section,
    [dir="rtl"] .akaf-info-section {
        align-items: center;
    }

    .akaf-info-section h4,
    [dir="rtl"] .akaf-info-section h4 {
        text-align: center;
        width: 100%;
    }

    .akaf-info-section p,
    [dir="rtl"] .akaf-info-section p {
        justify-content: center;
        width: 100%;
    }

    .akaf-social-icons,
    [dir="rtl"] .akaf-social-icons {
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.akaf-footer-info > div {
    animation: fadeIn 0.5s ease-out forwards;
}

.akaf-footer-info > div:nth-child(2) {
    animation-delay: 0.2s;
}

.akaf-footer-info > div:nth-child(3) {
    animation-delay: 0.4s;
}

/* Dark Theme Support */
.dark-theme .akaf-custom-footer {
    background-color: var(--darker-color, #121212);
}

/* RTL Support */
[dir="rtl"] .akaf-info-section {
    align-items: flex-end;
}

[dir="rtl"] .akaf-info-section p {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 768px) {
    .akaf-custom-footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .akaf-footer-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .restaurant-info {
        align-items: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .akaf-social-icons {
        justify-content: center;
    }

    [dir="rtl"] .restaurant-info,
    [dir="rtl"] .contact-info p {
        align-items: center;
    }
} 