@charset "utf-8";
.tab-menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.tab-btn {
    border: 1px solid #a7a3a3 !important;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: 600;
  color:rgba(0, 0, 0, 0.5);
  background: #f8f8f8;
  border: none;
  border-radius: 6px;
  cursor: pointer !important;
  transition: 0.3s ease;
}

.tab-btn.active {
  background: #e67e22;
  color: #fff;
}

/* ===== Gallery Grid ===== */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.gallery-item {
    /* background: #131212; */
    border: 1px solid #a49e9e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: 0.3s 
ease;
    margin-top: 30px;
    text-align: center;
}
.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
    width: 400px;
    max-height: 400px;
    /* object-fit: cover; */
    text-align: center;
    background: #000;
}
.gallery-item h3 {
  font-size: 18px;
    font-family: 'Lato';
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: 1px solid #e3dfdf;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
    .gallery-item h4{ font-size:12px; white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;}
    .gallery-item h5{ font-size:10px;}
.gallery-item p {
    color: #777;
    font-size: 20px;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .tab-btn {
    font-size: 14px;
    padding: 8px 12px;
  }
  .search-container {
    display: math;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 16px;
    float: left;
    width: 100%;
}
.logo a {
    font-size: 50px;
    color: #000;
    font-family: fantasy;
    text-align: center;
    margin: 0px auto;
    display: block;
}
    .header-area .outer-box .logo {
        width: 100%;
        padding-top: 6px;
    }
}
h2.menu_list {
    text-align: center;
    color:#e67e22;
    padding: 30px;
    font-weight: 700;
    font-size: 32px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  padding: 4px 14px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

/* Individual button styles */
.call-btn {
  color: #f1ecec;
  background: #7d0202;
  border-color: #f7c5c5;
}
.call-btn:hover { background: #fdd6d6; }

.whatsapp-btn {
  color: #dfe8e2;
  background: #055122;
  border-color: #034814;
}
.whatsapp-btn:hover { background: #d5f3de; }

.location-btn {
  color: #2962ff;
  background: #eef4ff;
  border-color: #c7dafb;
}
.location-btn:hover { background: #dae6ff; }

/* Search bar */
.search-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  width: 700px;
  max-width: 90%;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 10px 16px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.search-box i {
  color: #999;
  margin-right: 10px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #333;
}

.search-box input::placeholder {
  color: #aaa;
}

