:root {
  --primary-color: #80215A;
  --secondary-color: #Ce7F19;
  --tertiary-color: #D6552E;
  --background-color: #f5f5f7;
  --text-color: #333;
}

/* Reset and base styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

/* Mobile styles (default) */
body {
  background-color: #80215A; /* Brand purple */
  color: white;
  overflow-x: hidden;
}

#mobile-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  background-color: #80215A; /* Your brand color */
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  opacity: 1 !important;
  visibility: visible !important;
}

#mobile-message > * {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

#mobile-message h2 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}

#mobile-message p {
  max-width: 300px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Hide tablet message by default */
.tablet-message {
  display: none;
}

#main-content {
  display: none;
}

/* Phone-specific styles */
@media screen and (max-width: 767px) {
  #mobile-message {
    display: flex;
}
.phone-message {
    display: block;
}
.tablet-message {
    display: none;
}
#main-content, #control-panel, #header, #svg-container {
    display: none !important;
}
}

/* Tablet styles */
@media screen and (min-width: 768px) and (max-width: 1024px) {
   /* Portrait mode */
   @media (orientation: portrait) {
    #mobile-message {
        display: flex;
    }
    .phone-message {
        display: none;
    }
    .tablet-message {
        display: block;
    }
    #main-content, #control-panel, #header, #svg-container, #footer {
        display: none !important;
    }
    body {
        background-color: #80215A;
    }
}


  /* Landscape mode */
  @media (orientation: landscape) {
        #mobile-message {
            display: none;
        }
        #main-content {
            display: block;
      }
      
      body {
          background-color: #f5f5f7;
          color: #333;
          padding-top: 60px;
          padding-bottom: 30px;
          overflow: hidden;
      }

      #header {
          position: fixed;
          top: 0;
          left: 0;
          right: 0;
          height: 60px;
          z-index: 9997;
      }

      #control-panel {
          position: fixed;
          top: 62px;
          left: 0;
          right: 0;
          z-index: 9998;
          width: 100%;
          padding: 10px;
          background-color: white;
          box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      }

      #main-content {
          padding-top: 130px;
      }

      #svg-container {
          height: calc(100vh - 130px);
          margin-top: 0;
      }
  }
}

/* Desktop and large screen styles */
@media screen and (min-width: 1025px) {
  #mobile-message {
      display: none;
  }
  #main-content {
      display: block;
  }
  
  body {
      background-color: #f5f5f7;
      color: #333;
      padding-top: 60px;
      padding-bottom: 30px;
      overflow: hidden;
  }
}

