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

/* Body and Font */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
}


/* Header Styling */
header {
    background-color: #003366;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
}

/* Slogan Styling */
.slogan {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #FFD700;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Floating Sequential Text Animation */
.floating-text span {
    display: inline-block;
    animation: floatWords 1.5s ease-in-out infinite alternate;
}

.floating-text span:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-text span:nth-child(3) {
    animation-delay: 1s;
}

@keyframes floatWords {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-10px);
    }
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links > li {
    margin: 0 15px;
}

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

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

/* Menu Section */
.menu {
    padding: 60px 20px;
    text-align: center;
}

.menu h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.price-tag {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    margin: 10px auto;
    border-radius: 5px;
}

.menu-item p {
    font-size: 18px;
    margin: 10px 0;
}

/* Contact Section */
.contact {
    padding: 40px 20px;
    background-color: #003366;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Chatbot Container */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

df-messenger {
    position: fixed;
    --chatbot-offset: 20px;
    bottom: var(--chatbot-offset);
    right: var(--chatbot-offset);
    z-index: 1000;
    --df-messenger-chat-window-width: 320px;
    --df-messenger-chat-window-height: 380px;
}

@supports (bottom: env(safe-area-inset-bottom)) {
    df-messenger {
        bottom: calc(var(--chatbot-offset) + env(safe-area-inset-bottom));
        right: calc(var(--chatbot-offset) + env(safe-area-inset-right));
    }
}

/* Footer */
footer {
    padding: 20px 0;
    background-color: #333;
    color: #fff;
    text-align: center;
}

footer p {
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo h1 {
        font-size: 28px;
    }

    .slogan {
        font-size: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .nav-links > li {
        margin: 0;
    }

    .menu-items {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    df-messenger {
        --chatbot-offset: 12px;
        --df-messenger-chat-window-width: 320px;
        --df-messenger-chat-window-height: 360px;
    }
}
