/* Global Design System */
:root {
    --primary: #f39c12;
    /* Gold/Orange from logo */
    --secondary: #c0392b;
    /* Deep Red from logo */
    --accent: #27ae60;
    /* Green from logo */
    --dark: #1a1a1a;
    --light: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 30px 60px rgba(0, 0, 0, 0.15);
}

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

/* Premium Transparent Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.8rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-logo {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

nav.scrolled .nav-logo {
    color: var(--dark);
}

.nav-logo img {
    height: 50px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    font-size: 1.05rem;
}

nav.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-nav-item {
    display: none;
}

/* Hero Section */
nav .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    box-shadow: none;
    line-height: 1;
}

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 5%;
}

.hero h1 {
    font-size: clamp(3.5rem, 12vw, 7rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.hero-location {
    font-size: 0.6em;
    display: block;
    margin-top: 0.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.hero p {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    max-width: 900px;
    margin-bottom: 4rem;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-btns {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

/* Generic Button */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
    /* Match secondary border width */
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
    min-width: 200px;
    text-align: center;
    line-height: 1.5;
}

.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(192, 57, 43, 0.4);
}

/* Secondary Outline Button */
.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.8rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid white;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    text-align: center;
    line-height: 1.5;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}


/* Text Menu Styles */
.menu-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 2rem;
}

.menu-category-title {
    font-size: 3.5rem;
    color: var(--secondary);
    margin: 6rem 0 4rem;
    text-align: center;
    position: relative;
}

.menu-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.text-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3rem;
    border-bottom: 1.5px dotted #e0e0e0;
    padding-bottom: 1.5rem;
}

.text-menu-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.text-menu-info p {
    font-size: 1.15rem;
    color: #777;
    font-style: italic;
    font-weight: 300;
    max-width: 600px;
}

.text-menu-price {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.decorative-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 60px;
    margin: 6rem 0;
    box-shadow: var(--shadow-heavy);
    border: 10px solid white;
}

/* Section Transitions */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background: #000;
    color: #999;
    padding: 8rem 10% 4rem;
}

.footer-content h3 {
    color: white;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.footer-bottom {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* Floating Order Button */
.floating-order-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary);
    color: white;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.45);
    z-index: 999;
    transition: all 0.3s ease;
    animation: floatPulse 2s ease-in-out infinite;
}

.floating-order-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(192, 57, 43, 0.5);
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* All responsive styles are in responsive.css */