/* ================= FOOTER ================= */

.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-text {
    display: inline-block;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}
.footer-logo-text:hover {
    color: var(--gold) !important;
}
.footer-contact {
    margin-top: 18px;
    padding: 0;
    list-style: none;
}
.footer-contact li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 0;
}
.footer-contact li span {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.footer-column h3 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-column p,
.footer-column ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column a {
    color: var(--white);
    transition: color 0.3s ease;
}
.footer-column a:hover {
    color: var(--gold);
}

/* Newsletter */
.newsletter-form input {
    padding: 10px;
    border-radius: 8px;
    border: none;
    flex: 1;
}
.newsletter-form button {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.newsletter-form button:hover {
    background: var(--white);
    color: var(--primary);
}

/* Working Hours */
.hours-list {
    list-style: none;
    margin-top: 15px;
}
.hours-list li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Social Icons */
.footer-social {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 14px;
}
.social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    transition: all 0.3s ease;
}
.social-icon svg {
    width: 18px;
    height: 18px;
}
.social-icon:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Bottom */
.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}
