/* Coming Soon Page Styles */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap");

/* Import color variables from main stylesheet */
@import url("style.css");

/* Additional color variable for pet-blue */
:root {
  --pet-blue: #3b82f6;
}

/* Coming Soon Section */
.coming-soon-section {
  min-height: 100vh;
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(248, 242, 227, 0.3) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
}

.coming-soon-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .coming-soon-container {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .coming-soon-container {
    padding: 0 3rem;
  }
}

/* Coming Soon Header */
.coming-soon-header {
  text-align: center;
  margin-bottom: 3rem;
}

.coming-soon-icon-wrapper {
  background-color: rgba(227, 132, 69, 0.2);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.coming-soon-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--pet-orange);
}

.coming-soon-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .coming-soon-title {
    font-size: 3rem;
  }
}

.coming-soon-highlight {
  color: var(--pet-orange);
  font-family: "Caveat", cursive;
}

.coming-soon-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Coming Soon Card */
.coming-soon-card {
  max-width: 42rem;
  margin: 0 auto 3rem;
  background-color: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.coming-soon-card-content {
  padding: 2rem;
  text-align: center;
}

.coming-soon-image-wrapper {
  margin-bottom: 1.5rem;
}

.coming-soon-image {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border-radius: 0.5rem;
}

.coming-soon-card-title {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.coming-soon-card-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Coming Soon Actions */
.coming-soon-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .coming-soon-actions {
    flex-direction: row;
  }
}

.coming-soon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  padding: 0.625rem 1rem;
  border: none;
  cursor: pointer;
}

.coming-soon-btn-primary {
  background-color: var(--pet-blue);
  color: white;
}

.coming-soon-btn-primary:hover {
  background-color: rgba(59, 130, 246, 0.9);
  transform: translateY(-1px);
}

.coming-soon-btn-secondary {
  background-color: transparent;
  color: var(--pet-orange);
  border: 1px solid var(--pet-orange);
}

.coming-soon-btn-secondary:hover {
  background-color: var(--pet-orange);
  color: white;
  transform: translateY(-1px);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  flex-shrink: 0;
}

/* Coming Soon Features */
.coming-soon-features {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .coming-soon-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.coming-soon-feature-card {
  background-color: var(--background);
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.coming-soon-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon-green {
  background-color: rgba(22, 162, 73, 0.2);
}

.feature-icon-blue {
  background-color: rgba(59, 130, 246, 0.2);
}

.feature-icon-orange {
  background-color: rgba(227, 132, 69, 0.2);
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-icon-green .feature-icon {
  color: var(--pet-green);
}

.feature-icon-blue .feature-icon {
  color: var(--pet-blue);
}

.feature-icon-orange .feature-icon {
  color: var(--pet-orange);
}

.feature-title {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.feature-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .coming-soon-section {
    padding: 3rem 0;
  }

  .coming-soon-title {
    font-size: 1.875rem;
  }

  .coming-soon-description {
    font-size: 1.125rem;
  }

  .coming-soon-card-content {
    padding: 1.5rem;
  }

  .coming-soon-image {
    height: 10rem;
  }
}

/* Animation for the coming soon highlight */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.coming-soon-highlight {
  animation: pulse 2s infinite;
}
