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

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #000;
}

.container {
  display: flex;
  height: 100vh;
  flex-direction: row;
}

.left-panel {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: black;
}

.left-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background-color: black;
}

.right-panel {
  flex: 1;
  background-color: #000;
  display: flex;
  flex-direction: column;
  padding: 40px;
  position: relative;
}

.content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
}

.content {
  color: white;
}


h1 {
  font-family: 'League Gothic', sans-serif;
  color: white;
  font-size: 2.5em;
  margin-bottom: 20px;
}

p {
  font-size: 1.1em;
  line-height: 1.6;
  color: white;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.desktop-buttons {
  margin-top: 30px;
}

.mobile-buttons {
  display: none; /* hidden by default */
}

.button {
  text-align: center;
  padding: 15px;
  background-color: white;
  color: black;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1em;
  font-weight: bold;
}

.button:hover {
  background-color: #ff8fd1;
}

.button.sold-out {
  background-color: #CFCFCF;
  cursor: not-allowed;
}

.highlight-sold-out {
  background-color: #ff8fd1 !important; /* Soft party pink/purple */
  color: black;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 4px;
}

.strike {
  text-decoration: line-through;
  color: #000;
}

.bundle-price {
  font-size: 0.9em;
  font-style: italic;
  display: inline; /* Inline keeps it on the same line */
  margin-left: 5px; /* Optional spacing adjustment */
  color: #7b7b7b;
}

.limited-bundles {
  font-family: 'Gochi Hand', cursive;
  color: white;
  font-size: 1em;
  margin-bottom: 0px;
  text-align: center;
  opacity: 0.9;
}


.logo {
  width: 100px;
  align-self: flex-end;
}

.highlight {
  background-color: #ff8fd1; /* Soft party pink/purple */
  color: black;
}
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align to the right on desktop */
  margin-top: auto; /* Push to bottom if needed */
}

.logo {
  width: 100px;
}

.socials {
  margin-top: 8px;
  font-size: 0.9em;
  text-align: right;
}

.socials a {
  color: #FFFFFF; /* Soft grey that works on black */
  text-decoration: none;
  margin: 0 5px;
  font-style: italic;
}

.socials a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* Styling for links inside content */
.content a {
  color: #ff8fd1; /* Match the SOLD OUT highlight color */
  text-decoration: none;
  font-weight: bold;
}

.content a:hover {
  text-decoration: underline;
  color: #ff66b2; /* Slightly darker pink on hover for effect */
}


/* Mobile override */
@media (max-width: 768px) {
  .logo-container {
    align-items: center;
  }

  .socials {
    text-align: center;
  }
}


/* MOBILE VERSION */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-panel {
    flex: none;
    height: 400px;
    position: relative;
    width: 100%;
  }

  .left-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    display: block;
    background-color: black;
  }

  .mobile-buttons {
    display: flex;
    position: static;
    width: 100%;
    background-color: black;
    padding: 15px 20px;
    margin-bottom: 20px;
  }

  .right-panel {
    padding: 0 20px 20px 20px;
    position: relative;
    flex: none;
  }

  .content-wrapper {
    display: block;
  }

  .desktop-buttons {
    display: none;
  }

  .logo {
    width: 80px;
    margin-top: 40px;
    align-self: center;
  }
}

/* DESKTOP ONLY */
@media (min-width: 769px) {
  .mobile-buttons {
    display: none;
  }

  .left-panel {
    overflow: hidden;
    display: block; /* instead of flex */
  }

  .left-panel video {
    height: 100vh;
    width: auto;
    object-fit: contain;
    object-position: left center; /* still good */
    display: block;
  }
  .right-panel {
    padding-left: 20px; 
  }

}

