body {
    background: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white; /* Ensures text visibility */
}

/* User Button */
.nav-item .nav-link {
  display: flex;
  align-items: center;
  padding-right: 15px;
  font-size: 16px;
}

/* User Icon */
.nav-item .nav-link i {
  margin-right: 5px;
  font-size: 18px;
}

/* Search Form */
.nav-item form {
  display: flex;
  align-items: center;
}

.nav-item form .form-control {
  border-radius: 20px;
  width: 200px;
  margin-right: 10px;
}

.nav-item form .btn {
  border-radius: 20px;
}

/* Adjust search input focus */
.nav-item form .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Optional: Change navbar link hover style */
.nav-item .nav-link:hover {
  color: #ffcc00; /* Example color */
}


/* Animated logo appearance */
@keyframes logoAnimation {
  0% {
      opacity: 0;
      transform: translateY(-30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

.navbar-brand .logo {
  animation: logoAnimation 0.6s ease-out forwards;
}


.containerfirstsection{
    background: radial-gradient(circle, #2c2c2c 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* Adding a subtle noise effect */
.containerfirstsection::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/asfalt-dark.png'); /* Free noise texture */
    opacity: 0.2; /* Adjust for more/less texture */
    pointer-events: none; /* Keeps it non-interactive */
}


.navbar-brand {
    font-family: "Protest Revolution", serif;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    margin-left: 50px;
}

.navbar-brand .logo {
    width: 60px;  /* Adjust width to your preference */
    position: absolute;
    margin-top: -15px;
    height: auto; /* Maintains the aspect ratio */
    margin-left: -60px;
}

.navbar-nav .nav-link {
    font-size: 1.2rem;
    margin-right: 15px;
}

.welcome-text {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 5px black;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: bold;
}

.octopus-img {
    width: 500px;
    margin-top: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.btn-primary {
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 25px;
}

/* Custom Navbar */
.custom-navbar {
    background: radial-gradient(circle, #FF8C42, #DD6E42, #8B3A22);
    padding: 10px 0;
}
.custom-navbar .nav-link {
    color: #fff !important;
    font-size: 18px;
    font-weight: bold;
}
.order_online {
    background: #fff;
    color: #DD6E42;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
}
.order_online:hover {
    background: #ffebc1;
}

/* Search Button */
.nav_search-btn {
    background: #fff;
    border: none;
    padding: 8px;
    border-radius: 50%;
}


.detail-box {
    text-align: left;
    color: #333;
    padding: 70px;
}
.detail-box h1 {
    font-family: "Protest Revolution", serif;
    font-size: 42px;
    font-weight: bold;
    color: #DD6E42;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5), -2px -2px 3px rgba(255, 255, 255, 0.7);
}

.detail-box p {
    font-size: 18px;
    line-height: 1.5;
    color: white;
}

/* Order Button */
.btn1 {
    background: #DD6E42;
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px;
    
}
.btn1:hover {
    background: #b84e2f;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    border-radius: 110%;
}
/* Container for carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: 10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
  }
  
  /* Styling each indicator */
  .carousel-indicators li {
    width: 12px; /* Size of the indicator */
    height: 12px; /* Size of the indicator */
    margin: 0 4px; /* Spacing between indicators */
    background-color: rgba(255, 255, 255, 0.5); /* Default inactive indicator color */
    border-radius: 50%;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }
  
  /* Active indicator styling */
  .carousel-indicators .active {
    background-color: rgba(255, 255, 255, 1); /* Active indicator color */
  }
  
  /* Optional: Hover effect for indicators */
  .carousel-indicators li:hover {
    background-color: rgba(255, 255, 255, 0.75); /* Hover effect color */
  }

  .offer_section {
    padding: 50px;
    background-color: #f8f8f8;
}

.offer_container .box {
    background: radial-gradient(circle, #FF8C42, #DD6E42, #8B3A22);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.offer_container .box:hover {
    transform: translateY(-5px);
}

.img-box img {
    width: 100%;
    border-radius: 10px;
}

.detail-box h5 {
    font-family: "Protest Revolution", serif;
    font-size: 25px;
    font-weight: bold;
    margin: 15px 0 10px;
    color: white;
    text-shadow: -2px -2px 3px rgba(255, 255, 255, 0.3),
                 2px 2px 3px rgba(0, 0, 0, 0.7);
}


.detail-box h6 {
    font-size: 18px;
    color: #ff5722;
    font-weight: bold;
    text-shadow: -1px -1px 3px rgba(255, 255, 255, 0.4),
                 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.detail-box h6 span {
    font-size: 24px;
    color: #e91e63;
    text-shadow: -1px -1px 3px rgba(255, 255, 255, 0.4),
                 1px 1px 3px rgba(0, 0, 0, 0.6);
}


.button2{
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: linear-gradient(to right, #4f6d7a, #3b4c56, #1f323b);
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 25px;
}

.button2:hover {
    background: linear-gradient(to right, #4f6d7a, #2d4b58);

}

.cart-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    margin-left: 5px;
}

.img-box {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    align-items: center;
}

.img-box img {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Keep width and height the same for a perfect circle */
    border-radius: 50%; /* Makes the image circular */
    border: 5px solid #4f6d7a; /* Change color as needed */
    object-fit: cover; /* Ensures the image fills the circle */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3), -4px -4px 8px rgba(255, 255, 255, 0.4);
}



/* Food Section */
.menu-title {
    font-family: "Protest Revolution", serif;
    font-size: 80px;
    margin: 100px 0;
    color: #DD6E42;
    text-align: center;
}

.card-title {
    font-family: "Protest Revolution", serif;
    font-size: 30px;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Adds shadow for a 3D look */
    transform: perspective(500px) rotateX(10deg); /* Adds slight 3D tilt */
    font-weight: bold; /* Enhances the effect */
}


/* Menu Card */
.menu-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 400px;  /* Fixed width for uniformity */
    height: 500px; /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
}

.menu-card:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}

/* Image inside Card */
.menu-card img {
    width: 100%;
    height: 200px; /* Fixed height */
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.menu-card:hover img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Card Body */
.menu-card .card-body {
    background: radial-gradient(circle, #FF8C42, #DD6E42, #8B3A22);
    color: white;
    padding: 15px;
    flex-grow: 1; /* Makes body take up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

/* Price Styling with 3D Effect */
.price {
    font-family: "Protest Revolution", serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffc107; /* Gold color */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Creates depth */
    position: relative;
    display: inline-block;
}

/* 3D Depth Effect */
.price::after {
    content: "50"; /* Duplicate the text for the 3D illusion */
    position: absolute;
    top: 2px;
    left: 2px;
    color: rgba(0, 0, 0, 0.3); /* Shadow effect */
    z-index: -1;
}


/* Buy Button */
.btn-buy {
    background-color: #ffc107;
    border: none;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.btn-buy:hover {
    background-color: #e0a800;
}

/* Navbar */
.navbar {
    background: radial-gradient(circle, #FF8C42, #DD6E42, #8B3A22);
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

/* Filters Menu */
.filters_menu {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filters_menu li {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #DD6E42;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
}

.filters_menu li:hover {
    background-color: #FF8C42;
    transform: scale(1.1);
}

.filters_menu li.active {
    background-color: #ffc107;
    color: #000;
}


/* About Section */
.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* About Container */
.about-container {
    display: flex;
    align-items: center;
    background: radial-gradient(circle, #FF8C42, #DD6E42, #8B3A22);
    padding: 40px;
    border-radius: 50%;
    width: 800px;
    height: 800px;
    position: absolute;
    margin-top: 1000px;
    margin-left: 700px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* About Text */
.about-content {
    flex: 2;
    padding: 20px;
    text-align: left;
    color: #fff;
}

.about-content h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
}

/* Takoyaki Octopus Image */
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 150px;
    height: auto;
}

/* Yellow Circle Container */
.yellow-containercirclelogo {
    width: 500px; /* Adjust as needed */
    height: 500px; /* Ensure width and height are the same for a circle */
    background-color: #FFD23F; /* Yellow background */
    border-radius: 50%; /* Makes it a perfect circle */
    display: flex;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* 3D shadow effect */
    position: absolute; /* Allows better alignment */
    margin-right: 600px;
    margin-top: 1000px;
    overflow: hidden; /* Ensures the image stays inside */
}

/* Takoyaki Logo Inside the Circle */
.about-logo img {
    width: 70%; /* Keeps the logo inside the circle */
    max-width: 500px; /* Prevents overflow */
    margin-left: 80px;
    margin-top: 50px;
    height: auto;
    justify-content: center;
}



/* Contact Section */

.book_section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-top: 1000px;
  }

.book_section1{
    margin-top: 100px;
}

  
  .heading_container {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .heading_container h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
  }
  
  /* Form Styling */
  .form_container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .form-control:focus {
    border-color: #ff4500;
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
  }
  
  /* Button Styling */
  .btn_box {
    text-align: center;
  }
  
  .btn_box button {
    background: #ff4500;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
  }
  
  .btn_box button:hover {
    background: #e03e00;
  }

  h2{
    font-family: "Protest Revolution", serif;
  }
  
  /* Google Map */
  .map_container {
    width: 100%;
    height: 100%;
  }

  
  #googleMap {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  



  /* Footer Section */
.footer_section {
    background: radial-gradient(circle, #FF8C42, #DD6E42, #8B3A22);
    color: #fff;
    padding: 5px 0;
    font-family: Arial, sans-serif;
  }
  
  .footer_section .container {
    max-width: 1200px;
    margin: 50px auto;
  }
  
  .footer_section h4 {
    font-family: "Protest Revolution", serif;
    font-size: 40px;
    margin-bottom: 20px;
    color: white; /* White text */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); /* Darker shadow with more blur for better contrast */
    transform: rotateX(10deg) rotateY(10deg); /* Adds 3D rotation for depth */
  }
  
  h4{
    font-family: "Protest Revolution", serif;
    font-size: 40px;
    margin-bottom: 20px;
    color: white; /* White text */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7); /* Darker shadow with more blur for better contrast */
    transform: rotateX(10deg) rotateY(10deg); /* Adds 3D rotation for depth */
  }
  

  
  .footer_section .footer-col {
    margin-bottom: 20px;
  }
  
  .footer_contact a,
  .footer_detail a {
    color: white; /* Text color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 0, 0, 0.3); /* Adds a soft shadow and glow effect */
    transform: rotateX(5deg) rotateY(5deg); /* Adds subtle 3D rotation */
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .footer_contact a i,
  .footer_detail a i {
    margin-right: 10px;
    
  }
  
  .footer_detail p {
    font-size: 16px;
    line-height: 1.6;
    color: white; /* Text color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 0, 0, 0.3); /* Adds a soft shadow and glow effect */
    transform: rotateX(5deg) rotateY(5deg); /* Adds subtle 3D rotation */
  }
  
  
  .footer_social a {
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
  }
  
  .footer_social a:hover {
    color: #e8a400;
  }
  
  .footer-info {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
  }
  
  .footer-info a {
    color: white; /* Text color */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 0, 0, 0.3); /* Adds a soft shadow and glow effect */
    transform: rotateX(5deg) rotateY(5deg); /* Adds subtle 3D rotation */
    text-decoration: none;
  }
  
  .footer-info a:hover {
    color: #e8a400;
  }

  .footer_section1 {
    background: radial-gradient(circle, #FF8C42, #DD6E42, #8B3A22);
    color: #fff;
    padding: 5px 0;
    font-family: Arial, sans-serif;
    margin-top: 1000px;
  }
  

/* Responsive Design */
@media (max-width: 798px) {
  .about-container {
      flex-direction: column;
      width: 90%;
      height: auto;
      padding: 30px;
      border-radius: 20px;
      margin-right: 690px;
      margin-bottom: 200px;
  }

  .yellow-containercirclelogo {
      width: 150px; /* Smaller circle on smaller screens */
      height: 150px;
      margin: 15px auto; /* Adjust margin as needed */
      margin-top: 1600px;
  }

  .about-logo img {
      width: 70%; /* Slightly smaller logo */
      margin-top: 20px;
      margin-left: 25px;
      
  }

  .about-content {
      text-align: center;
  }

  .about-image img {
      width: 100px;
  }
  .footer-col {
    text-align: center;
  }

  .footer_contact,
  .footer_detail {
    margin-bottom: 20px;
  }

  .footer_social a {
    font-size: 24px;
    margin: 0 10px;
  }
  .book_section .row {
    flex-direction: column;
  }

  .col-md-6 {
    margin-bottom: 20px;
  }
  .octopus-img {
    width: 500px;
    margin-top: 20px;
    animation: bounce 2s infinite;
    margin-left: -50px;
}
}



  




  

