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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 3px solid #ff8c00;
    padding: 30px 0;
    position: static;
    z-index: 100;
    text-align: center;
}

.logo {
    font-size: 2em;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-info {
    text-align: center;
}

.contact-info p {
    font-size: 0.95em;
    color: #ccc;
    margin: 5px 0;
}

.contact-info .phone {
    color: #ff8c00;
    font-weight: bold;
}

/* Search Button */
.search-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #ff8c00;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 200;
    color: #000;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.search-btn:active {
    transform: scale(0.95);
}

/* Search Modal */
.search-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 300;
    align-items: center;
    justify-content: center;
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    background-color: #1a1a1a;
    border: 2px solid #ff8c00;
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.search-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #ff8c00;
    font-size: 1.5em;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-modal-close:hover {
    color: #ffb347;
    transform: rotate(90deg);
}

.search-modal h2 {
    color: #ff8c00;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.search-modal-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ff8c00;
    border-radius: 8px;
    background-color: rgba(255, 140, 0, 0.1);
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.search-modal-input::placeholder {
    color: #888;
}

.search-modal-input:focus {
    outline: none;
    background-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    border-color: #ff8c00;
    background-color: #1a1a1a;
}

.search-result-item h3 {
    color: #ff8c00;
    margin-bottom: 5px;
    font-size: 1em;
}

.search-result-item p {
    color: #aaa;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.search-result-price {
    color: #ff8c00;
    font-weight: bold;
    font-size: 1.05em;
}

.search-no-results {
    text-align: center;
    color: #aaa;
    padding: 20px;
    font-size: 1.1em;
}

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    border-bottom: 2px solid #ff8c00;
    position: static;
    z-index: 99;
    overflow-x: visible;
}

.nav-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
    overflow-x: visible;
    white-space: normal;
    scroll-behavior: smooth;
    justify-content: center;
    align-items: center;
}

.nav-link {
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: rgba(255, 140, 0, 0.1);
    border: 1px solid transparent;
    display: inline-block;
    white-space: normal;
    text-align: center;
    min-width: auto;
}

.nav-link:hover,
.nav-link.active {
    background-color: #ff8c00;
    color: #000;
    border-color: #ff8c00;
}

/* Main Content */
main {
    padding: 40px 15px;
}

/* Section Styling */
.menu-section {
    margin-bottom: 50px;
    scroll-margin-top: 200px;
}

.section-title {
    font-size: 1.8em;
    color: #ff8c00;
    margin-top: 40px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff8c00;
    font-weight: bold;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.menu-item {
    background-color: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px dashed #ff8c00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    pointer-events: none;
}

.menu-image-placeholder:hover {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    border-style: solid;
}

.menu-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 0;
    color: transparent;
}

.image-text {
    color: #ff8c00;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    pointer-events: none;
}

.image-text {
    color: #ff8c00;
    font-size: 0.9em;
    font-weight: 600;
    text-align: center;
    pointer-events: none;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ff8c00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    border-color: #ff8c00;
    background-color: #222;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item h3 {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.menu-item .description {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    display: block;
    font-size: 1.4em;
    color: #ff8c00;
    font-weight: bold;
    padding-top: 15px;
    border-top: 1px solid #333;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 3px solid #ff8c00;
    padding: 30px 0;
    text-align: center;
    color: #aaa;
    margin-top: 50px;
}

.footer p {
    margin: 8px 0;
    font-size: 0.95em;
}

.footer p:first-child {
    color: #fff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }

    .logo {
        font-size: 1.5em;
    }

    .contact-info p {
        font-size: 0.85em;
    }

    .section-title {
        font-size: 1.4em;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 20px;
    }

    .menu-item {
        padding: 15px;
    }

    .menu-image-placeholder {
        height: 150px;
        margin-bottom: 12px;
    }

    .menu-item h3 {
        font-size: 1.05em;
    }

    .menu-item .description {
        font-size: 0.85em;
    }

    .price {
        font-size: 1.2em;
    }

    main {
        padding: 20px 10px;
    }

    .menu-section {
        margin-bottom: 35px;
    }

    .nav-scroll {
        padding: 10px 0;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2em;
    }

    .contact-info p {
        font-size: 0.8em;
    }

    .header {
        padding: 15px 0;
    }

    .section-title {
        font-size: 1.2em;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 15px;
    }

    .menu-item {
        padding: 12px;
    }

    .menu-image-placeholder {
        height: 120px;
        margin-bottom: 10px;
    }

    .menu-item h3 {
        font-size: 1em;
    }

    .menu-item .description {
        font-size: 0.8em;
        margin-bottom: 10px;
    }

    .price {
        font-size: 1.1em;
        padding-top: 10px;
    }

    main {
        padding: 15px 10px;
    }

    .menu-section {
        margin-bottom: 25px;
    }

    .nav-scroll {
        padding: 8px 0;
        gap: 6px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 0.8em;
    }

    .footer p {
        font-size: 0.8em;
        margin: 5px 0;
    }

    .search-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2em;
    }

    .search-modal-content {
        width: 95%;
        padding: 20px;
    }

    .search-modal h2 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .search-modal-input {
        padding: 12px;
        font-size: 1em;
        margin-bottom: 15px;
    }

    .search-results {
        max-height: 300px;
    }

    .search-result-item {
        padding: 10px;
        margin-bottom: 8px;
    }

    .search-result-item h3 {
        font-size: 0.95em;
    }

    .search-result-item p {
        font-size: 0.85em;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #ff8c00;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffb347;
}
