* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0a0a0a;
}

/* Regular navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(240, 237, 237, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: auto;
    height: 50px !important; /* Reduced from 180px */
    object-fit: contain;
}

.logo span {
    color: #ffffff;
    font-weight: 700;
    font-size: 32px; /* Increased from 28px */
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    margin-left: 40px;
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border: 1px solid rgba(223, 219, 219, 0);
    border-radius: 8px;
}



.nav-links a.active {
    color: #ff6b00;
}

.nav-links a:hover {
    color: #ff6b00;
}

.nav-links a img {
    width: 35px;
    height: 35px;
}

.hero {
    display: flex;
    padding: 60px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #1a1212;
    position: relative;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 600;
}

.hero-text p {
    color: #999;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-buttons a {
    text-decoration: none;
}

.food-menu {
    background: #ff6b00;
    color: white;
}

.food-menu:hover {
    background: #ff8533;
}

.book-table {
    background: transparent;
    border: 1px solid #ff6b00 !important;
    color: #ff6b00;
}

.book-table:hover {
    background: rgba(255, 107, 0, 0.1);
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image .slider {
    position: relative;
    width: 100%;
    height: 500px; /* Increased from 400px */
    overflow: hidden;
    border-radius: 15px;
    background: #1a1a1a;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: contain;
    background: #1a1a1a;
    padding: 10px; /* Reduced padding */
    transition: opacity 0.5s ease-in-out;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    border-radius: 15px;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b00;
    transform: scale(1.2);
}

.top-list {
    padding: 50px 80px;
    background: #0a0a0a;
}

.top-list h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.top-list > p {
    color: #999;
    font-size: 18px;
    margin-bottom: 30px;
}

.food-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.food-card {
    background: linear-gradient(145deg, #222222, #1d1d1d);
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease;
    min-width: 250px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.food-card img {
    width: 100%;
    height: 250px; /* Increased from 200px */
    object-fit: contain;
    background: #1a1a1a;
    padding: 5px; /* Reduced padding */
    border-radius: 20px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating {
    color: #FFD700;
    font-size: 16px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.food-card h3 {
    color: #ffffff;
    margin: 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.food-card p {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    font-weight: 600;
    font-size: 20px;
    color: #ff6b00;
}

.add-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #ff6b00;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.add-btn:hover {
    background: #ff8533;
}

.promo {
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(145deg, #222222, #1d1d1d);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.promo img {
    max-width: 45%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-text h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.promo-text p {
    color: #cccccc;
    font-size: 16px;
    line-height: 1.6;
}

/* Trophy Slider Styles */
.promo-slider-section {
    padding: 0;
    margin: 0;
    width: 100vw;
    position: relative;
    background: #0a0a0a;
    margin-bottom: 0; /* Remove extra space below the slider */
}

.promo-slider {
    width: 100%;
    height: 800px;
    position: relative;
    overflow: hidden;
}

.promo-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
}

.promo-slide.active {
    opacity: 1;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .promo-slider-section {
        margin: 10;
        padding: 10;
        width: 100%;
    }

    .promo-slider {
        height: 100px;
        max-height: 900px;
        min-height: 420px;
        border-radius: 100;
        margin: 0;
    }

    .promo-slide {
        padding: 0;
    }

    .promo-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: ;
    }

    .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 10;
        padding: 0 10px;
    }

    .promo-prev-btn, 
    .promo-next-btn {
        width: 40px;
        height: 45px;
        background: rgba(255, 107, 0, 0.95);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 10px;
        flex-direction: column;
        height: auto;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #1a1a1a;
        z-index: 1000;
    }

    .logo {
        width: 100%;
        margin-bottom: 10px;
    }

    .logo img {
        height: 40px; /* Keeping mobile size proportionally smaller */
        object-fit: contain;
    }

    .nav-links {
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 10px 0;
    }

    main {
        margin-top: 230px;
    }
}

.services {
    padding: 80px;
    text-align: center;
    background: #0a0a0a;
}

.services h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 50px;
}

.service-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    background: linear-gradient(145deg, #222222, #1d1d1d);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.service img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service p {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
}

/* Menu Page Styles */
.menu-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(145deg, #222222, #1d1d1d);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 10px;
}

.menu-header p {
    color: #999;
    font-size: 18px;
}

.menu-categories {
    padding: 40px 80px;
    background: #0a0a0a;
}

.category h2 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 25px;
    font-weight: 600;
}

.category {
    margin-bottom: 50px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.menu-item {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-item img {
    width: 100%;
    height: 300px; /* Increased from 250px */
    object-fit: contain;
    background: #1a1a1a;
    padding: 5px; /* Reduced padding to give more space to image */
}

.item-details {
    padding: 15px;
}

.item-details h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.item-details p {
    color: #999;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 25px;
    min-height: 36px;
}

.price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 40px;
}

.menu-item .rating {
    color: #FFD700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.menu-item .price {
    color: #ff6b00;
    font-size: 16px;
    font-weight: 600;
}

.menu-item .add-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #ff6b00;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

@media screen and (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .menu-categories {
        padding: 10px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .menu-item {
        margin-bottom: 15px;
        max-width: 100%;
    }

    .menu-item img {
        height: 200px;
        padding: 10px;
    }

    .item-details {
        padding: 12px;
    }

    .item-details h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .item-details p {
        font-size: 12px;
        margin-bottom: 20px;
        min-height: unset;
    }

    .price-rating {
        margin-right: 35px;
    }

    .menu-item .rating {
        font-size: 12px;
    }

    .menu-item .add-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
        bottom: 10px;
        right: 10px;
    }

    .category h2 {
        font-size: 24px;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .menu-header {
        padding: 30px 15px;
    }

    .menu-header h1 {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .menu-header p {
        font-size: 14px;
    }

    nav {
        padding: 15px;
    }

    .nav-links a {
        margin-left: 15px;
        font-size: 14px;
    }

    .logo img {
        height: 45px;
    }

    .menu-categories {
        padding: 20px;
    }

    .menu-header {
        padding: 40px 20px;
    }

    .menu-header h1 {
        font-size: 36px;
    }

    .category h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        max-width: 100%;
    }

    .menu-item img {
        height: 250px; /* Adjusted for mobile */
    }
}

@media screen and (max-width: 768px) {
    .menu-categories {
        padding: 20px;
    }

    .menu-header {
        padding: 40px 20px;
    }

    .menu-header h1 {
        font-size: 36px;
    }

    .category h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-item {
        max-width: 100%;
    }

    .menu-item img {
        height: 250px; /* Adjusted for mobile */
    }
}

/* Mobile Responsiveness */
@media screen and (max-width: 1200px) {
    .food-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .food-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    nav {
        padding: 20px; /* Increased mobile padding */
    }

    .nav-links a {
        margin-left: 20px;
        font-size: 14px;
    }

    .hero {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-buttons button {
        padding: 12px 25px;
        font-size: 14px;
    }

    .top-list {
        padding: 40px 20px;
    }

    .top-list h2 {
        font-size: 32px;
    }

    .top-list > p {
        font-size: 16px;
    }

    .food-cards {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .food-card {
        min-width: unset;
    }

    .promo {
        padding: 40px 20px;
        flex-direction: column;
        text-align: center;
    }

    .promo img {
        max-width: 100%;
        order: -1;
    }

    .promo-text h2 {
        font-size: 32px;
    }

    .services {
        padding: 40px 20px;
    }

    .service-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service {
        padding: 20px;
    }

    .logo img {
        height: 50px; /* Increased from 35px */
    }
    
    .logo span {
        font-size: 28px; /* Increased from 24px */
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-image .slider {
        width: 100%;
        height: 400px; /* Increased from 300px */
        margin: 0;
    }

    .slides-container {
        height: 400px; /* Increased from 300px */
    }

    .hero-image .slider,
    .slide {
        height: 400px; /* Increased from 300px */
    }

    .slide.active {
        opacity: 1;
        display: block;
        z-index: 2;
    }

    .slide::before {
        border-radius: 10px;
    }

    .slider-dots {
        bottom: 15px;
        z-index: 3;
    }

    .dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.7);
    }

    .dot.active {
        background: #ff6b00;
        transform: scale(1.2);
    }
}

/* Fix text cutoff issue for mobile view */
@media screen and (max-width: 768px) {
    .header-text {
        font-size: 18px; /* Adjust font size for better fit */
        line-height: 1.5; /* Increase line height for readability */
        word-wrap: break-word; /* Ensure text wraps properly */
    }
}

.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/4_23_2025 1_28_30 AM.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.about-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease;
    color: #fff;
}

.about-hero-content p {
    font-size: 20px;
    color: #fff;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.about-story {
    padding: 100px 0;
    background: #1a1a1a;
    position: relative;
}

.story-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.story-content h2 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #ff6b00;
}

.story-content p {
    color: #999;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: #222;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 0, 0.1), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card i {
    font-size: 48px;
    color: #ff6b00;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1);
}

.value-card h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.value-card p {
    color: #999;
    font-size: 16px;
    line-height: 1.7;
}

.about-section {
    background: #1a1a1a;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-info {
    flex: 2;
}

.about-info h2 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
}

.about-info h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #ff6b00;
}

.about-info > p {
    color: #999;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-5px);
}

.info-item i {
    color: #ff6b00;
    font-size: 28px;
    margin-top: 5px;
}

.info-text h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.info-text p {
    color: #999;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff6b00;
    transform: translateY(100%);
    transition: all 0.3s ease;
    z-index: 1;
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover {
    transform: translateY(-5px);
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

@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);
    }
}

