/*
Theme Name: Temptation Indian Fusion
Author: Mutahir Hussain
Author URI: https://linkdin.com/in/mutahirhussain
Description: Custom theme for Temptation Indian Fusion restaurant
Version: 1.0
Text Domain: temptation
*/


 /* Footer with requested background */
    .footer-section {
        background: #000
          url("https://static.spotapps.co/website_images/ab_websites/286935_website_v1/contact_bg.jpg")
          center/cover no-repeat;
        color: white;
        padding: 80px 0 30px;
        position: relative;
    }

    .footer-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.85);
    }

    .footer-section .container {
        position: relative;
        z-index: 1;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-column h5 {
        color: #e3af7f;
        margin-bottom: 20px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .footer-column p,
    .footer-column a {
        color: #ccc;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
        transition: color 0.3s ease;
    }

    .footer-column a:hover {
        color: #e3af7f;
    }

    .footer-bottom {
        border-top: 1px solid #333;
        padding-top: 20px;
        text-align: center;
        color: #999;
    }
