html {
    scroll-behavior: smooth;
}

#language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  #language-switcher button {
    background-color: transparent;
    border: none;
    font-size: 16px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
  }
  
  #language-switcher button:hover {
    color: #007BFF;
  }
  
  .swiper-slide {
    height: 200px; /* Set fixed height */
    overflow: hidden;
    border-radius: 8px;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%; /* Match container height */
    object-fit: cover; /* Crop and center image */
    border-radius: 8px;
    cursor: pointer;
    display: block;
  }

  .preview-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
  }

  .preview-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
  }

.hero-slideshow {
    position: relative;
    height: 70vh;
    overflow: hidden;
  }
  
  .hero {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease, transform 1.5s ease;
  }
  
  .hero.active {
    opacity: 1;
    z-index: 2;
  }
  
  .fade-in {
    transform: scale(1);
    opacity: 1;
  }
  
  .slide-in {
    transform: translateX(0);
    opacity: 1;
  }
  
  .slide-from-right {
    transform: translateX(100%);
  }
  
  .slide-from-left {
    transform: translateX(-100%);
  }
  
  .fade-out {
    opacity: 0;
  }
  
  

/* Transparent Navbar */
.navbar {
    transition: background-color 0.4s ease-in-out, padding 0.3s ease-in-out;
    padding: 18px 0;
}

.navbar-transparent {
    background-color: rgba(50, 50, 50, 0);
}

.navbar-scrolled {
    background-color: #8b0000; 
    padding: 10px 0;
}

/* Navbar Items */
.navbar .nav-link {
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
    padding: 10px 15px;
}

/* Navbar Items Hover Effect */
.navbar .nav-link:hover {
    color: #429339 !important;
}

.navbar-scrolled .nav-link {
    color: #ffffff;
}

/* Navbar Items Spacing */
.navbar-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-left: auto;
    margin-right: auto;
}

/* Logo */
.navbar-brand img {
    height: 75px;
    transition: height 0.3s ease-in-out;
}

.navbar-scrolled .navbar-brand img {
    height: 60px;
}

/* Center Navbar */
.navbar-collapse {
    justify-content: center;
}

/* Hero Title Animation */
.hero h1 {
    color: #FFD700;
    font-family: cursive;
    font-size: 80px;
    font-weight: bold;
    opacity: 0;
    animation: twinkle 2s ease-in-out forwards;
}

@keyframes twinkle {
    0% { opacity: 0; }
    25% { opacity: 1; }
    50% { opacity: 0.6; }
    75% { opacity: 1; }
    100% { opacity: 1; }
}

.hero h2 {
    color: #FFD700;
    font-size: 22px;
    font-family: cursive;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards 1s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero p {
    color: antiquewhite;
    font-size: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards 1s;
}

/* Info Bar Section */
.info-bar {
    height: 60vh;
    background: url('/Images/pic10.jpg') center/cover no-repeat;
    padding: 30px 50px;
    color: white;
    font-size: 22px;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    align-content: center;
}

/* Styling for Welcome Message */
.welcome-message {
    text-align: center;
    margin-bottom: 30px;
}

.welcome-message h1 {
    font-size: 40px; /* Adjust font size for better readability */
    font-weight: bold;
    color: #FFD700; /* Gold color */
    margin-bottom: 10px;
}

.welcome-message p {
    font-size: 18px; /* Adjust font size for mobile and small screens */
    color: whitesmoke;
    line-height: 1.5;
}

/* Info Bar Text Styling */
.info-bar .info-item {
    padding: 15px;
}

.info-bar .info-title {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    color: green;
}

.info-bar i {
    margin-right: 10px;
    color: indianred;
}

.info-bar span {
    font-size: 30px;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    color: whitesmoke;
}

#phone {
    margin-left: 80px;
}

/* Background for Breakfast Menu */
.breakfast-menu {
    height: 80vh;
    background: url('/Images/pic8.jpg') center/cover no-repeat;    
    padding: 60px 20px;
    color: white;
}

/* Styling for Menu Header (Breakfast Menu and Time) */
.menu-header {
    margin-bottom: 40px;
}

.menu-header h2 {
    font-size: 40px;
    font-weight: bold;
    color: #FFD700; /* Gold color */
}

.menu-header .menu-time {
    font-size: 18px;
    color: white; /* Dark red color */
    font-style: italic;
}

/* Pizza Items Styling */
.pizza-item {
    margin-bottom: 20px;
    text-align: center;
}

.pizza-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold color */
    margin-bottom: 10px;
}

.pizza-item .ingredients {
    font-size: 16px;
    font-style: italic;
    color: white; /* Dark red color */
}

/* Menu Price Styling */
.menu-price {
    font-size: 120px;
    font-weight: bold;
    color: #FFD700; /* Gold color */
    margin-top: 20px;
    text-align: center;
}

/* Styling for the location widget */
.location-widget {
    height: 30vh;
    background-color: darkorange;
    padding: 30px 20px;
    text-align: center;
    color: white;
    /* margin-top: 50px; */
    /* border-radius: 10px; Rounded corners */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

/* Location text style */
.location {
    font-size: 70px;
    font-weight: 600;
    
}

.location span {
    font-size: 50px;
    font-family: 'Trebuchet MS', Arial, sans-serif;
    color: #FFD700; /* Gold color */
    text-transform: capitalize;

    
}


.full-menu-section {
    background-image: url('/Images/pic9.jpg'); /* Replace with your actual path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This gives the parallax sliding effect */
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: white;
}

.full-menu-section h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFD700;
}

.full-menu-section p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto 40px;
    color: antiquewhite;
    font-family: cursive;
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.menu-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: scale(1.1);
}

