* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #e74c3c;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e74c3c;
}

.register-btn {
    background: #333;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.register-btn:hover {
    background: #e74c3c;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/prod6.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    font-weight: bold;
    line-height: 1.2;
}

.cta-btn {
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #c0392b;
}

/* Why Dining Section */
.why-dining {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card:first-child {
    background: #fff5f5;
}

.feature-card:last-child {
    background: #f8f9fa;
}

.feature-image {
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-content p {
    color: #666;
    line-height: 1.8;
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: white;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.menu-category {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.menu-category:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
}

.view-more {
    text-align: center;
    margin-top: 2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #f8f9fa;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 24px;
}

.step h3 {
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Category Navigation */
.category-nav {
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

/* Scroll container */
.nav-scroll {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    gap: 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    flex: 1;
}

.nav-scroll::-webkit-scrollbar {
    display: none;
}

/* Category items */
.category-nav a {
    padding: 18px 24px;
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.category-nav a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Slider arrows */
.nav-arrow {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    padding: 10px 15px;
    color: var(--secondary);
}

.nav-arrow:hover {
    color: var(--accent);
}

/* Main Layout */
.main-content {
    margin-top: 50px;
    min-height: 100vh;
}

/* Hero Section */
.menu-hero {
    text-align: center;
    padding: 10px 10px;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.menu-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 8px;
}

.menu-hero p {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.menu-hero-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 30px auto 0;
}

/* Container */
/*.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
}*/

/* Category Section */
.category-section {
    padding: 80px 0;
    scroll-margin-top: 160px;
}

.category-section:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
}

.category-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 300;
    color: var(--border);
    line-height: 1;
}

.category-title-group {
    flex: 1;
}

.category-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 5px;
}

.category-header p {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

.category-count {
    font-size: 0.75rem;
    color: var(--secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Menu Item */
.menu-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background:#cd352d;
    border :1px solid rgba(173, 173, 173, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-item:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 8px;
}

.item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.item-price {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.item-description {
    font-size: 0.85rem;
    color:#fff;
    font-weight: 300;
    line-height: 1.6;
    flex: 1;
}

.item-tags {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tag.veg {
    background: #f0f7f0;
    color: #3d7a3d;
}

.tag.spicy {
    background: #fef2f2;
    color: #b91c1c;
}

.tag.popular {
    background: #fef9e7;
    color: #b7791f;
}

.tag.new {
    background: #eff6ff;
    color: #1d4ed8;
}

.tag.gf {
    background: #faf5ff;
    color: #7c3aed;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .menu-hero {
        height: 70vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .menu-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
}
/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(166, 124, 82, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #8b6642;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .header-info {
        display: none;
    }

    .category-nav {
        top: 60px;
    }

    .nav-scroll {
        padding: 0 20px;
    }

    .category-nav a {
        padding: 15px 18px;
        font-size: 0.7rem;
    }

    .main-content {
        margin-top: 115px;
    }

    .menu-hero {
        padding: 50px 20px;
    }

    .menu-hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .menu-hero p {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 20px 60px;
    }

    .category-section {
        padding: 50px 0;
        scroll-margin-top: 130px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .category-number {
        font-size: 2.5rem;
    }

    .category-header h2 {
        font-size: 1.8rem;
    }

    .menu-item {
        padding: 20px;
    }

    .item-image {
        width: 80px;
        height: 80px;
    }

    .item-name {
        font-size: 1.1rem;
    }

    .back-to-top {
        bottom: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .menu-item {
        flex-direction: column;
    }

    .item-image {
        width: 100%;
        height: 160px;
    }

    .item-header {
        flex-direction: column;
        gap: 5px;
    }
}