/* Restaurant Demo Website Styles */

/* Restaurant demo specific hero text styling - override main styles */

/* Reset any inherited display properties */
.restaurant-demo .hero-content h1,
.restaurant-demo .hero-content p {
    display: block !important;
    float: none !important;
    clear: both !important;
    width: 100% !important;
}

/* Restaurant demo brand text - force white color */
.restaurant-demo .nav-logo .logo-text,
.restaurant-demo .navbar .logo-text,
.restaurant-demo .nav-logo a,
.restaurant-demo .navbar a {
    color: #ffffff !important;
}

/* Restaurant demo hamburger - force black color */
.restaurant-demo .hamburger .bar {
    background: #000000 !important;
}

/* Restaurant demo about section - force black text */
.restaurant-demo .about-description,
.restaurant-demo .stat p {
    color: #000000 !important;
}

/* Mobile Header Styles for Restaurant Demo */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-header .brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-header .brand a {
    text-decoration: none;
    color: inherit;
}

.mobile-header .brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #374151 !important;
}

.mobile-header .back-to-portfolio {
    font-size: 1.2rem;
    color: #374151 !important;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(55, 65, 81, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.mobile-header .back-to-portfolio:hover {
    background: rgba(55, 65, 81, 0.1);
    border-color: #374151;
}