/* Common styles for tablet landscape and desktop */
@media screen and (min-width: 768px) {
  #main-content {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: calc(100vh - 90px);
      overflow: hidden;
  }

  #header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-color: #80215A;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 20px;
      z-index: 1002;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .header-left {
      display: flex;
      align-items: center;
  }

  .header-left img {
      height: 40px;
      margin-right: 10px;
  }

  .header-left .tagline {
      color: white;
      font-size: 14px;
      font-weight: 500;
  }

  .header-right {
      display: flex;
      align-items: center;
  }

  #footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 30px;
      background-color: #80215A;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      z-index: 1001;
  }

  #svg-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: calc(100vh - 120px);
      overflow: hidden;
      position: relative;
      z-index: 1;
  }

  svg {
      display: block;
      max-width: 100%;
      max-height: 100%;
      margin: auto;
      transition: transform 0.2s ease;
  }

  .hexagon {
      cursor: pointer;
      transition: opacity 0.3s ease;
  }

  .hexagon polygon {
      transition: all 0.3s ease;
      fill: #cacaca;
  }

  .hexagon:hover polygon {
      filter: brightness(1.1) drop-shadow(0 0 5px rgba(0,0,0,0.3));
  }

  .hexagon-text {
      font-size: 14px;
      fill: #333;
      text-anchor: middle;
      pointer-events: none;
      font-weight: 500;
  }

  .hexagon.selected polygon { fill: #D6552E; }
  .hexagon.related polygon { fill: #Ce7F19; }
  .hexagon.distant polygon { fill: #DDA864; }
  .hexagon.far-distant polygon { fill: #ECD2B0; }
  .hexagon.Playbook polygon { fill: #80215A; }

  .hexagon.Playbook .hexagon-text,
  .hexagon.selected .hexagon-text,
  .hexagon.related .hexagon-text {
      fill: white;
  }

  .hexagon.faded {
      opacity: 0.3;
  }

  #control-panel {
      position: absolute;
      top: 70px;
      left: 20px;
      z-index: 1001;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      background-color: white;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #search-input, #search-type, #filter-select {
      padding: 10px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #f5f5f7;
  }

  #search-input {
      width: 200px;
  }

  #search-type, #filter-select {
      width: 150px;
  }

  #search-button, #reset-button {
      padding: 10px 15px;
      background-color: #80215A;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 14px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  #search-button:hover, #reset-button:hover {
      background-color: #9C3872;
  }

  #search-button::before, #reset-button::before {
      content: '';
      display: inline-block;
      width: 16px;
      height: 16px;
      margin-right: 5px;
      background-size: contain;
      background-repeat: no-repeat;
  }

  

  #search-button::before {
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>');
  }

  #reset-button::before {
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.65 6.35C16.2 4.9 14.21 4 12 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08c-.82 2.33-3.04 4-5.65 4-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z"/></svg>');
  }

  #search-results {
      position: fixed;
      top: 60px;
      background: white;
      border: 1px solid #ccc;
      border-radius: 0 0 5px 5px;
      max-height: 300px;
      overflow-y: auto;
      z-index: 1000;
      display: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  #search-results ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
  }

  #search-results li {
      padding: 10px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      transition: background-color 0.2s ease;
  }

  #search-results li:last-child {
      border-bottom: none;
  }

  #search-results li:hover {
      background-color: #f0f0f0;
  }

  #search-results .no-results {
      padding: 10px;
      color: #666;
      font-style: italic;
  }

  #zoom-controls {
      position: fixed;
      bottom: 40px;
      right: 20px;
      display: flex;
      gap: 10px;
      z-index: 10000 !important;
  }

  .zoom-button {
      font-size: 24px;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      background-color: #fff;
      color: #333;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      transition: background-color 0.2s ease;
      z-index: 15000 !important;
  }

  .zoom-button:hover {
      background-color: #f0f0f0;
  }

  #info-panel {
    position: fixed;
    top: 60px;
    right: -400px;
    width: 400px;
    height: calc(100vh - 90px);
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 9999;
  }
  
  #info-panel.visible {
    right: 0;
  }

  #close-panel {
      position: absolute;
      top: 10px;
      right: 10px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #80215A;
      transition: color 0.2s ease;
  }

  #close-panel:hover {
      color: #9C3872;
  }

  #info-title {
      margin-top: 0;
      color: #80215A;
      font-size: 24px;
      font-weight: 600;
  }

  #info-type {
      font-style: italic;
      color: #666;
      margin-bottom: 15px;
  }

  #info-description {
      margin-bottom: 20px;
      line-height: 1.6;
  }

  #info-assets {
    list-style-type: none;
    padding: 0;
  }
  
  #info-assets li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  #info-assets svg {
    margin-right: 10px;
  }
  
  #info-assets a {
    color: #80215A;
    text-decoration: none;
  }
  
  #info-assets a:hover {
    text-decoration: underline;
  }

  #help-button {
      position: fixed;
      bottom: 40px;
      left: 20px;
      width: 40px;
      height: 40px;
      background-color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      transition: background-color 0.2s ease;
  }

  #help-button:hover {
    background-color: #f0f0f0;
}

.hexagon.recommended polygon {
    fill: #253F62;
}

