.custom-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(40, 40, 43, 0.2) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  z-index: 10;
}

.custom-navbar .navbar-brand,
.navbar-toggler-icon,
.custom-navbar .navbar-nav .nav-link,
.custom-navbar .btn {
  color: #fff !important;
}

.custom-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.custom-navbar .navbar-toggler:focus,
.custom-navbar .navbar-toggler:active {
  border-color: rgba(255, 255, 255, 0.3);
  outline: none;
  box-shadow: none;
}

.navbar-brand span {
  vertical-align: bottom;
  font-family: Limelight, sans-serif;
}

.search-input {
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
  outline: none;
}

.nav-link {
  font-weight: 500;
}

.hero-section {
  height: 100vh;
  background-image: url("https://cdn.pixabay.com/photo/2022/11/18/14/19/thanksgiving-dinner-7600226_1280.jpg");
  background-size: cover;
  background-position: center;
  top: 0;
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  top: 52%;
  transform: translateY(-50%);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 215, 0, 1),
    0 0 10px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #f2f2f2;
  margin-bottom: 1rem;
}

.hero-title,
.hero-subtitle {
  animation: textPop 1.2s ease-out forwards;
}

@keyframes textPop {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.button-87,
.search-btn {
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(
    45deg,
    #ff512f 0%,
    #f09819 51%,
    #ff512f 100%
  );
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.search-btn {
  padding: 10px 20px;
}

.button-87:hover,
.search-btn:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.button-87:active,
.search-btn:active {
  transform: scale(0.95);
}

.card {
  background-color: #1e1e1e;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-body {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.card-title {
  color: #ffd700;
  font-size: 1.5em;
}

.card-text {
  color: #bbb;
}

.price {
  margin-top: auto;
  font-size: 1.2em;
  color: #32cd32;
  transition: color 0.3s ease;
}

.card:hover .price {
  color: #ffa500;
}

.reserve-now-btn {
  margin-right: auto;
}

.special-price {
  font-size: 1.2em;
  color: #32cd32;
  transition: color 0.3s ease;
}

.card:hover .special-price {
  color: #32cd32;
}

.special-card:hover {
  transform: none;
  box-shadow: none;
}

.special-card {
  border-left: 6px solid #ffa500;
  border-radius: 0;
}

.social-icon {
  font-size: 1.5rem;
  padding: 0 1rem;
}

.reservations .form-control {
  background-color: #2a2a2a;
  color: #e0e0e0;
  border: 1px solid #444444;
  border-radius: 5px;
  padding: 10px;
}

.reservations .form-control::placeholder {
  color: #888888;
}

.reservations .form-control:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
  outline: none;
}

.reservations .btn-warning {
  background-color: #ffd700;
  color: #2a2a2a;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.contacts {
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.contacts h4 {
  color: #ffd700;
  font-weight: 600;
}

.contacts p {
  color: #c0c0c0;
  font-size: 1rem;
}

.contacts .form-control {
  background-color: #2a2a2a;
  color: #e0e0e0;
  border: 1px solid #444444;
  border-radius: 5px;
  padding: 10px;
}

.contacts .form-control::placeholder {
  color: #888888;
}

.contacts .form-control:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.5);
  outline: none;
}

.contacts .btn-warning {
  background-color: #ffd700;
  color: #2a2a2a;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

footer .social-icon {
  color: #ffd700;
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-icon:hover {
  color: #e5c100;
  transform: scale(1.1);
}

footer p {
  font-size: 0.9rem;
  color: #c0c0c0;
  margin-top: 10px;
}
