/* Shared header styling */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  height: 96px;
  box-sizing: content-box;
}

/* Shop banner container styling */
.shop-banner-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.shop-image {
  flex: 0 0 500px;
}

.logo {
  height: 131px;
  display: block;
}

nav a {
  color: black;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}

.cta-button {
  display: inline-block;
  background-color: #FEC83A;
  color: black !important;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 0;
  transition: background-color 0.2s;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #e6b633;
}

/* Sign Up Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #FEC83A;
  color: black;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.popup-close:hover {
  background-color: #e6b633;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #101214;
}

.popup-content p {
  margin-bottom: 1.5rem;
  color: #666;
}

.popup-content .app-download-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0rem;
    height: 66px;
    box-sizing: content-box;
  }
  
  .logo {
    height: 61px;
    margin-bottom: 0;
  }
  
  nav {
    display: none; /* Hide the entire navigation section on mobile */
  }

  /* Hide shop banner container on mobile */
  .shop-banner-container {
    display: block !important;
  }

  /* Hide shop image on mobile */
  .shop-image {
    display: none !important;
  }

  .blossom-banner {
    flex: 1 !important;
    margin: 0 !important;
  }
}

/* Main header styling */
.main-header h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Hero content styling */
.hero-content {
  background: #fafafa;
  padding: 2rem;
  border-radius: 1rem;
}

.hero-list-item {
  display: flex;
  align-items: flex-start;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .main-header h1 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
}