* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hamburger-toggle {
  display: none;
  background: none;
  border: none;
  color: #1A2535;
  font-size: 2rem;
  cursor: pointer;
  padding: 0 20px;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: 20px;
}

/* ================= Header ================= */
.site-header {
  display: flex;
  align-items: center;
  padding: 15px 40px;
  background-color: rgba(26, 37, 53, 0.9);
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  backdrop-filter: blur(5px);
  transition: top 0.4s ease;
  border-bottom: 2px solid #C8A869;

  /* Apple Support */
    -webkit-backdrop-filter: blur(5px);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.header-left {
  flex-grow: 1;
  display: flex;
  align-items: center;
  height: 50px;
  justify-content: flex-start;
}

.header-center {
  flex-shrink: 0;
  padding: 0;
  z-index: 10000;
  display: none;
}

/* Logo + company name */
.logo {
  width: 50px;
  height: 50px;
  margin: 0;
}

.mobile-logo {
  display: block;
  margin-right: 15px;
  width: 50px;
  height: 50px;
}

.desktop-logo {
  display: none;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #C8A869;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Navigation menu */
.nav-menu {
  display: flex;
  gap: 30px;
  flex-grow: 1;
  justify-content: flex-end;
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #C8A869;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: rgba(26, 37, 53, 0.5);
  color: #fff;
  transform: translateY(-2px);
}

.nav-link.active {
  background-color: #334a66;
  color: #fff;
}

@media (max-width: 900px) {
  .header-left {
    flex-grow: 0;
    order: 1;
    display: flex;
    align-items: center;
    padding-right: 10px;
  }

  .header-center {
    display: none;
  }

  .hamburger-toggle {
    display: block;
    order: 3;
    color: #C8A869;
    z-index: 10000;
  }

  .site-header {
    justify-content: space-between;
    padding: 15px 20px;
  }

  .logo-container {
    transform: none;
  }

  .mobile-logo {
    margin-right: 0;
  }

  .company-name {
    margin: 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    flex-grow: 0;
    order: 2;
    background-color: rgba(26, 37, 53, 0.95);
    position: absolute;
    margin-right: 0;
    top: 85px;
    right: 20px;
    left: 20px;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9998;
  }

  .nav-menu.show {
    display: flex;
  }
    
  .nav-menu .nav-link {
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid rgba(200, 168, 105, 0.2);
  }
    
  .nav-menu .nav-link:last-child {
    border-bottom: none;
  }
}

@media (min-width: 901px) {
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
  }

  .hamburger-toggle {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .header-center {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .desktop-logo {
    display: block;
  }

  .mobile-logo {
    display: none;
  }

  .header-left {
    flex-grow: 1;
    justify-content: flex-start;
  }

  .company-name {
    display: block;
  }

  .nav-menu {
    display: flex;
    justify-content: flex-end;
  }

  .hamburger-toggle {
    display: none;
  }
}

@media (min-width: 769px) {
  .footer-section.contact-icons,
  .footer-section.about-us {
    flex-grow: 1;
  }

  .footer-section.about-us {
    text-align: right;
    margin-left: 0;
  }

  .footer-section.contact-icons {
    justify-content: flex-start;
  }

  .footer-logo {
    flex-shrink: 0;
  }
}

@media (max-width: 1024px) {
  .header-center {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  .company-name {
    display: block; 
    padding-left: 10px;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.show {
    display: flex;
  }

  .hamburger-toggle {
    display: block;
  }
}

/* ================= Hero Section ================= */
.menu-hero {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  margin-top: -80px;
}

.menu-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-hero-text {
  padding: 1%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  text-align: center;
}

/* ================= Footer ================= */
.footer {
  position: relative;
  background: #011329;
  color: #ccc;
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  min-height: 100px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Footer logo */
.footer-logo {
  order: 2;
}

.footer-logo img {
  height: 75px;
  width: auto;
  display: block;
}

/* Left: Contact icons */
.footer-section.contact-icons {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  align-items: center;
  order: 1;
}

/* Individual icons */
.footer-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transition: transform 0.3s, filter 0.3s;
}

.footer-icon:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

/* Right: About Us */
.footer-section.about-us {
  flex-basis: 250px;
  order: 3;
  text-align: right;
  margin-left: auto;
}

.footer-section.about-us p {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #C8A869;
}

/* Footer bottom text */
.footer-bottom {
  margin-top: 1rem;
  border-top: 1px solid #334a66;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  color: #A0B0C0;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main-content {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-logo,
  .footer-section.contact-icons,
  .footer-section.about-us {
    order: unset;
  }
  
  .footer-logo { 
    order: 1; 
  }

  .footer-section.contact-icons { 
    order: 2; 
    justify-content: center;
  }

  .footer-section.about-us {
    order: 3;
    max-width: 100%;
    text-align: center;
    flex-basis: auto;
    margin-left: 0;
  }
}