/*
 * LOCATIONS Page Styles - Q-Bab Burger
 */

* { box-sizing: border-box; margin: 0; padding: 0; }
        body { background: #0a0a0a; color: #fff; font-family: 'Roboto', sans-serif; }

        .loc-hero { margin-top: 80px; padding: 100px 40px; background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); text-align: center; position: relative; overflow: hidden; }
        .loc-hero h1 { font-family: 'Bebas Neue', cursive; font-size: 3.5rem; color: #f9a825; letter-spacing: 2px; margin-bottom: 1rem; }
        .loc-hero p { color: #ddd; max-width: 900px; margin: 0 auto; font-size: 1.1rem; line-height: 1.7; }

        .loc-container { max-width: 1200px; margin: 60px auto 100px; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
        .loc-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(249,168,37,0.25); border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
        .loc-name { font-family: 'Bebas Neue', cursive; font-size: 2rem; color: #f9a825; letter-spacing: 1px; margin-bottom: 12px; }
        .loc-address { color: #ccc; line-height: 1.7; margin-bottom: 18px; }
        .loc-actions { display: flex; gap: 12px; margin-top: 12px; flex-wrap: wrap; }
        .btn { display: inline-block; padding: 12px 18px; border-radius: 8px; border: 2px solid #f9a825; color: #f9a825; text-decoration: none; font-weight: 600; letter-spacing: 0.5px; transition: all 0.25s; }
        .btn:hover { background: #f9a825; color: #000; transform: translateY(-2px); }
        .btn-primary { background: #e74c3c; border-color: #e74c3c; color: #fff; }
        .btn-primary:hover { background: #c0392b; color: #fff; border-color: #c0392b; }

        .map { border-radius: 16px; overflow: hidden; border: 3px solid #f9a825; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
        .map iframe { width: 100%; height: 450px; border: 0; display: block; }

        .hours { margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; }
        .hours h3 { font-family: 'Bebas Neue', cursive; color: #f9a825; font-size: 1.6rem; letter-spacing: 1px; margin-bottom: 10px; }
        .hour-row { display: flex; justify-content: space-between; padding: 8px 0; color: #ccc; }
        .hour-row + .hour-row { border-top: 1px dashed rgba(255,255,255,0.08); }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: #ffffff;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-left h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: #f9a825;
            margin-bottom: 15px;
        }

        .footer-middle h3,
        .footer-right h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.3rem;
            color: #f9a825;
            margin-bottom: 15px;
        }

        .footer-middle p,
        .footer-right p {
            color: #cccccc;
            line-height: 1.8;
        }

        .footer-right a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-right a:hover {
            color: #f9a825;
        }

        .footer-phone {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(249, 168, 37, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f9a825;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: #f9a825;
            color: white;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-copyright {
            color: #cccccc;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #cccccc;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #f9a825;
        }

        .footer-payment {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .payment-icon {
            height: 30px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .payment-icon:hover {
            opacity: 1;
        }

        /* Mobile Navbar Fixes */
        @media (max-width: 768px) {
            .top-navbar {
                padding: 15px 20px 15px 100px !important;
                min-height: 60px !important;
            }

            .top-navbar.scrolled {
                padding: 10px 20px 15px 100px !important;
                min-height: 50px !important;
            }

            .nav-menu {
                display: none !important;
            }

            .site-logo {
                left: 15px !important;
            }

            .site-logo img {
                height: 50px !important;
            }
        }

        @media (max-width: 968px) {
            .loc-container { grid-template-columns: 1fr; }
            .loc-hero { padding: 70px 20px; }
            .loc-hero h1 { font-size: 2.5rem; }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
        }