.menu-icon {
    width: 100px;   /* Larger size */
    height: 100px;
    object-fit: contain;
}

.menu-label {
    margin-top: 10px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}

.menu-content {
    display: none;
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
}

.menu-content.active {
    display: block;
}

.menu-content h3 {
    font-size: 36px;
    color: #FFD700;
}

.menu-content ul {
    list-style: none;
    padding: 0;
}

.menu-content li {
    font-size: 20px;
    margin-bottom: 12px;
    color: #fff;
}
.menu-list {
    list-style: decimal inside;
    padding-left: 0;
  }
  
  .menu-list li {
    margin-bottom: 16px;
    font-size: 18px;
    color: #fff;
  }
  
  .menu-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px; /* Adjust space between items */
  }
  
  .menu-info {
    flex: 2; /* Allow menu item info to take up more space */
    padding-right: 10px;
    text-align: left; /* Align to the left */
    font-size: 15px;
    
  }

  .item-name{
    color: #429339;
    font-size: 20px;

  }
  
  .menu-dots {
    flex: 2; /* Make the dotted line take up available space */
    border-bottom: 2px dotted #ccc;
    margin: 0 10px;
  }
  
  .lunch-menu-price {
    flex: 1; /* Allow the price to take only necessary space */
    text-align: center; /* Align prices to the right */
    font-weight: normal; /* Normal weight */
    font-size: 100px; /* Adjusted size */
    color: red;
  }
  .menu-price {
    flex: 1; /* Allow the price to take only necessary space */
    text-align: center; /* Align prices to the right */
    font-weight: normal; /* Normal weight */
    font-size: 20px; /* Adjusted size */
    color: white;
  }
  
  /* Adjust the menu content to look better */
  .menu-content h3 {
    font-size: 36px;
    color: #FFD700;
  }
  
  .menu-stats-section {
    background-color: orange;
    color: white;
  }
  
  .counter-box {
    flex: 1 1 200px;
    padding: 20px;
  }
  
  .counter-box h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .counter-box p {
    font-size: 1.2rem;
    margin: 0;
  }

  footer {
    background-image: url('/Images/footer-bg.jpg'); /* Change this to the path of your image */
    background-size: cover; /* Ensure the background covers the entire footer */
    background-position: center; /* Center the image */
    color: #fff; /* White text color */
    padding: 40px 0;
    text-align: center;
  }
  
  footer h5 {
    font-weight: bold;
  }
  
  footer p {
    margin: 0;
  }
  
  footer .container {
    z-index: 2; /* Ensures content is on top of the background image */
  }
  
  footer hr {
    border-color: rgba(255,255,255,0.2);
  }
  footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }
      


/* Mobile View Adjustments (Media Query) */
@media (max-width: 767px) {

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 90vh;
        overflow-y: auto;
        background-color: #8b0000;
        z-index: 9999;
    }
    .navbar .container {
        position: relative;
      }
    .navbar {
        background-color: #8b0000; 
        padding: 1px 0;
    }
    
    .hero {
        height: 80vh;
    }

    .hero h1 {
        padding-top: 20px;
        font-size: 40px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .hero p {
        font-size: 18px;
        padding-bottom: 10px;
    }

    .info-bar {
        
        height: 100vh;
    }
    .welcome-message h1 {
        font-size: 32px; /* Adjust header font size for mobile */
    }

    .welcome-message p {
        font-size: 16px; /* Adjust paragraph font size for mobile */
    }

    .info-bar .info-item {
        text-align: center;
        flex: 1;
        margin-bottom: 15px;
    }

    .info-bar .info-title {
        font-size: 28px;
    }

    .info-bar i {
        font-size: 40px;
    }

    .info-bar span {
        font-size: 24px;
    }

    .info-bar .info-item {
        padding: 10px;
    }
    .breakfast-menu {
        height: 150vh;
        
    }    
    .lunch-menu-price {
       
        font-size: 50px; /* Adjusted size */
        color: red;
      }

    .pizza-item h4 {
        font-size: 18px;
    }

    .pizza-item .ingredients {
        font-size: 14px;
    }


    .menu-price {
        font-size: 24px;
    }
    .location-widget {
        height: 10vh;
        padding-bottom:  130px;
    }

    .location span {
        font-size: 15px;
    }
    .full-menu-section{
        padding-top: 4px;
    }
    .full-menu-section h2 {
        font-size: 22px;
    }

    .full-menu-section p {
        font-size: 12px;
    }

    

     .menu-categories {       
        gap: 10px;
        margin-bottom: 6px;
    }

    .menu-icon {
        width: 50px;  
        height: 50px;
        object-fit: contain;
    }

    .menu-category .menu-label {
        font-size: 12px;
    }
    .menu-content {
        
        padding: 0px;
        
        border-radius:8px;
    }
    .menu-content h3 {
        font-size: 22px;
      }
      .menu-content h6 {
        font-size: 10px;
      }
      .menu-content li {
        font-size: 8px;
        margin-bottom: 3px;
        
    }

    .menu-line {
        justify-content: space-evenly;
        margin-bottom: 10px; /* Adjust space between items */
      }

      .menu-info {
        flex: 1; 
        padding-right: 2px;
        text-align: left; 
        font-size: 8px;
        
      }

      .item-name{
        font-size: 10px;
    
      }
      
      .menu-dots {
        flex: 1; 
        border-bottom: 1px dotted #ccc;
      }

      .menu-price {
        flex: 1; 
       
        font-size: 8px; 
        
      }

    .counter-box h2 {
        font-size: 2rem;
    }

    .counter-box p {
        font-size: 1rem;
    }

    footer h5 {
        font-size: 20px;
    }

    footer p {
        font-size: 14px;
    }

    
}
