.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

.navbar-logo-mobile {
  height: 32px;
  width: auto;
  border-radius: 4px;
}

.brand-text {
  color: var(--bs-navbar-color);
}

.nav-link {
  transition: all 0.2s ease-in-out;
}

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bs-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
}

.mobile-bottom-nav .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border-radius: 0.375rem;
  margin: 0 0.25rem;
}

.mobile-bottom-nav .nav-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-bottom-nav .nav-link i {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.mobile-bottom-nav .nav-link span {
  font-size: 0.75rem;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  #mainContent.mobile-content {
    padding-bottom: 80px !important;
  }
  .navbar {
    padding: 0.75rem 1rem;
  }
  .navbar-brand {
    font-size: 1.25rem;
  }
}

.hero-section {
  position: relative;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-brand-logo {
  height: 80px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brand-name {
  color: #ff6b6b;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
  z-index: 1;
}

.hero-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-img {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.floating-img-1 {
  top: 10%;
  right: 10%;
  animation: float 4s ease-in-out infinite;
}

.floating-img-2 {
  bottom: 20%;
  left: 5%;
  animation: float 5s ease-in-out infinite reverse;
}

.floating-img-3 {
  top: 60%;
  right: 5%;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.min-vh-75 {
  min-height: 75vh;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--bs-body-color);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--bs-secondary);
  margin-bottom: 3rem;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--bs-secondary);
  margin-bottom: 2rem;
}

.about-features {
  margin-bottom: 2rem;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--bs-body-color);
}

.about-image-grid {
  position: relative;
  height: 400px;
}

.about-img {
  position: absolute;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

.about-img-1 {
  top: 0;
  left: 0;
  width: 60%;
  height: 60%;
  object-fit: cover;
}

.about-img-2 {
  bottom: 0;
  right: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
}

.about-img-3 {
  top: 30%;
  left: 40%;
  width: 40%;
  height: 40%;
  object-fit: cover;
}

.menu-categories-section {
  background: var(--bs-secondary-bg);
  padding: 80px 0;
}

.category-card {
  background: var(--bs-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--bs-border-color);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-overlay i {
  font-size: 3rem;
  color: white;
}

.category-content {
  padding: 1.5rem;
}

.category-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bs-body-color);
  font-size: 1.2rem;
}

.category-description {
  color: var(--bs-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.category-count {
  color: var(--bs-primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery-section {
  background: var(--bs-body-bg);
  padding: 80px 0;
}

.gallery-item {
  background: var(--bs-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--bs-border-color);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: white;
}

.gallery-title {
  font-weight: 600;
  margin: 0;
  font-size: 1.1rem;
}

.contact-section {
  background: var(--bs-body-bg);
  padding: 80px 0;
}

.about-section {
  background: var(--bs-body-bg);
  padding: 80px 0;
}

.hours-info p,
.contact-info p {
  margin-bottom: 0.8rem;
  color: var(--bs-secondary);
  font-size: 1.1rem;
}

.hours-info p:first-child,
.contact-info p strong {
  color: var(--bs-body-color);
  font-weight: 600;
}

.menu-item-card {
  background: var(--bs-card-bg);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 1px solid var(--bs-border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.menu-item-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.menu-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-card:hover .menu-img {
  transform: scale(1.05);
}

.menu-item-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bs-body-color);
  margin-bottom: 0.5rem;
}

.menu-item-description {
  color: var(--bs-secondary);
  margin-bottom: 0.75rem;
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.menu-item-time {
  color: var(--bs-primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.menu-item-price {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--bs-body-color);
}

.menu-item-price .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b6b;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-main-image {
    max-width: 300px;
  }
  .hero-brand-logo {
    height: 60px;
  }
  .floating-img {
    width: 60px;
    height: 60px;
  }
  .about-image-grid {
    height: 300px;
    margin-top: 2rem;
  }
  .category-image {
    height: 150px;
  }
  .gallery-image {
    height: 200px;
  }
  .menu-item-image {
    height: 200px;
  }
  .menu-item-name {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
    min-height: 80vh;
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .about-section,
  .menu-categories-section,
  .gallery-section,
  .contact-section,
  .togo-section {
    padding: 60px 0;
  }
}
