@import url('https://fonts.googleapis.com/css?family=Cinzel:400,700|Uncial+Antiqua');


/* Footer Styles */
.footer {
    direction: rtl;
    background: linear-gradient(135deg, #3c1053, #cb3066);
    padding: 40px 20px;
    border-top: 2px solid #d4af37;
    /* Gold accent border */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-col h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #f8f1e7;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.about-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.1rem;
}

#f-about {
    color: black;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 32px;
    height: 32px;
}

.social-icons a img {
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

/* Footer Bottom */
.footer-bottom {
    direction: ltr;
    font-weight: 600 bold;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    font-size: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #f8f1e7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        flex: 1 1 100%;
        max-width: 500px;
        margin-bottom: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 10px;
    }

    .footer-col h3 {
        font-size: 1.3rem;
    }

    .footer-col ul li a {
        font-size: 1rem;
    }

    .about-section p {
        font-size: 1rem;
    }

    .social-icons a {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        font-size: 0.9rem;
    }
}