:root {
    --primary-color: #8D6E63;
    --secondary-color: #A1887F;
    --text-color: #4E342E;
    --background-color: #FBEBD2;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Georgia', serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    font-size: 1.8em;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links li a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-links li a:hover {
    background-color: var(--secondary-color);
}

.auth-buttons button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
    transition: background-color 0.3s, transform 0.1s;
}

.auth-buttons button:hover {
    background-color: #6D4C41;
    transform: translateY(-2px);
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.title-source {
    text-decoration: none;
    color: white;
}

.title-logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}


.menu-toggle {
    display: none;
    font-size: 1.8em;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0 10px;
}


section {
    padding: 60px 5%;
    min-height: 90vh;
    text-align: center;
}

section h2 {
    margin-bottom: 40px;
    font-size: 2.5em;
    color: var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.content-box {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
}

.carousel-container {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
    display: block;
    height: 500px;
    object-fit: fill;
}

.menu-carousel .carousel-slide img {
    height: 350px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 18px;
    margin-top: -22px;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border: none;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.9);
}


.menu-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-category {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    width: 45%;
    text-align: left;
}

.post-insta {
    padding: 10px;
}

.elfsight-app-68273948-ebf2-48ed-a5ca-499834c2dc65 {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

.location-details,
.feedback-form,
.thank-you {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: left;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.location-link {

    color: #4E342E;

    text-decoration: none;
}

.feedback-form form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--primary-color);
}

.feedback-form form input,
.feedback-form form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
}

.feedback-form form button {
    margin-top: 25px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
}

.thank-you {
    text-align: center;
    color: var(--primary-color);
    border: 2px dashed var(--secondary-color);
    font-style: italic;
    font-size: 1.1em;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 25px;
    border: none;
    width: 90%;
    max-width: 450px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;

        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: var(--primary-color);
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links li a,
    .nav-links .auth-buttons button {
        display: block;
        padding: 10px 0;
        width: 80%;
        margin: 5px auto;
    }

    .auth-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 10px 0;
    }

    .menu-items {
        flex-direction: column;
        gap: 20px;
    }

    .menu-category {
        width: 100%;
    }

    .carousel-slide img {
        height: 300px;

    }
}

:root {
    --primary-color: #795548;
    --secondary-color: #FFC107;
    --text-light: #f4f4f4;
    --text-dark: #333;
}

#main-footer {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
    font-size: 1.2em;
}

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

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.copyright-year {
    color: #ffc107;
    text-shadow: 0px 0px 6px #ff9900, 0px 0px 16px #f8cb14d3;
    font-weight: bold;
    letter-spacing: 0.7px;
    text-align: center;
}


.footer-section p i,
.social-links a i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #6d4c41;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links img {
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: 0.4s;
}

.social-links img:hover {
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        min-width: 90%;
        text-align: center;
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    outline: none;
    background: #fff;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    display: none;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: #ddd;
}

/* Extra Css */
/* GALLERY SECTION */
/* 
.gallery-section {
    background-color: #000;
    
    color: #fff;
    padding: 60px 5%;
}

.gallery-header {
    margin-bottom: 40px;
}

.gallery-header .gallery-number {
    display: block;
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}


.gallery-grid img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}


@media (min-width: 768px) {
    .gallery-grid img {
        height: 220px;
    }
}
.menu-preview {
    border: 3px solid #ffb300;   
    border-radius: 10px;
 
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
}
.menu-preview:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.7);
}
.menu-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.menu-modal-img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 10px;
    margin: auto;
}

#closeMenuModal {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}  */