.navigation-wrapper {
  display: contents;
}
 
.navigation-container1 {
  display: contents;
}
 
.navigation-container2 {
  display: none;
}
 
.navigation-container3 {
  display: contents;
}
 
.navigation-container4 {
  display: none;
}
 
.navigation-container5 {
  display: contents;
}

.footer-wrapper {
  display: contents;
}
 
.footer-container1 {
  display: contents;
}
 
.footer-container2 {
  display: none;
}
 
.footer-container3 {
  display: contents;
}
 
.footer-container4 {
  display: none;
}
 
.footer-container5 {
  display: contents;
}

.home-container1 {
  width: 100%;
  display: block;
  min-height: 100vh;
}
 
.home-container2 {
  display: none;
}
 
.home-container3 {
  display: contents;
}
 
.home-container4 {
  right: 50px;
  border: 1px solid #ffffff5c;
  bottom: 30px;
  display: flex;
  z-index: 22;
  position: fixed;
  box-shadow: 5px 5px 10px 0px rgba(31, 31, 31, 0.4);
  min-height: auto;
  align-items: center;
  padding-top: 8px;
  padding-left: 12px;
  border-radius: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  backdrop-filter: blur(6px);
  background-color: rgba(41, 41, 41, 0.41);
}
 
.home-icon45 {
  width: 24px;
  margin-right: 4px;
}
 /* ===== LOGO IN NAV (Greek Grill) ===== */
.navigation-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navigation-logo-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .navigation-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}
/* ===== HERO LOGO ===== */
.hero-logo {
  width: 540px;
  max-width: 55vw;
  height: auto;
  margin: 0 auto 18px;
  display: block;

  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.45));
  animation: heroLogoFade 1.2s ease-out both;
}

/* Slightly smaller on tablets */
@media (max-width: 768px) {
  .hero-logo {
    width: 110px;
    margin-bottom: 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-logo {
    width: 90px;
    margin-bottom: 12px;
  }
}

/* Subtle entrance animation */
@keyframes heroLogoFade {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-content-inner {
  gap: 10px;
}

