/* Coming Soon Page Styles */

/* Coming Soon Hero Section */
.coming-soon-hero {
  padding: var(--spacing-xl) 0;
  background: #00bfff;
  color: var(--text-white);
  text-align: center;
}

.coming-soon-hero-title {
  font-size: 3rem;
  font-weight: 800;
  animation: fadeInUp 0.8s ease;
}

/* Fade-in animation for main content */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.coming-soon-section {
  min-height: calc(100vh - 200px);
  background-color: #ecf0f1;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s ease-in;
}

.coming-soon-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-title {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  color: #000000;
  margin-bottom: 60px;
  font-weight: 500;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  gap: 20px;
  justify-content: center;
  align-items: start;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.product-link:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}

.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.placeholder-image {
  width: 300px;
  height: 300px;
  background-color: #f0f0f0;
  border: 2px solid #3498db;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder-image::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 24 24' fill='none' stroke='%233498db' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.placeholder-text {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}

/* Mobile breakpoint (768px and below) */
@media (max-width: 768px) {
  .coming-soon-hero-title {
    font-size: 2rem;
  }
}

/* Mobile breakpoint (600px and below) */
@media (max-width: 600px) {
  .coming-soon-section {
    padding: 40px 20px;
  }

  .coming-soon-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 300px;
  }

  .placeholder-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1;
  }

  .product-placeholder {
    justify-content: center;
  }

  .placeholder-text {
    font-size: 16px;
  }
}

/* Ultimate Memorizer Description Section */
.ultimate-memorizer-section {
  padding: var(--spacing-xl) 0;
  background-color: #ffffff;
}

.ultimate-memorizer-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ultimate-memorizer-content .logo {
  flex-shrink: 0;
}

.ultimate-memorizer-content .logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.ultimate-memorizer-content .description {
  flex: 1;
}

.ultimate-memorizer-content .description p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .ultimate-memorizer-content {
    flex-direction: column;
    gap: 20px;
  }

  .ultimate-memorizer-content .logo img {
    max-width: 250px;
  }

  .ultimate-memorizer-content .description p {
    font-size: 1rem;
  }
}