.hexagon.recommended .hexagon-text {
    fill: white;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hexagon.pulsing {
    animation: pulse 1.5s ease-in-out infinite;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 0;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.color-key {
    list-style-type: none;
    padding: 0;
}

.color-key li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.color-sample {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #000;
    border-radius: 3px;
}

#help-modal {
    z-index: 1001;
}

#help-modal .color-sample.Topic { background-color: #D6552E; }
#help-modal .color-sample.Tool { background-color: #253F62; }
#help-modal .color-sample.Playbook { background-color: #80215A; }
#help-modal .color-sample.Workshop { background-color: #80215A; }
#help-modal .color-sample.related { background-color: #Ce7F19; }
#help-modal .color-sample.distant { background-color: #DDA864; }
#help-modal .color-sample.far-distant { background-color: #ECD2B0; }

/* Path panel styles */
#path-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

#path-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

#path-name {
    margin-top: 0;
    color: #80215A;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

#path-description {
    margin-bottom: 20px;
    text-align: center;
    color: #666;
}

#step-content {
    margin-bottom: 20px;
}

#step-title {
    color: #80215A;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

#step-description {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

#step-details {
    margin-bottom: 20px;
    line-height: 1.6;
}

#path-progress-bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

#path-progress {
    height: 100%;
    background-color: #80215A;
    width: 0;
    transition: width 0.3s ease;
}

#path-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

#prev-step, #next-step {
    padding: 10px 15px;
    background-color: #80215A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

#prev-step:hover, #next-step:hover {
    background-color: #9C3872;
}

#prev-step:disabled, #next-step:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#step-counter {
    font-size: 14px;
    color: #666;
}

#close-path {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #80215A;
    transition: color 0.2s ease;
}

#close-path:hover {
    color: #9C3872;
}

#help-modal, #info-panel, #path-panel {
    z-index: 9999;
}
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  body {
    background-color: #80215A;
  }
  
  body.tablet-portrait #mobile-message {
    display: flex !important;
  }
  
  body.tablet-portrait #main-content,
  body.tablet-portrait #control-panel,
  body.tablet-portrait #header,
  body.tablet-portrait #svg-container,
  body.tablet-portrait #footer {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  * {
    transition: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  #help-button {
    position: fixed;
    bottom: 40px;
    left: 20px;
    z-index: 20005; /* Ensure it's above other elements */
    display: flex !important;
  }
}
.rotate-icon {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 10px;
    position: relative;
    margin: 20px auto;
    animation: rotate 1.5s ease-in-out infinite alternate;
  }
  
  .rotate-icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: -2px;
    width: 2px;
    height: 10px;
    background-color: white;
    box-shadow: 54px 40px 0 0 white;
  }
  
  .rotate-icon:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 2px;
    height: 10px;
    background-color: white;
    box-shadow: -54px -40px 0 0 white;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(90deg);
    }
  }
  
  /* Hide rotate icon by default */
  .rotate-icon {
    display: none;
  }
  
  /* Show rotate icon only on tablets in portrait mode */
  @media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .rotate-icon {
      display: block;
    }
  }
  /* styles for the asset-list within the info panel */

  .asset-list {
    list-style-type: none;
    padding: 0;
  }
  
  .asset-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .asset-item svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  
  .asset-item a {
    flex-grow: 1;
    color: #80215A;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .asset-item a:hover {
    color: #9C3872;
    text-decoration: underline;
  }
  
  .asset-time {
    margin-left: 10px;
    font-size: 0.8em;
    color: #666;
    white-space: nowrap;
  }
  
  #info-panel {
    /* existing styles */
    padding: 20px;
    overflow-y: auto;
  }
  
  #info-title {
    margin-top: 0;
    color: #80215A;
  }
  
  #info-type {
    font-style: italic;
    color: #666;
  }
  
  #info-description {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  #share-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: 1px solid #80215A;
    border-radius: 4px;
    cursor: pointer;
    padding: 5px 10px;
    margin-left: 10px;
    vertical-align: middle;
    color: #80215A;
    font-size: 14px;
    transition: all 0.3s ease;
}

