body {
  background-color: var(--secondary-color-light);
  font-family: "PT Sans", sans-serif;
  background-color: var(--primary-color);
}

header {
  position: absolute;
  width: 100%;
}

.split-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: calc(100vh - 80px);
  margin-top: 0;
}
.split-pane {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: flex 0.3s ease; /* Smooth animation on hover */
  overflow: hidden;
}

@media (min-width: 769px) {
  .split-pane:hover {
    flex: 1.2;
  }
}

.brunch-pane {
  background-image: url("../img/book/MEO-brunch-book-a-table.jpg");
}
.mexican-pane {
  background-image: url("../img/book/MEO-mexican-book-a-table.jpg");
}
.pane-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: background 0.3s;
}

.split-pane:hover .pane-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.pane-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 500px;
  color: white;
}

.vibe-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.9;
  display: block;
  margin-bottom: 0.5rem;
}
.vibe-night {
  color: var(--mexican-primary-color);
}

.split-pane h2 {
  font-family: "PT Sans Narrow", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.hours-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.night-badge {
  border-color: var(--mexican-primary-color);
  color: #fff;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: 18px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  width: 100%;
  max-width: 280px;
}

.btn {
  &:visited {
    color: #1a1a1a;
  }
}

.btn-brunch {
  background-color: var(--secondary-color-light);
  color: var(--primary-color);
  &:visited {
    color: var(--primary-color);
  }
}
.btn-brunch:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.btn-mexican {
  background-color: var(--mexican-secondary-light-color);
  color: var(--mexican-primary-color);
  /* box-shadow: 0 4px 15px rgba(194, 213, 0, 0.3); */
  &:visited {
    color: var(--mexican-primary-color);
  }
}
.btn-mexican:hover {
  background-color: var(--mexican-secondary-light-color);
  transform: translateY(-2px);
  color: var(--mexican-primary-color);
  /* box-shadow: 0 6px 20px #ff300080; */
}

.kitchen-note {
  background: #111;
  color: #888;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
    /* padding-top: 60px; */
    height: auto;
  }

  .split-pane {
    width: 100%;
    min-height: 50vh;
    padding: 40px 20px;
  }

  .split-pane h2 {
    font-size: 2.2rem;
  }

  .btn {
    padding: 15px 24px;
  }
}
