/* ==========================================================================
   FLIENDS LANDING PAGE - Enhanced Styles
   Purple Theme & Modern Design
   ========================================================================== */

/* ==========================================================================
   HERO SECTION ENHANCEMENTS
   ========================================================================== */

.hero-area .contents .head-title {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #C084FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #8B5CF6;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: #6B7280;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ==========================================================================
   BUTTON ENHANCEMENTS
   ========================================================================== */

.btn-border-filled {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  border: 2px solid #8B5CF6;
  color: #ffffff;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-border-filled:hover {
  background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
  border-color: #A855F7;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-border {
  background: transparent;
  border: 2px solid #8B5CF6;
  color: #8B5CF6;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-border:hover {
  background: #8B5CF6;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-common {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-common:hover {
  background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ==========================================================================
   FEATURES SECTION ENHANCEMENTS
   ========================================================================== */

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1rem;
  text-align: center;
}

.desc-text p {
  font-size: 1.125rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 0;
}

.feature-item {
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid #E5E7EB;
  background: #ffffff;
  margin-bottom: 1rem;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
  border-color: #8B5CF6;
}

.featured-border1 {
  border-left: 4px solid #8B5CF6;
}

.featured-border2 {
  border-left: 4px solid #A855F7;
}

.featured-border3 {
  border-left: 4px solid #C084FC;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.feature-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 0.75rem;
}

.feature-info p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.5;
  margin-bottom: 0;
}

/* ==========================================================================
   ABOUT SECTION ENHANCEMENTS
   ========================================================================== */

.business-item-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.business-item-info p {
  font-size: 1.1rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.business-item-info strong {
  color: #8B5CF6;
  font-weight: 600;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

#cta {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
  color: #ffffff;
  text-align: center;
  padding: 4rem 0;
}

#cta .section-title {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#cta .desc-text p {
  color: #E5E7EB;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

#cta .btn-border-filled {
  background: #ffffff;
  color: #8B5CF6;
  border-color: #ffffff;
}

#cta .btn-border-filled:hover {
  background: #F3F4F6;
  color: #8B5CF6;
}

#cta .btn-border {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

#cta .btn-border:hover {
  background: #ffffff;
  color: #8B5CF6;
}

/* ==========================================================================
   SOCIAL NETWORKS SECTION ENHANCEMENTS
   ========================================================================== */

.gradient-bg {
  background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
  padding: 3rem 0;
}

#showcase .section-title {
  color: #ffffff;
}

#showcase .desc-text p {
  color: #D1D5DB;
}

.single-brand {
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
}

.single-brand:hover {
  transform: scale(1.1);
}

.single-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.single-brand:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
  .hero-area .contents .head-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    min-width: auto;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-item {
    padding: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero-area .contents .head-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .business-item-info h3 {
    font-size: 1.5rem;
  }
  
  .business-item-info p {
    font-size: 1rem;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }
.feature-item:nth-child(7) { animation-delay: 0.7s; }
.feature-item:nth-child(8) { animation-delay: 0.8s; }

/* ==========================================================================
   DARK MODE SUPPORT
   ========================================================================== */

@media (prefers-color-scheme: dark) {
  .section-title {
    color: #F9FAFB;
  }
  
  .desc-text p {
    color: #D1D5DB;
  }
  
  .feature-item {
    background: #1F2937;
    border-color: #374151;
  }
  
  .feature-info h4 {
    color: #F9FAFB;
  }
  
  .feature-info p {
    color: #D1D5DB;
  }
  
  .business-item-info h3 {
    color: #F9FAFB;
  }
  
  .business-item-info p {
    color: #D1D5DB;
  }
  
  .hero-subtitle {
    color: #D1D5DB;
  }
  
  .stat-label {
    color: #D1D5DB;
  }
} 