#share-button:hover {
    background-color: #80215A;
    color: white;
}

#share-button svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    margin-right: 5px;
}

#share-button span {
    vertical-align: middle;
}

#share-tooltip {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 10000;
  display: flex;
  align-items: center;
}

#share-tooltip input {
  flex-grow: 1;
  padding: 5px;
  margin-right: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

#share-tooltip button {
  padding: 5px 10px;
  background-color: #80215A;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

#share-tooltip button:hover {
  background-color: #9C3872;
}
/* Add these styles to your existing styles.css file */

#help-menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.help-menu-button {
  padding: 10px 15px;
  background-color: #80215A;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.help-menu-button:hover {
  background-color: #9C3872;
}

/* Update the existing styles for the help modal */
#help-modal .modal-content {
  max-width: 700px; /* Increased width to accommodate the menu */
}

#help-content {
  max-height: calc(80vh - 150px); /* Adjust the height to make room for the menu */
  overflow-y: auto;
  padding-right: 10px;
}

/* Add some spacing between sections in the help content */
#help-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

#help-content p, #help-content ul, #help-content ol {
  margin-bottom: 15px;
}

#installButton {
  display: none; /* Hidden by default */
}

.hexagon.coming-soon {
  opacity: 0.1; /* This creates a washed-out effect */
}

.hexagon.inactive {
  display: none; /* Hide inactive hexagons */
}

/* Adjust the info panel to include the status */
#info-status-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#info-status {
  font-style: italic;
  color: #c20202;
  margin-right: 10px;
  font-weight: bold;
}

#express-interest-btn {
  background-color: transparent;
  border: 1px solid #80215A;
  color: #80215A;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#express-interest-btn:hover {
  background-color: #80215A;
  color: white;
}

.hexagon.highlighted polygon {
  fill: #FFA500; /* Orange color to make it stand out */
  filter: brightness(1.2);
}

#express-interest-button { /*for tour use */
  display: block;
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #80215A;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

#express-interest-button:hover { /*for tour use */
  background-color: #9C3872;
}

.matching-assets {
  margin-top: 5px;
  padding-left: 20px;
  font-size: 0.9em;
  color: #666;
}

.matching-assets li {
  margin-bottom: 3px;
}

#launch-boxset-player {
  padding: 10px 15px;
  background-color: #D6552E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

#launch-boxset-player:hover {
  background-color: #Ce7F19;
}

#boxset-player-info {
  background-color: #ECD2B0;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 0.9em;
  color: #666; 
}

.menu {
  position: right;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.hamburger {
  width: 30px;
  height: 3px;
  background-color: white;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.menu-items {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-items > li {
  position: relative;
  margin-right: 20px;
}

.menu-items > li:hover {
  background-color: var(--tertiary-color);
  
}

.menu-items a {
  color: white;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.submenu {
  display: none;
  color: #fff;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  background-color: var(--tertiary-color);
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  
}

.submenu > li:hover {
  background-color: var(--secondary-color);

}

.has-submenu {
  background-color: var(--primary-color);

}

.has-submenu :hover{
  background-color: var(--tertiary-color);

}

.has-submenu:hover .submenu {
  display: block;
  
}

.header-actions {
  display: flex;
  align-items: center;
}

.header-actions button {
  margin-left: 10px;
  padding: 8px 15px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .menu-items {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
  }

  .menu-items.active {
    display: flex;
  }

  .menu-items > li {
    margin-right: 0;
  }

  .submenu {
    position: static;
    background-color: rgba(0, 0, 0, 0.1);
  }

  .header-actions {
    flex-direction: column;
  }

  .header-actions button {
    margin-left: 0;
    margin-top: 10px;
  }
}