body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
}

.news-section {
    max-width: 90%;
    margin: 10px auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

 h2 { 
    text-align: center;
    color: #d35400;
    margin-top: 100px;
} 

.news-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 10px;
    overflow: hidden;
    background-color: hsla(0, 59%, 41%, 0.315);
    border-radius: 10px;
    box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.1),
    -5px -5px 5px -3px rgba(0,0,0,0.1);
    
}

.news-item h3 {
    color: #333;
}

.contact-info {
    text-align: center;
    font-weight: bold;
    padding-top: 15px;
}
a {
    text-decoration: none;
}

.news-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    float: left;
    margin: 0 10px;
} 

.navbar-nav .nav-link {
  text-transform: capitalize; /* Capitalizes the first letter of each word */
  color: white;
}
@media (min-width: 992px) { /* Large screens and larger */
  .rounded-lg-custom {
      border-radius: 10px;
      padding: 5px 15px;
  }
}

.navbar-toggler:focus , .nav-link:focus {
  outline: none; /* Removes the focus outline */
  box-shadow: none; /* Removes any box-shadow applied on focus */
}
/* Smooth transition for dropdown using height */
.dropdown-menu {
  display: block; /* Ensure the dropdown is part of the layout */
  overflow: hidden; /* Prevent content from overflowing during the transition */
  visibility: hidden;
  max-height: 0; /* Start with height of 0 */
  transition: max-height 1.5s ease, visibility 1s ease ; /* Smooth transition for height */
}

.dropdown-menu.show {
  visibility: visible;
  max-height: 500px; /* Adjust this value based on your dropdown content */
}


/* reserve a table */



@media screen and (min-width: 600px) {
   .news-item img {
        width: 400px;
        height: 300px;
        object-fit: cover;
        border-radius: 10px;
        float: right;
    }

.music-night {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    float: left;
}

}
.social-media {
    text-align: center;
    margin-top: 20px;
}

.social-icon {
    margin: 0 10px;
    font-size: 38px;
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #333; /* Change to your desired hover color */
}
.x {
    color: #333;
}
.instagram {
 color: purple;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  .whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 20px;
    padding: 15px 20px;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: bounce 2s infinite;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-fixed:hover {
    background-color: #1ebe57;
  }
  .call-fixed {
    position: fixed;
    bottom: 150px; /* Adjusted to be above WhatsApp */
    right: 20px;
    background-color: blue;
    color: white;
    font-size: 16px;
    padding: 15px;
    border-radius: 50px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }
  
  .call-fixed:hover {
    background-color: #1ebe57; /* Hover effect */
  }
  .resto-toggle-btn {
    display: none;
  }
  @media screen  and (max-width: 600px) {
    .whatsapp-fixed {
        font-size: 15px;
      padding: 10px 15px;

    }
    .call-fixed {
        font-size: 15px;
        padding: 10px 15px;
        
    }
    .social-icon {
        font-size: 25px;
    }
    .resto-toggle-btn {
      display: block;
    }
    .toggle-social {
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: #000;
      color: #fff;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .floating-social {
      position: fixed;
      bottom: 80px;
      left: 20px;
      display: none;
      flex-direction: column;
      gap: 10px;
      z-index: 998;
    }
    
    .floating-social a {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #fff;
      font-size: 14px;
    }
    
    .icon-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: gray;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .icon-label {
      background: #20166f;
      padding: 6px 10px;
      margin-left: 8px;
      border-radius: 5px;
      color: white;
      font-size: 13px;
    }
    
    /* Custom background colors */
    .facebook { background-color: #3b5998; }
    .twitter { background-color: #000; }
    .whatsapp { background-color: #25D366; }
    .call { background-color: #007bff; }
    .email { background-color: #D44638; }
    .chat { background-color: #6f42c1; }
    
  }
  
  