
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.zuma-menu-bar {
  background: #F1E5D4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 0 30px;
  gap: 20px;
  width: 100%;
  position: relative;
}

.zuma-logo-line {
  flex: 1 1 200px;
  max-width: 200px;
  height: 4px;
  background: #800000;
  transition: opacity 0.5s ease;
}

.zuma-logo {
  height: clamp(150px, 32vw, 178px);
  transition: transform 0.3s ease, height 0.5s ease, width 0.5s ease, margin 0.5s ease;
  padding: 10px;
  flex-shrink: 0;
}

.zuma-burger {
  width: 110px;
  height: 110px;
  cursor: cell;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.zuma-expanded-menu {
  width: 100%;
  background: #F1E5D4;
  overflow: hidden;
  max-height: 0;
  transition: max-height 1.2s ease;
  position: relative;
  z-index: 99;
}

.zuma-expanded-menu.active {
  max-height: 100vh;
}

.zuma-expanded-inner {
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  min-height: 500px;
}

.zuma-left-section {
  width: 61%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: visible;
  padding-left: 30px;
}

.zuma-nav-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 83%;
  height: 90%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  border-radius: 20px;
  transition: opacity 0.6s ease;
  margin-left: 30px;
}

.zuma-right-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 39%;
  padding-right: 0;
}

.zuma-menu {
  list-style: none;
  margin: 0;
  padding-top: 70px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.zuma-menu li {
  text-transform: uppercase;
  font-size: clamp(38px, 7.2vw, 85px);
  line-height: 1.1;
  font-weight: bold;
  color: #800000;
  text-align: right;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.5s ease;
  letter-spacing: -0.03em;
}

.zuma-menu li.show {
  opacity: 1;
  transform: translateX(0);
}

.zuma-menu li:hover {
  transform: scale(1.04);
  transition: transform 0.3s ease, color 0.3s ease;
}

.zuma-menu li a {
  color: #800000;
  text-decoration: none;
  font-weight: bold;
  display: block;
}

.zuma-menu li a:hover {
  color: #013220;
}

@media (max-width: 1050px) {
  .zuma-logo-line {
    opacity: 0.5;
  }
}

@media (max-width: 950px) {
  .zuma-logo-line {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .zuma-logo {
    width: 52.5%;
    height: auto;
  }

  .zuma-menu-bar {
    justify-content: space-between;
    padding: 0 15px;
  }

  .zuma-logo-line {
    display: none;
  }

  .zuma-right-section {
    width: 100%;
    padding-right: 15px;
  }

  .zuma-left-section {
    display: none;
  }

  .zuma-menu {
    width: 100%;
    padding-top: 30px;
  }

  .zuma-menu li,
  .zuma-menu li a {
    font-size: 47px;
    line-height: 1.2;
  }

  .zuma-burger {
    width: 80px;
    height: 80px;
    right: 15px;
  }
}