/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D62828;
    /* Premium Red */
    --primary-hover: #A81818;
    --text-light: #F8F9FA;
    --text-dark: #212529;
    --bg-dark: #121212;
    --bg-overlay: rgba(0, 0, 0, 0.7);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #FF4D4D);
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.6);
    background: linear-gradient(45deg, #FF4D4D, var(--primary-color));
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-light);
    color: var(--text-light);
    margin-left: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--text-light);
    transition: var(--transition);
    z-index: -1;
}

.btn-outline:hover {
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-outline:hover::after {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: #ffffff;
    color: var(--text-dark);
    height: 35px;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-info {
    display: flex;
    gap: 1.5rem;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.top-bar-info i {
    color: var(--primary-color);
}

.top-bar-social {
    display: flex;
    gap: 1rem;
}

.top-bar-social a {
    color: var(--text-dark);
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 35px;
    /* Matches top-bar height */
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    top: 0;
    /* Stick to top on scroll */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdowns */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    min-width: 200px;
    padding: 1rem 0;
    border-top: 2px solid var(--primary-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
}

/* Mobile Sidebar */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(3px);
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    /* Hidden by default */
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    z-index: 1003;
    transition: var(--transition);
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.sidebar-header .logo {
    font-size: 1.4rem;
}

.close-sidebar {
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-sidebar:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-links a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.sidebar-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-submenu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-dropdown.active .sidebar-submenu {
    display: flex;
}

.sidebar-submenu a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Slider */
.hero-slider {
    height: calc(100vh - 35px);
    /* Subtract top-bar height */
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Darker overlay as requested */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1rem;
    /* Animations handled by children */
}

.slide.active .hero-subtitle {
    animation: fadeInDown 1s ease forwards 0.5s;
    opacity: 0;
}

.slide.active .hero-title {
    animation: fadeInUp 1s ease forwards 0.7s;
    opacity: 0;
}

.slide.active .hero-description {
    animation: fadeInUp 1s ease forwards 0.9s;
    opacity: 0;
}

.slide.active .hero-buttons {
    animation: zoomIn 1s ease forwards 1.1s;
    opacity: 0;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .top-bar-info span:not(:first-child) {
        display: none;
        /* Hide extra info on smaller screens */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-outline {
        margin-left: 0;
    }

    .slider-btn {
        display: none;
        /* Hide arrows on mobile */
    }

    .top-bar {
        display: none;
        /* Hide top bar on very small screens if needed, or stack */
    }

    .navbar {
        top: 0;
    }

    .hero-slider {
        height: 100vh;
        /* Full height on mobile since top bar is hidden */
    }
}

/* Section Basics */
.section-padding {
    padding: 4rem 0;
}

.bg-light {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
    /* Slightly lighter dark */
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 3rem;
}

/* Trending Section */
.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trending-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.trending-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.trending-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.trending-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trending-card:hover .trending-img img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.trending-content {
    padding: 1.5rem;
}

.trending-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.trending-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-hover);
    padding-left: 5px;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.category-card {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}

.category-card:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    border-color: var(--text-light);
    transform: scale(1.1);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.category-card span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.category-card:hover span {
    color: rgba(255, 255, 255, 0.9);
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.featured-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.featured-content {
    flex: 1;
}

.featured-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-list {
    margin: 2rem 0;
}

.featured-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.featured-list i {
    color: var(--primary-color);
    background: rgba(214, 40, 40, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Parallax CTA Section */
.parallax-cta {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0;
    color: var(--text-light);
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.parallax-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.parallax-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .featured-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .featured-image {
        order: -1;
        /* Image on top for mobile */
    }

    .parallax-cta {

        padding: 5rem 0;
    }

    .parallax-title {
        font-size: 2.5rem;
    }
}

/* Floating Action Button */

.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
    transition: var(--transition);
}

.fab-main:hover {
    transform: scale(1.1);
}

.fab-main.active {
    transform: rotate(45deg);
    background-color: #333;
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.fab-container.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.fab-option:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Tooltip */
.fab-option::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-list {
    margin: 2rem 0;
}

.featured-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.featured-list i {
    color: var(--primary-color);
    background: rgba(214, 40, 40, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Parallax CTA Section */
.parallax-cta {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem 0;
    color: var(--text-light);
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.parallax-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.parallax-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .featured-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .featured-image {
        order: -1;
        /* Image on top for mobile */
    }

    .parallax-cta {
        background-attachment: scroll;
        padding: 5rem 0;
    }

    .parallax-title {
        font-size: 2.5rem;
    }
}

/* Floating Action Button */

.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
    transition: var(--transition);
}

.fab-main:hover {
    transform: scale(1.1);
}

.fab-main.active {
    transform: rotate(45deg);
    background-color: #333;
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.fab-container.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-option {
    width: 50px;
    height: 50px;
    background-color: #fff;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.fab-option:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Tooltip */
.fab-option::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.fab-option:hover::before {
    opacity: 1;
    visibility: visible;
}

/* About Section */
.about-section {
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    flex: 1;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Adjustments for About */
@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        /* Image on top for mobile/tablet */
        width: 100%;
    }

    .experience-badge {
        padding: 1rem;
        bottom: 20px;
        right: 20px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

/* Page Header with Breadcrumb */
.page-header {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 5rem;
    margin-top: 75px;
    /* Account for fixed navbar + top bar */
    color: var(--text-light);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
}

.breadcrumb-item:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.3rem;
}

/* Responsive Page Header */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 4rem;
        margin-top: 0;
        /* Top bar hidden on mobile */
        background-attachment: scroll;
    }

    .page-title {
        font-size: 2rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }
}


/* Why Us Page Styles */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-us-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-us-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(214, 40, 40, 0.2);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #FF4D4D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    transition: var(--transition);
}

.why-us-card:hover .why-us-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-us-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Why Us Image Section */
.why-us-image-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
}

.why-us-image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-image-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-us-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.why-us-stats li {
    display: flex;
    flex-direction: column;
}

.why-us-stats strong {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.why-us-stats span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.why-us-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-us-image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: var(--transition);
}

.why-us-image-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* Responsive Why Us */
@media (max-width: 992px) {
    .why-us-image-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-us-image-content {
        order: 2;
    }

    .why-us-image-grid {
        order: 1;
    }

    .why-us-stats {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .why-us-image-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}


/* CEO Message Page Styles */
.ceo-message-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.ceo-image-section {
    position: sticky;
    top: 100px;
}

.ceo-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.ceo-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), #FF4D4D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.4);
}

.ceo-info {
    text-align: center;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
}

.ceo-info h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.ceo-info p {
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.ceo-signature {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.ceo-signature span {
    font-family: 'Brush Script MT', cursive;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.ceo-message-content {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 4px solid var(--primary-color);
}

.message-text {
    margin-top: 2rem;
}

.message-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500;
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-bottom: 2rem !important;
}

.closing-text {
    font-weight: 600;
    color: var(--text-light) !important;
    margin-top: 2rem !important;
}

/* Vision & Mission Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.vm-card {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(214, 40, 40, 0.2);
}

.vm-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(45deg, var(--primary-color), #FF4D4D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-light);
    transition: var(--transition);
}

.vm-card:hover .vm-icon {
    transform: scale(1.1) rotate(360deg);
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-family: var(--font-heading);
}

.vm-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Core Values Grid */
.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.core-value-item {
    display: flex;
    gap: 1.5rem;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.core-value-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cv-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    opacity: 0.3;
    font-weight: 700;
    line-height: 1;
}

.cv-content h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.cv-content p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* Responsive CEO Message */
@media (max-width: 992px) {
    .ceo-message-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ceo-image-section {
        position: relative;
        top: 0;
    }

    .ceo-image img {
        height: 400px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ceo-message-content {
        padding: 2rem;
    }

    .message-text p {
        font-size: 1rem;
    }

    .lead-text {
        font-size: 1.1rem !important;
    }

    .vm-card {
        padding: 2rem;
    }

    .core-value-item {
        flex-direction: column;
        text-align: center;
    }

    .cv-number {
        font-size: 2.5rem;
    }
}


/* Menu Page Styles */
.menu-section {
    padding: 2rem 0 5rem;
}

/* Menu Controls - Search and Filters */
.menu-controls {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-search {
    position: relative;
    margin-bottom: 1.5rem;
}

.menu-search i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.menu-search input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.menu-search input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.menu-search input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.menu-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: rgba(214, 40, 40, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--primary-color), #FF4D4D);
    border-color: var(--primary-color);
    color: var(--text-light);
}

/* Sticky Category Navigation */
.menu-category-nav {
    margin-bottom: 3rem;
    transition: var(--transition);
}

.menu-category-nav.sticky {
    position: fixed;
    top: 75px;
    /* Account for navbar */
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.98) 0%, rgba(30, 30, 30, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.category-nav-wrapper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.category-nav-wrapper::-webkit-scrollbar {
    height: 6px;
}

.category-nav-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.category-nav-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.category-nav-item {
    flex-shrink: 0;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.category-nav-item:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.category-nav-item.active {
    background: linear-gradient(45deg, var(--primary-color), #FF4D4D);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(214, 40, 40, 0.4);
}

.category-nav-item i {
    font-size: 1rem;
}

/* Menu Category */
.menu-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), #FF4D4D);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.category-info h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.category-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.menu-grid-small {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Menu Item Card */
.menu-item {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.menu-item-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.1);
}

.item-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.badge-special {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.badge-spicy {
    background: linear-gradient(45deg, #FF4500, #FF6347);
}

.badge-veg {
    background: linear-gradient(45deg, #228B22, #32CD32);
}

.menu-item-content {
    padding: 1.5rem;
}

.menu-item-content h3 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.item-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: var(--font-heading);
}

.btn-favorite {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-favorite:hover {
    background: rgba(214, 40, 40, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.btn-favorite.active {
    color: var(--primary-color);
}

/* Compact Menu Item (for breads, beverages) */
.menu-item-compact .menu-item-image {
    height: 180px;
}

.menu-item-compact .menu-item-content {
    padding: 1rem;
}

.menu-item-compact h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.menu-item-compact .item-price {
    font-size: 1.3rem;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 5rem 2rem;
}

.no-results i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Responsive Menu */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .category-info h2 {
        font-size: 1.8rem;
    }

    .menu-category-nav.sticky {
        top: 0;
    }
}

@media (max-width: 768px) {
    .menu-controls {
        padding: 1.5rem;
    }

    .menu-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .menu-grid,
    .menu-grid-small {
        grid-template-columns: 1fr;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .category-info h2 {
        font-size: 1.5rem;
    }

    .menu-item-image {
        height: 200px;
    }

    .item-price {
        font-size: 1.3rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    padding: 5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-widget h3 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo img {
    width: 150px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }
}
/* Menu Gallery */
.menu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-page-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    background-color: #fff;
}

.menu-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.menu-page-card img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .menu-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Story Page Styles */
.story-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.story-row.reverse {
    flex-direction: row-reverse;
}

.story-content {
    flex: 1;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.story-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 4rem;
}

.feature-item {
    background: linear-gradient(135deg, #1e1e1e 0%, #252525 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .story-row {
        flex-direction: column;
        gap: 2rem;
    }

    .story-row.reverse {
        flex-direction: column;
    }
}