@media screen and (max-width: 768px) {
    .about-hero {
        height: 400px;
        background-attachment: scroll;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-story {
        padding: 60px 0;
    }

    .story-content {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .story-content h2 {
        font-size: 32px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .about-info h2 {
        font-size: 32px;
    }

    .about-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-item {
        justify-content: center;
        text-align: center;
        padding: 20px;
    }

    .social-links {
        justify-content: center;
    }

    .about-image img {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }

    .about-section {
        padding: 60px 0;
    }
}
.profile-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
  }
  
  .profile-popup .popup-content {
    background: #1a1a1a;
    padding: 30px 25px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: popupFade 0.3s ease;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .profile-popup .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
  }
  
  .profile-popup .close-popup:hover {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    transform: rotate(90deg);
  }
  
  .profile-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .profile-header i {
    font-size: 28px;
    color: #ff6b00;
  }
  
  .profile-header h2 {
    color: #ffffff;
    font-size: 19px;
    margin: 0;
  }
  
  .profile-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .profile-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .profile-option:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateX(5px);
  }
  
  .profile-option i {
    font-size: 17px;
    color: #ff6b00;
    width: 22px;
    text-align: center;
  }
  
  .profile-option span {
    font-size: 14px;
  }
  
  @keyframes popupFade {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  

.logout-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: #ff6b00;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #ff8533;
}

.logout-btn i {
    font-size: 20px;
    width: 24px;
}

.logout-btn span {
    font-size: 16px;
}

.signup-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.signup-popup .popup-content {
    background: linear-gradient(145deg, #222222, #1d1d1d);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: popupFade 0.3s ease;
}

.signup-popup .popup-content h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.signup-popup .popup-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b00;
    border-radius: 3px;
}

.signup-popup .close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.signup-popup .close-popup:hover {
    background: rgba(255, 107, 0, 0.2);
    color: #ff6b00;
    transform: rotate(90deg);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
    background: rgba(255, 107, 0, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    height: 100px;
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #ff6b00;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-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: all 0.5s ease;
}

.submit-btn:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Fix mobile navigation */
@media screen and (max-width: 768px) {
    body {
        min-width: 320px;
        width: 100%;
        overflow-x: hidden;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #1a1a1a;
        padding: 8px 15px;
    }

    .nav-links {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }

    .nav-links a {
        margin: 0;
        padding: 1px 1px;
        font-size: 12px;
    }

    main {
        margin-top: 70px;
        padding-top: 10px;
    }

    .logo img {
        height: 40px;
    }

    /* Ensure content doesn't overflow */
    .menu-categories,
    .menu-grid,
    .food-cards,
    .promo,
    .about-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 15px;
        box-sizing: border-box;
    }

    .profile-popup {
        padding-top: 60px;
    }

    .profile-popup .popup-content {
        width: 95%;
    }
}

.admin-login-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.admin-login-popup .popup-content {
    background: linear-gradient(145deg, #222222, #1d1d1d);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: popupFade 0.3s ease;
}

.admin-login-popup .popup-content h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.admin-login-popup .popup-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b00;
    border-radius: 3px;
}

.admin-section {
    padding: 80px 20px;
    text-align: center;
    color: white;
    background: #1a1a1a;
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ff6b00;
}

.signin-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.signin-popup .popup-content {
    background: linear-gradient(145deg, #222222, #1d1d1d);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: popupFade 0.3s ease;
}

.signin-popup .popup-content h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.signin-popup .popup-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff6b00;
    border-radius: 3px;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.form-footer a {
    color: #ff6b00;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-footer a:hover {
    color: #ff8533;
}

.btn-signin {
    background: #ff6b00;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Menu Page Styles */
.menu-page {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-page h1 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.menu-items-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.category-section {
    margin-bottom: 30px;
}

.category-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d6efd;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item-details {
    padding: 15px;
}

.menu-item-details h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
}

.menu-item-details p {
    color: #666;
    font-size: 14px;
    margin: 0 0 15px 0;
    min-height: 40px;
}

.price-add {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 18px;
    font-weight: bold;
    color: #0d6efd;
}

.add-btn {
    background: #0d6efd;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.add-btn:hover {
    background: #0b5ed7;
}