/**
 * Blog Coming Soon Page Styles
 * Professional design matching B2B Enterprises branding
 */

/* Main Coming Soon Section */
.blog-coming-soon {
  min-height: 80vh;
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Announcement Card */
.announcement-card {
  background: white;
  border-radius: 16px;
  padding: 60px 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.announcement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1976d2, #42a5f5);
}

.coming-soon-title {
  font-size: 2.5rem;
  color: #1976d2;
  margin-bottom: 16px;
  font-weight: 700;
}

.coming-soon-title .material-icons {
  vertical-align: middle;
  margin-right: 16px;
  color: #42a5f5;
}

.coming-soon-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.launch-info {
  margin-top: 32px;
}

.launch-text {
  color: #1976d2;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.launch-description {
  color: #777;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Visual Elements */
.announcement-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 300px;
}

.visual-elements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  animation: float 6s ease-in-out infinite;
}

.blog-icon {
  font-size: 4rem !important;
  color: #42a5f5;
  background: white;
  padding: 20px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(66, 165, 245, 0.3);
  transition: all 0.3s ease;
}

.blog-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(66, 165, 245, 0.4);
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #1976d2;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1976d2, #42a5f5);
  border-radius: 2px;
}

/* Expectations Section */
.expectations-section {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.expectation-card {
  text-align: center;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.expectation-card:hover {
  transform: translateY(-5px);
}

.expectation-icon {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.expectation-icon .material-icons {
  color: white;
  font-size: 2.5rem !important;
}

.expectation-card h4 {
  color: #1976d2;
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.expectation-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Preview Section */
.preview-section {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.topic-list {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
}

.topic-list h4 {
  color: #1976d2;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 2px solid #e3f2fd;
  padding-bottom: 10px;
}

.topic-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-items li {
  color: #555;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}

.topic-items .material-icons {
  color: #42a5f5;
  margin-right: 8px;
  margin-top: 2px;
}

/* Stay Updated Section */
.stay-updated-section {
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  border-radius: 16px;
  margin-bottom: 40px;
  overflow: hidden;
}

.update-card {
  padding: 60px 40px;
  text-align: center;
  color: white;
}

.update-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.update-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0.95;
}

.update-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.update-actions .btn-large {
  margin: 10px;
  padding: 0 30px;
  height: 54px;
  line-height: 54px;
}

/* Resources Section */
.resources-section {
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.resources-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.resource-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  border: 1px solid #e3f2fd;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
}

.resource-card h4 {
  color: #1976d2;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.resource-card h4 .material-icons {
  vertical-align: middle;
  margin-right: 8px;
}

.resource-card p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.resource-card .btn {
  width: 100%;
  max-width: 200px;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
  .coming-soon-title {
    font-size: 2rem;
  }
  
  .coming-soon-subtitle {
    font-size: 1.1rem;
  }
  
  .announcement-card,
  .expectations-section,
  .preview-section,
  .resources-section {
    padding: 40px 20px;
  }
  
  .update-card {
    padding: 40px 20px;
  }
  
  .update-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .visual-elements {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
  
  .blog-icon {
    font-size: 3rem !important;
    padding: 15px;
  }
  
  .expectation-icon {
    width: 60px;
    height: 60px;
  }
  
  .expectation-icon .material-icons {
    font-size: 2rem !important;
  }
}

@media only screen and (max-width: 480px) {
  .coming-soon-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .announcement-card,
  .expectations-section,
  .preview-section,
  .resources-section {
    padding: 30px 15px;
  }
  
  .visual-elements {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .blog-icon {
    font-size: 2.5rem !important;
    padding: 12px;
  }
}