
/* style.css for LoopRelive.com */

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #1a1a1a;
}

header.gradient-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(135deg, #ffe2e2, #f9d5ec);
  animation: fadeIn 1.5s ease-in;
}

header h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: #333;
}

header p {
  font-size: 1.2rem;
  color: #444;
}

.section {
  padding: 3rem 2rem;
  max-width: 1100px;
  margin: auto;
  animation: slideUp 1s ease-out;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #222;
}

.steps {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}

.step {
  flex: 1;
  padding: 1rem;
}

.step img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .steps {
    flex-direction: row;
    justify-content: space-between;
  }
}

.card, .price-card, .faq-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
  text-align: center;
}

.colorful-section {
  background: linear-gradient(90deg, #e1f4f3, #fcefee);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.gradient-section {
  background: linear-gradient(to right, #fff8dc, #ffe4e1);
}

.examples-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.examples-container img,
.examples-container video {
  width: 100%;
  max-width: 250px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .pricing {
    flex-direction: row;
    justify-content: space-between;
  }
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #333;
}

.price-card button {
  padding: 0.75rem 1.5rem;
  background-color: #1a1a1a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.price-card button:hover {
  background-color: #444;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

form input, form select {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  padding: 0.9rem;
  font-size: 1rem;
  background: #0070f3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background: #0055cc;
}

footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  margin-top: 4rem;
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes slideUp {
  0% {transform: translateY(20px); opacity: 0;}
  100% {transform: translateY(0); opacity: 1;}
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 800px;
  margin: auto;
}

.testimonial {
  flex: 1 1 calc(50% - 1rem);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .testimonial {
    flex: 1 1 100%;
  }
}

.testimonial {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.testimonial img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.comparison-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.comparison-column {
  flex: 1 1 300px;
  background: #fafafa;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.comparison-column:hover {
  transform: translateY(-5px);
}

.comparison-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #111;
}

.comparison-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
}

.comparison-column li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .comparison-column {
    flex: 1 1 100%;
    padding: 1rem;
    font-size: 0.95rem;
  }

  .comparison-column h3 {
    font-size: 1.1rem;
  }

  .comparison-column li {
    margin-bottom: 0.6rem;
  }
}