.mobile-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Panel */
.nav-panel {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-panel[aria-hidden="false"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(55, 65, 81, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #d4af37;
    padding-left: 10px;
}

.mobile-nav-cta {
    background: #d4af37;
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

/* Show mobile header only on mobile */
@media (max-width: 768px) {
    .mobile-header {
        display: flex;
    }
    
    .navbar {
        display: none;
    }
}

/* Hide mobile header on desktop */
@media (min-width: 769px) {
    .mobile-header {
        display: none !important;
    }
    
    .navbar {
        display: block;
    }
}

/* Mobile Hero Background - Full Size */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        position: relative;
    }
    
    .hero-background {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    
    .hero-bg-image {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-overlay {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
        margin-left: 10px !important;
        margin-right: 20px !important;
        max-width: calc(100% - 30px) !important;
    }
}
.restaurant-demo .hero-title,
.restaurant-demo .hero-content .hero-title,
.restaurant-demo .hero .hero-title,
.restaurant-demo h1.hero-title {
    color: #ffffff !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    float: none !important;
    clear: both !important;
}

.restaurant-demo .hero-subtitle,
.restaurant-demo .hero-content .hero-subtitle,
.restaurant-demo .hero .hero-subtitle,
.restaurant-demo p.hero-subtitle {
    color: #ffffff !important;
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 3rem !important;
    float: none !important;
    clear: both !important;
}

/* CSS Variables */
:root {
    --primary-color: #d4af37;
    --secondary-color: #8b4513;
    --accent-color: #ff6b35;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: var(--white);
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e8821a 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    border-color: #e55a2b;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none;
}

.back-to-portfolio {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.back-to-portfolio:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px) scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000000;
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    overflow: hidden;
    background: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.2) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 500px;
    margin-left: 20px;
    display: block;
}

/* Ensure hero content children are block-level */
.hero-content > * {
    display: block;
    width: 100%;
}

/* Specific layout for hero text elements */
.hero-content .hero-title {
    display: block !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    float: none !important;
    clear: both !important;
}

.hero-content .hero-subtitle {
    display: block !important;
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 3rem !important;
    float: none !important;
    clear: both !important;
}

.hero-content .hero-buttons {
    display: flex !important;
    width: auto !important;
    clear: both !important;
}

/* Force vertical layout for restaurant demo hero content */
.restaurant-demo .hero {
    display: block !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
}

/* Desktop hero content positioning - move to left side */
@media (min-width: 769px) {
    .restaurant-demo .hero-content {
        margin-left: 80px !important;
        margin-top: 60px !important;
        max-width: 500px !important;
    }
}

.restaurant-demo .hero-content {
    display: block !important;
}

.restaurant-demo .hero-content > * {
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.restaurant-demo .hero-content .hero-buttons {
    display: flex !important;
    width: auto !important;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
    color: #ffffff !important;
    line-height: 1.1;
    display: block;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    color: #ffffff !important;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23ff6b35" opacity="0.1"/><circle cx="0" cy="0" r="1" fill="%23ff6b35" opacity="0.05"/><circle cx="30" cy="30" r="1" fill="%23ff6b35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c2c2c, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #000000;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Menu Section */
.menu {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="menu-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23d4af37" opacity="0.1"/><circle cx="0" cy="0" r="1" fill="%23d4af37" opacity="0.05"/><circle cx="40" cy="40" r="1" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23menu-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.menu .container {
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 4rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #e2e8f0;
    color: #64748b;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-size: 1rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    transition: left 0.6s ease;
}

.menu-tab:hover::before {
    left: 100%;
}

.menu-tab.active,
.menu-tab:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.menu-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.menu-category {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.menu-category.active {
    display: grid;
}

.menu-item {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    backdrop-filter: blur(15px);
    position: relative;
    margin-bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.menu-item:hover::before {
    opacity: 0.9;
}

.menu-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    background-size: 115%;
}

.menu-item-content {
    padding: 0.5rem 2rem 1.5rem 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 300px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.menu-item-title-section {
    flex: 1;
    margin-right: 1rem;
}

.menu-item-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.menu-item-content p {
    color: #f1f5f9;
    margin: 0;
    line-height: 1.3;
    font-size: 0.7rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    flex-shrink: 0;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #059669, #10b981);
    transition: width 0.3s ease;
}

.menu-item:hover .price::after {
    width: 100%;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gallery-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="0" cy="0" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="25" cy="25" r="0.5" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23gallery-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.gallery .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Reservations Section */
.reservations {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.reservations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reservation-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.5" fill="%23ff6b35" opacity="0.08"/><circle cx="0" cy="0" r="1" fill="%23ff6b35" opacity="0.04"/><circle cx="35" cy="35" r="1" fill="%23ff6b35" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23reservation-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.reservations .container {
    position: relative;
    z-index: 2;
}

.reservation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    background: var(--white);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.reservation-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.reservation-info .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c2c2c, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reservation-info .section-subtitle {
    text-align: left;
    margin-bottom: 3rem;
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.6;
}

.restaurant-info {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-item i {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Forms */
.reservation-form,
.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.reservation-form::before,
.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #d4af37);
    background-size: 300% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #ff6b35;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: #ff6b35;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        /* Removed padding for clean text-only appearance */
        margin-top: 2vh !important;
        padding-top: 0 !important;
    }

    .hero-bg-image {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        object-fit: cover;
        object-position: center center;
    }

    .hero-overlay {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        display: block;
        width: 100%;
        color: #ffffff !important;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        color: #ffffff !important;
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .about-content,
    .reservation-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 2rem;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section .social-links {
        justify-content: center;
    }

    /* Mobile brand text - ensure white color */
    .restaurant-demo .nav-logo .logo-text,
    .restaurant-demo .navbar .logo-text,
    .restaurant-demo .nav-logo a,
    .restaurant-demo .navbar a {
        color: #ffffff !important;
    }

    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-tab {
        width: 200px;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }

    .menu-category {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .menu-item-image {
        height: 150px;
    }

    .menu-item-content {
        padding: 0.25rem 1.5rem 1rem 1.5rem;
    }

    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .menu-item-title-section {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .menu-item-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.25rem;
    }

    .menu-item-content p {
        font-size: 0.65rem;
    }

    .price {
        font-size: 1.3rem;
        margin-left: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        /* Removed padding for clean text-only appearance */
    }

    .hero-bg-image {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        object-fit: cover;
        object-position: center center;
    }

    .hero-overlay {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .reservation-form,
    .contact-form {
        padding: 1.5rem;
    }
}
