/* ---------- Additional Styles for SnapItForms ---------- */

/* Header Styles */
header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 42px;
  background: linear-gradient(90deg, #aa336a, #ff0077);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

header p {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto;
}
  
  /* Features Section */
  .features-section {
    margin: 60px 0;
    text-align: center;
  }
  
  .features-section h2 {
    color: #aa336a;
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .feature-card {
    background: #fff8f0;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  
  .feature-icon {
    font-size: 30px;
    color: #aa336a;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    margin-bottom: 10px;
    color: #2d3748;
  }
  
  .feature-card p {
    color: #4a4a4a;
    font-size: 14px;
  }
  
  /* How It Works Section */
  .how-it-works {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: #fff8f0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  
  /* Form Templates Section */
  .form-templates {
    margin: 60px 0;
    text-align: center;
  }
  
  .templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .template-card {
    background: #fff8f0;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .template-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(170, 51, 106, 0.05), transparent);
    transition: height 0.3s ease;
  }

  
  .template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(170, 51, 106, 0.15);
  }

  .template-card:hover::after {
    height: 100%;
  }
  
  .template-card:hover .template-icon {
    transform: scale(1.2);
  }
  .template-icon {
    font-size: 24px;
    color: #aa336a;
    margin-bottom: 10px;
  }
  
  /* Sign Up CTA */
  .sign-up-cta {
    text-align: center;
    margin: 60px 0 30px;
    padding: 30px;
    background: linear-gradient(135deg, #fce4ec, #fff8f0);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
  }
  
  .modal-content {
    background: #fff8f0;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #2d3748;
    cursor: pointer;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .container {
      padding: 20px;
    }
    
    header h1 {
      font-size: 32px;
    }
    
    header h2 {
      font-size: 24px;
    }
    
    .features-grid, .templates-grid {
      grid-template-columns: 1fr;
    }
    
    .modal-content {
      width: 90%;
      margin: 20% auto;
    }
  }
  :root {
  --primary-color: #6c63ff;
  --primary-color-dark: #5a52d5;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --text-light: #6c757d;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: #fff;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color-dark);
}

h1, h2, h3, h4, h5 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}






/* Navigation */
header {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
}

.logo span {
  color: var(--primary-color);
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--primary-color);
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  padding: 4rem 0;
  gap: 2rem;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--secondary-color);
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: var(--transition);
}

.pricing-card.highlighted {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.8rem;
}

.pricing-header .price {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-header .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-features {
  margin-bottom: 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:before {
  content: "✓";
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Docs Section */
.docs {
  padding: 5rem 0;
  background-color: var(--secondary-color);
  text-align: center;
}

.docs h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.docs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.docs-step {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  width: 250px;
  text-align: center;
}

.step-number {
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 600;
}

/* Footer */
footer {
  background-color: #f8f9fa;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  flex: 2;
}

.footer-logo h2 {
  font-size: 1.8rem;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-links {
  flex: 3;
  display: flex;
  justify-content: space-between;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.copyright {
  text-align: center;
  color: var(--text-light);
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  /* Additional CSS for animations and enhanced UI elements */

/* Button ripple effect */
button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100px;
  height: 100;
}