/* General Body & Typography */
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; line-height: 1.6; color: #333; background-color: #fdfdfd; }
.container { width: 90%; max-width: 1200px; margin: auto; overflow: hidden; padding: 40px 0; }
h1, h2, h3 { color: #2c3e50; }
h2 { text-align: center; margin-bottom: 40px; font-size: 2.2em; }
.cta-button { display: inline-block; padding: 12px 25px; background: #e67e22; color: #fff; text-decoration: none; border-radius: 5px; font-weight: bold; transition: background-color 0.3s ease; }
.cta-button:hover { background: #d35400; }

/* Header & Navigation */
.main-header { background: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform 0.3s ease-in-out; }
.main-header.is-hidden { transform: translateY(-100%); }
.main-header .container { display: flex; justify-content: space-between; align-items: center; padding: 0; width: 90%; }
.main-header .logo { font-size: 1.8em; margin: 0; }
.main-header nav a { text-decoration: none; color: #555; margin: 0 15px; font-weight: 500; }
.header-right { display: flex; align-items: center; }

/* Hero Slider Section */
.hero-slider { position: relative; height: 70vh; }
.swiper { width: 100%; height: 100%; }
.swiper-slide { text-align: center; font-size: 18px; background: #fff; display: flex; justify-content: center; align-items: center; }
.swiper-slide img { display: block; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6); }
.hero-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; text-align: center; z-index: 10; }
.hero-text h2 { font-size: 3em; color: #fff; margin: 0 0 10px 0; }
.hero-text p { font-size: 1.2em; }

/* Menu/Product Section */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.menu-item { background: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); overflow: hidden; text-align: center; }
.menu-item img { width: 100%; height: 200px; object-fit: cover; }
.menu-item-content { padding: 20px; }
.menu-item h3 { margin-top: 0; }
.menu-item .price { color: #e67e22; font-weight: bold; font-size: 1.2em; }

/* Location Section */
.location-section .container { display: flex; gap: 40px; flex-wrap: wrap; }
.location-details, .map-container { flex: 1; min-width: 300px; }
.hours-list { list-style: none; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #eee; }
.map-placeholder, .map-container iframe { width: 100%; height: 400px; background: #f4f4f4; border: none; border-radius: 8px; display: flex; justify-content: center; align-items: center; }

/* Gallery Section */
.gallery-section { background-color: #f9f9f9; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; }
.gallery-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform 0.3s ease; }
.gallery-grid img:hover { transform: scale(1.05); }

/* Reviews Section */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); border-top: 4px solid #e67e22; }
.review-card p { font-style: italic; }
.review-card cite { font-weight: bold; color: #333; margin-top: 15px; display: block; }

/* Footer */
.main-footer { background: #2c3e50; color: #fff; text-align: center; padding: 40px 0; }
.main-footer h2 { color: #fff; }

/* Lightbox Styles */
.lightbox { display: none; position: fixed; z-index: 2000; padding-top: 100px; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.9); opacity: 0; transition: opacity 0.4s ease; }
.lightbox.is-visible { display: block; opacity: 1; }
.lightbox-content { margin: auto; display: block; max-width: 80%; max-height: 80%; }
.lightbox-close { position: absolute; top: 15px; right: 35px; color: #f1f1f1; font-size: 40px; font-weight: bold; transition: 0.3s; cursor: pointer; }
.lightbox-close:hover, .lightbox-close:focus { color: #bbb; text-decoration: none; }

/* Hamburger Button Base Styles */
.hamburger-button { display: none; flex-direction: column; justify-content: space-around; width: 30px; height: 25px; background: transparent; border: none; cursor: pointer; padding: 0; margin-left: 20px; }
.hamburger-line { width: 30px; height: 3px; background-color: #333; border-radius: 5px; }

/* --- MOBILE & RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    .main-nav { 
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(253, 253, 253, 0.98);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease-out, visibility 0.35s;
    }
    .main-nav.is-active { opacity: 1; visibility: visible; }
    .main-nav a { margin: 20px 0; text-align: center; font-size: 1.8rem; }
    .desktop-only { display: none; }
    .hamburger-button { display: flex; z-index: 1001; }
}

/* Hamburger 'X' Animation */
.hamburger-button .hamburger-line { transition: transform 0.3s ease-in-out, opacity 0.2s ease-in-out, background-color 0.3s ease-in-out; transform-origin: center; }
.hamburger-button.is-open .hamburger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger-button.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-button.is-open .hamburger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ADD THIS ENTIRE BLOCK */
/* --- Map Placeholder Styles --- */
.map-placeholder {
    position: relative;
    cursor: pointer;
    background-color: #e9e9e9;
    /* Optional: Create a screenshot of your map and save as map-preview.jpg */
    /* background-image: url('images/map-preview.jpg'); */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
    color: #555;
    border: 1px dashed #ccc;
}
.map-placeholder:hover {
    background-color: #dcdcdc;
}
.map-placeholder .map-play-button {
    font-size: 50px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.6);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 80px;
    padding-left: 5px;
    border: 1px solid #ccc;
}
.map-placeholder span {
    color: #333;
    background: rgba(255, 255, 255, 0.6);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: bold;
}
/* ADD THIS ENTIRE BLOCK */
/* --- Social Links Styles --- */
#social-links-container {
    margin: 25px 0;
}

.social-link {
    display: inline-block;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-link i {
    font-size: 28px; /* Controls the icon size */
    color: #fff;     /* Controls the icon color */
}