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

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: black;
    background: linear-gradient;
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Header styles */
header {
    background-color: #003B95;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.desktop-nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
    display: none;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 19px;
    left: 10px;
    z-index: 1002;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #003B95;
    z-index: 1001;
    transition: left 0.3s ease-in-out;
    padding: 60px 20px 20px; /* Add top padding to account for header */
    box-sizing: border-box;
}

.side-menu a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
}

/* Main content styles */
main {
    padding-top: 60px;
    flex: 1 0 auto;
}

/* Hero styles */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 8px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
}

/* Section styles */
section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Restaurant info styles */
.restaurant-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Section icons styles */
#section-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.icon {
    text-align: center;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s;
    border-radius: 8px;
}

.icon:hover {
    background-color: #f4f4f4;
}

.icon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.icon.active {
    box-shadow: 0 0 15px;
}

.icon[data-target="about"].active {
    box-shadow: 0 0 15px #4CAF50;
}

.icon[data-target="gallery"].active {
    box-shadow: 0 0 15px #2196F3;
}

.icon[data-target="menu"].active {
    box-shadow: 0 0 15px #FFC107;
}

.icon[data-target="reviews"].active {
    box-shadow: 0 0 15px #9C27B0;
}

.icon[data-target="location"].active {
    box-shadow: 0 0 15px #F44336;
}

.icon[data-target="tiktok"].active {
    box-shadow: 0 0 15px #E91E63;
}

/* Content section styles */
.content-section {
    display: none;
    margin-top: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-section.active {
    display: block;
}

/* Gallery styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
}

/* Menu styles */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.menu-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
}

.menu-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.price {
    display: block;
    font-weight: bold;
    color: #e44d26;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

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

/* Reviews styles */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.reviewer-info h3 {
    margin-bottom: 0.25rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    color: #ffd700;
    fill: #FFD700;
}

/* Google attribution styles */
.google-attribution {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.google-logo {
    height: 30px;
    margin-right: 0.5rem;
}

/* Location styles */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* TikTok embed styles */
.tiktok-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.tiktok-embed {
    max-width: 605px;
    margin: 0 auto;
}

/* CTA section styles */
.cta {
    background-color: #e44d26;
    color: white;
    text-align: center;
    padding: 4rem 0;
    border-radius: 8px;
}

.cta h2 {
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: white;
    color: #e44d26;
    border: 2px solid #f60d0d;
}

.btn-primary:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: red;
    color: #eeeeee;
    border: 2px solid #f40505;
}

.btn-secondary:hover {
    background-color: transparent;
    color: red;
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.chat-button {
    background-color: #003B95;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}
.chat-button:hover {
    transform: scale(1.1);
}
.chat-icon {
    width: 30px;
    height: 30px;
    color: white;
}
.chatbot-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}
.chatbot-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    height: 80%;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
}

/* Footer styles */
footer {
    background-color: black;
    color: white;
    padding: 3rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ddd;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
}

.copyright {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #ddd;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .container {
        padding: 0 10px;
    }

    header .container {
        justify-content: center;
        padding: 0 15px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #003B95;
        justify-content: space-around;
        padding: 10px 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .mobile-nav .nav-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5px;
        color: white;
        text-decoration: none;
        font-size: 0.7rem;
    }

    .mobile-nav .nav-link i {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .hero {
        height: 40vh;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-image {
        height: 200px;
    }

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

    .menu-item h3 {
        font-size: 1.1rem;
    }

    .menu-item p {
        font-size: 0.85rem;
    }

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

    .cta {
        padding: 3rem 0 3rem;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    #section-icons {
        display: none;
    }

    .content-section {
        display: block;
        margin-top: 2rem;
    }

    .chatbot-modal {
        width: 95%;
        height: 90%;
    }
    .chatbot-container {
        bottom: 70px;
    }

body.modal-open {
    overflow: hidden;
}

    footer {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        font-size:13px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.5rem;
    }

   .gallery-grid {
        gap: 8px;
    }

    .gallery-image {
        height: 150px;
    }

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

    .menu-item p {
        font-size: 0.9rem;
    }

    .cta h2 {
        font-size: 1.4rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    body {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        gap: 6px;
    }

    .gallery-image {
        height: 120px;
    }

    .menu-item h3 {
        font-size: 0.95rem;
    }

    .menu-item p {
        font-size: 0.75rem;
    }

    .cta {
        padding: 3rem 0 5rem;
        margin-bottom: 10px;
    }

    .cta h2 {
        font-size: 1.3rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.45rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 11px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.75rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        gap: 4px;
    }

    .gallery-image {
        height: 100px;
    }

    .menu-item h3 {
        font-size: 0.9rem;
    }

    .menu-item p {
        font-size: 0.7rem;
    }

    .cta h2 {
        font-size: 1.2rem;
    }

    .cta {
        padding: 3rem 0 5rem;
        margin-bottom: 10px;
    }

    .btn-primary, .btn-secondary {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

@supports (padding: max(0px)) {
    .mobile-nav {
        padding-bottom: max(5px, env(safe-area-inset-bottom));
    }

    body {
        padding-bottom: calc(80px + max(10px, env(safe-area-inset-bottom)));
    }
}

main {
    padding-bottom: 20px;
}