/*
Theme Name: KB Biryani Theme
Theme URI: https://example.com/kb-biryani
Author: Antigravity
Author URI: https://example.com
Description: A custom WordPress theme for Karachi Biryani, authentic taste from the streets of Karachi.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: restaurant, food, custom-theme, tailwind-ready
Text Domain: kb-biryani
*/

/* ==========================================================================
   Custom Styles (Extracted from HTML)
   ========================================================================== */

:root {
    --maroon: #4A0F0A;
    --cream: #FFF6E5;
    --mustard: #FFC83D;
    --accent-red: #E74C3C;
    --text-dark: #2D1B10;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

h1, h2, h3, .serif-font {
    font-family: 'Playfair Display', serif;
}

.bg-maroon { background-color: var(--maroon); }
.text-mustard { color: var(--mustard); }
.bg-mustard { background-color: var(--mustard); }
.bg-accent-red { background-color: var(--accent-red); }
.text-cream { color: var(--cream); }

.hero-pattern {
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 200, 61, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 200, 61, 0.03) 0%, transparent 50%);
}

.cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(231, 76, 60, 0.4);
    filter: brightness(1.1);
}

.nav-link {
    transition: color 0.3s ease;
    color: #FFFFFF;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--mustard);
}

.food-card {
    transition: all 0.4s ease;
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Hero Image Decorative Elements */
.hero-image-container {
    position: relative;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: rgba(255, 246, 229, 0.08);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 0;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    50% { border-radius: 60% 40% 30% 70% / 50% 30% 70% 40%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.price-badge {
    background: var(--mustard);
    color: var(--maroon);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    display: inline-block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--maroon);
    border-radius: 5px;
}

/* Animations */
.opacity-100 { opacity: 1; }
.opacity-0 { opacity: 0; }
.translate-y-0 { transform: translateY(0); }
.translate-y-12 { transform: translateY(3rem); }

/* Elementor Compatibility Wrappers */
.elementor-page body {
    /* Reset scroll behavior override if Elementor needs control */
    scroll-behavior: auto;
}
