/**
 * Footer Styles
 * 25hours Hotel Theme
 */

/* ========================================
   Site Footer
   ======================================== */

.site-footer {
    background-color: var(--text-color);
    color: #fff;
    margin-top: auto;
}

/* ========================================
   Footer Widgets
   ======================================== */

.footer-widgets {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.footer-widget-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-widget {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 0.75rem;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget a:hover,
.footer-widget a:focus {
    color: var(--primary-color);
}

/* Widget Specific Styles */
.footer-widget .widget_text p:last-child {
    margin-bottom: 0;
}

.footer-widget .widget_nav_menu ul {
    list-style: none;
}

/* ========================================
   Footer Bottom
   ======================================== */

.footer-bottom {
    padding: 30px 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ========================================
   Footer Navigation
   ======================================== */

.footer-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
    color: var(--primary-color);
}

/* ========================================
   Social Links
   ======================================== */

.social-links {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover,
.social-icon:focus {
    color: #fff;
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 1024px) {
    .footer-widgets {
        padding: 60px 0 40px;
    }
    
    .footer-widget-area {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-widgets {
        padding: 40px 0 30px;
    }
    
    .footer-widget-area {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-navigation {
        order: 2;
    }
    
    .copyright {
        order: 1;
    }
    
    .social-links {
        order: 3;
    }
    
    .footer-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .footer-widgets {
        padding: 30px 0 20px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
}
