/* Global Styles */
body {
    font-family: 'SohneBuch', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ebe9df;
    overflow-x: hidden; /* Prevent horizontal scrolling on mobile */
}

@font-face {
    font-family: 'SohneBuch';
    src: url('../fonts/SohneBuch.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improve font loading performance */
}

@font-face {
    font-family: 'NoirEtBlanc';
    src: url('../fonts/NoirEtBlanc.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improve font loading performance */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'NoirEtBlanc', serif;
    margin-bottom: 1.5rem;
}

a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF8C00;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}



.logo img {
    height: 40px;
    transition: all 0.3s ease;
}

/* Navigation Styles */
.navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation ul li {
    margin-left: 30px;
}

.navigation ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.header.scrolled .navigation ul li a {
    color: #333;
}
.header.scrolled .navigation ul li a:hover {
    color: #FF8C00;
}

.navigation ul li a:hover {
    color: #FF8C00; /* Orange color on hover */
}


.navigation ul li a:hover::after,
.navigation ul li a.active::after {
    width: 100%;
}

.navigation ul li a.active {
    color: #FF8C00 !important; /* Orange color for active menu item */
    font-weight: 600;
}

/* Menu Toggle for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #000;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.header.scrolled .menu-toggle span {
    background-color: #333;
}
.header.scrolled{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    background-color: #ebe9df;
}
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Content Section Styles */
.content-section {
    min-height: 100vh;
    display: flex;
    background: #ebe9df;
    align-items: center;
}

.content-wrapper {
    padding: 80px 40px;
    max-width: 600px;
}
.content-wrapper h5{
    font-family: 'SohneBuch', sans-serif;
    margin-bottom: 10px;
    font-weight: 600;
}
.image-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero Section for Home Page */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 10;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
/* Section Heading Styles */
.section-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-heading h2 {
    font-size: 36px;
  margin-top: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-heading p {
    font-family: 'SohneBuch', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}

.section-heading p span {
    color: #FF8C00;
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }
    
    .section-heading p {
        font-size: 16px;
    }
}
/* Gallery Styles */
/* Gallery Section */
.gallery-section {
    background-color: #ebe9df;
    padding: 80px 0;
}
.gallery-section .gallery-overlay {
    top: 50px;
}
/* Gallery Filter */
.gallery-filter {
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 8px 15px;
    margin: 0 5px 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #FF8C00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 80%;
}

.filter-btn:hover,
.filter-btn.active {
    color: #FF8C00;
}

/* Gallery Grid */
.gallery-grid {
    width: 100%;
    margin: 0 auto;
    display: block; /* Changed from grid to block for masonry */
    position: relative;
}

.gallery-item {
    position: absolute; /* Changed from relative to absolute for masonry */
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 20px;
    left: 40px;
    z-index: 150;
    transition: opacity 0.3s ease;
}

.gallery-slide:hover .gallery-overlay {
    opacity: 1;
}
button.gallery-nav:hover {
    color: #FF8C00;
}
.overlay-logo {
    width: 80px !important;
    height: auto;
}

/* Navigation Buttons */
.gallery-nav {
    position: absolute;
    transform: translateY(-50%);
    background: transparent;
    font-family: 'NoirEtBlanc';
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 20px;
}

.prev-btn {
    left: 43%;
    bottom: 0;
}

.next-btn {
    right: 43%;
    bottom: 0;
}

.gallery-slide.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

/* .gallery-slide.fullscreen img {
    object-fit: contain;
} */

/* Visit Us Page Styles */
.map-container {
    height: 400px;
    width: 100%;
}

.contact-info a {
    display: inline-block;
    margin-bottom: 0px;
    font-weight: bold;
}
.home-menu, .menu-toggle span{
    background-color: #fff;
}
.visitus-menu, .menu-toggle span{
    background-color: #FF8C00;
}
/* Footer Styles */
.footer {
    background-color: #ebe9df;
    padding: 40px 0 20px;
    color: #333;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .content-wrapper {
        padding: 60px 30px;
    }
    .gallery-section .gallery-overlay{
        display: none;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    .prev-btn {
        left: 35%;
        bottom: 0;
    }
    
    .next-btn {
        right: 35%;
        bottom: 0;
    }
    
    .logo img {
        height: 35px;
    }
    
    .navigation ul li {
        margin-left: 20px;
    }
    
    .navigation ul li a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }
    .gallery-section .gallery-overlay{
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #ebe9df;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .navigation.active {
        right: 0;
    }
    
    .navigation ul {
        flex-direction: column;
    }
    .gallery-overlay{
        left: 20px;
    }
    
    .navigation ul li {
        margin: 0;
        padding: 15px 20px;
    }
    
    .navigation ul li a {
        color: #333;
        font-size: 14px;
    }
    
    .content-wrapper {
        padding: 40px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .row.g-0 > div {
        min-height: 50vh !important;
    }
    .prev-btn {
        left: 30%;
        bottom: 0;
    }
    
    .next-btn {
        right: 30%;
        bottom: 0;
    }
    
    /* Improve touch targets for mobile */
    .gallery-nav {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
    
    /* Better spacing for mobile content */
    .content-section {
        padding-top: 60px;
    }
    
    /* Ensure images don't overflow on small screens */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve mobile menu usability */
    .navigation ul li a {
        display: block;
        padding: 5px 0;
    }
}

/* Additional mobile-specific styles */
@media (max-width: 576px) {
    .logo img {
        height: 30px;
    }
    .gallery-section .gallery-overlay{
        display: none;
    }
    .content-wrapper {
        padding: 30px 15px;
    }
    
    .prev-btn {
        left: 25%;
        bottom: 0;
    }
    
    .next-btn {
        right: 25%;
        bottom: 0;
    }
    
    /* Improve gallery navigation on very small screens */
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    /* Adjust overlay logo size for small screens */
    .overlay-logo {
        width: 60px !important;
    }
    
    /* Ensure proper spacing in contact section */
    .contact-info h5 {
        margin-top: 15px;
    }
    
    /* Improve footer readability */
    .footer-bottom {
        font-size: 12px;
    }
}

/* Fix for touch devices */
@media (hover: none) {
    .gallery-slide:hover img {
        transform: none; /* Disable hover effects on touch devices */
    }
    
    .navigation ul li a:hover {
        color: #FF8C00; /* Ensure color change works on tap */
    }
}
.dish-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color:rgba(22, 22, 21, 0.45);
    color: #fff;
    padding: 10px 15px;
    font-family: 'NoirEtBlanc';
    font-size: 18px;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .dish-name-overlay {
    opacity: 1;
}