/* === Restaurants Page - Unique Styles ===
   Shared base styles are in functionPages.css
*/

main {
            overflow: hidden;
        }

        :root {
            --background: #ffffff;
            --sec-background: #eff4ff;
            --element-background: #ffffff;
            --accent: #155dee;
            --accent-hover: #163cc4;
            --secondary: #155dee;
            --secondary-dark: #163cc4;
            --border: #d2d2d2;
            --text: #101828;
            --faded-text: #344054;
            --accent-text: #ffffff;
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
            --error: #dc3545;
        }

        .container {
            width: 100%;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            a:hover {
                color: var(--accent-hover);
            }

        .feature-page {
            position: relative;
            width: 100%;
        }

            .feature-page section {
                position: relative;
                padding: 4rem 2rem;
                width: 100%;
            }

        .feature-hero {
            position: relative;
            padding: 8rem 0 6rem;
            background: #eff4ff;
            color: var(--text);
            margin-bottom: 0;
            overflow: hidden;
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .feature-hero .hero-video {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                z-index: 0;
                opacity: 0.6;
            }

            .feature-hero .hero-content {
                position: relative;
                z-index: 1;
                text-align: center;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 1rem;
                animation: floatUp 1s ease-out;
            }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            animation: floatUp 1s ease-out;
        }

        .feature-hero h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--text);
            line-height: 1.3;
        }

        .feature-hero .text-blue {
            color: var(--accent);
        }

        .feature-hero p {
            font-size: 1.25rem;
            color: var(--faded-text);
            max-width: 600px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            opacity: 0;
            animation: floatUp 1s ease-out 0.3s forwards;
        }

        .feature-overview {
            padding: 4rem 2rem;
            background-color: var(--element-background);
            position: relative;
        }

        .row {
            display: flex;
            align-items: center;
            gap: 3rem;
            padding: 20px 0;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

            .row.reverse {
                flex-direction: row-reverse;
            }

        .col-lg-6 {
            flex: 1;
            min-width: 0;
        }

        .feature-image {
            position: relative;
            margin-bottom: 2rem;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow-lg);
            transition: all 0.5s ease;
        }

            .feature-image img {
                width: 100%;
                height: auto;
                display: block;
                transition: transform 0.5s ease;
            }

        .feature-content {
            padding: 2rem 0;
        }

            .feature-content h2 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
                color: var(--accent);
                line-height: 1.3;
            }

            .feature-content p {
                font-size: 1.1rem;
                margin-bottom: 1rem;
                color: var(--faded-text);
                line-height: 1.6;
            }

        .feature-highlights {
            margin-top: 3rem;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem 0;
        }

        .highlight-icon {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            background: var(--sec-background);
            border: 1px solid var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 2rem;
            flex-shrink: 0;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }

        .card-link svg {
            width: 15px;
            fill: #155dee;
            margin-right: 5px;
        }

        .highlight-icon svg, .card-icon svg, .showcase-icon svg, .related-icon svg {
            fill: #155dee;
            width: 40px;
        }

        .showcase-icon svg {
            width: 30px;
        }

        .highlight-text h3 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .highlight-text p {
            font-size: 1.1rem;
            margin-bottom: 0;
            color: var(--faded-text);
            line-height: 1.6;
        }