/* Enhanced Footer Styles */

/* Footer Base Styles */
.footer {
    background-color: #f5f5f7;
    padding: 60px 20px 40px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Footer Section Styles */
.footer-section {
    padding: 0 10px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #c8a97e, #e2d1b2);
}

/* Enhanced Quick Links Styling */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.footer-section ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    color: #c8a97e;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c8a97e;
    padding-left: 15px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(10px);
}

/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    color: #555;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    background-color: #c8a97e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: #777;
    font-size: 14px;
}

/* Book Now Button in Footer */
.footer-section .book-now-btn {
    display: inline-block;
    background: linear-gradient(to right, #c8a97e, #e2d1b2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(200, 169, 126, 0.3);
}

.footer-section .book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(200, 169, 126, 0.4);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 30px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section ul li a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-section ul li:hover {
        transform: none;
    }
    
    .footer-section ul li a:hover {
        padding-left: 0;
    }
    
    .footer-section ul li a::before {
        display: none;
    }
}
