/* 
   Ascent Charitable Events - Main Stylesheet
   This stylesheet contains all custom styling for the ACE landing page
*/

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: #4A5568;
    background-color: #FFFDEC;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
  }
  
  /* Custom Background Patterns */
  .bg-pattern {
    background-color: #FFFDEC;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2386A788' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  
  .bg-soft-gradient {
    background: linear-gradient(135deg, #FFFDEC 0%, #FFE2E2 50%, #FFCFCF 100%);
  }
  
  /* Smooth Scroll Behavior */
  html {
    scroll-behavior: smooth;
  }
  
  /* Custom Animations */
  .animate-fade-in {
    animation: fadeIn 1s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
  }
  
  /* Custom Button Styles */
  .btn-sage {
    background-color: #86A788;
    color: white;
    border: none;
  }
  
  .btn-sage:hover {
    background-color: #6A8A6C;
  }
  
  .btn-peach {
    background-color: #FFE2E2;
    color: #4A5568;
    border: none;
  }
  
  .btn-peach:hover {
    background-color: #F5D8D8;
  }
  
  /* Custom Card Styles */
  .card-hover {
    transition: all 0.3s ease;
  }
  
  .card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  /* Custom Border Styles */
  .border-sage {
    border-color: #86A788;
  }
  
  .border-peach {
    border-color: #FFE2E2;
  }
  
  .border-pink {
    border-color: #FFCFCF;
  }
  
  /* Hero Section Specific Styles */
  .hero-badge {
    background: linear-gradient(to right, #86A788, #A7BEA9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1.5rem;
  }
  
  .hero-title {
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-title .highlight {
    color: #86A788;
  }
  
  /* Form Element Styling */
  .form-input {
    background-color: #FFFDEC;
    border: 1px solid rgba(134, 167, 136, 0.2);
    border-radius: 0.375rem;
    padding: 0.75rem;
    width: 100%;
  }
  
  .form-input:focus {
    border-color: #86A788;
    outline: none;
    box-shadow: 0 0 0 3px rgba(134, 167, 136, 0.2);
  }
  
  /* Stepper Styles */
  .step-container {
    margin-bottom: 2rem;
  }
  
  .progress-bar-container {
    width: 100%;
    height: 0.5rem;
    background-color: #FFFDEC;
    border-radius: 9999px;
    margin-bottom: 1rem;
  }
  
  .progress-bar {
    height: 0.5rem;
    background-color: #86A788;
    border-radius: 9999px;
    transition: width 0.3s ease;
  }
  
  .step-question {
    animation: fadeIn 0.5s ease-in-out;
  }
  
  /* Testimonial Styles */
  .testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .testimonial-quote {
    font-size: 3rem;
    color: #FFFDEC;
    margin-bottom: 1rem;
  }
  
  /* Footer Styles */
  .footer-wave {
    width: 100%;
    height: 4rem;
    transform: translateY(4px);
  }
  
  .social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #A7BEA9;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .container {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
  
  /* Color Classes for Easy Customization */
  .text-sage {
    color: #86A788;
  }
  
  .text-sage-light {
    color: #A7BEA9;
  }
  
  .text-sage-dark {
    color: #6A8A6C;
  }
  
  .text-cream {
    color: #FFFDEC;
  }
  
  .text-peach {
    color: #FFE2E2;
  }
  
  .text-pink {
    color: #FFCFCF;
  }
  
  .bg-sage {
    background-color: #86A788;
  }
  
  .bg-sage-light {
    background-color: #A7BEA9;
  }
  
  .bg-sage-dark {
    background-color: #6A8A6C;
  }
  
  .bg-cream {
    background-color: #FFFDEC;
  }
  
  .bg-peach {
    background-color: #FFE2E2;
  }
  
  .bg-pink {
    background-color: #FFCFCF;
  }