/* styles.css */
:root {
  --primary-color: #ff3366;
  --secondary-color: #333333;
  --light-color: #ffffff;
  --dark-color: #333333;
  --accent-color: #f8f2ff;
  --background-color: #ffffff;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--background-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  margin-bottom: 20px;
  line-height: 1.3;
}

p {
  margin-bottom: 15px;
}

ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

/* Section Styles */
section {
  padding: 60px 0;
}

.dark-section {
  background-color: var(--secondary-color);
  color: var(--light-color);
}

.dark-section h2 {
  color: var(--light-color);
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 80px 0;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--light-color);
}

header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--light-color);
}

.event-date {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--light-color);
}

/* Hook Section */
.hook {
  text-align: center;
}

.quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--light-color);
}

/* Problem Section */
.problem h2 {
  color: var(--primary-color);
  text-align: center;
}

.problem-list {
  list-style-type: none;
  max-width: 800px;
  margin: 0 auto 30px;
}

.problem-list li {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.highlight {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin: 30px 0;
  color: var(--primary-color);
}

/* Solution Section */
.solution h2 {
  text-align: center;
  margin-bottom: 40px;
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.solution-point {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.solution-point h3 {
  color: var(--light-color);
  margin-bottom: 15px;
}

.solution-point p {
  color: var(--light-color);
  margin-bottom: 15px;
}

.solution-point ul {
  list-style-type: none;
  padding-left: 0;
}

.solution-point li {
  color: var(--light-color);
  padding-left: 25px;
  position: relative;
}

.solution-point li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--light-color);
}

/* Why It Works Section */
.why-it-works h2 {
  color: var(--primary-color);
  text-align: center;
}

.secret-box {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 30px;
  border-radius: var(--border-radius);
  margin-bottom: 40px;
  text-align: center;
}

.secret-box h3 {
  color: var(--light-color);
  margin-bottom: 15px;
}

.results-points {
  max-width: 800px;
  margin: 0 auto;
}

.result-point {
  background-color: #f9f9f9;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

/* Results Section */
.results h2 {
  text-align: center;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.testimonial {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.testimonial h3 {
  color: var(--light-color);
  margin-bottom: 10px;
}

.testimonial p {
  color: var(--light-color);
}

.testimonial-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--light-color);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 30px auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Bonus Section */
.bonus h2 {
  color: var(--primary-color);
  text-align: center;
}

.bonus-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: var(--border-radius);
  border: 2px solid var(--primary-color);
  margin-top: 30px;
}

.bonus-box h3 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 15px;
}

.bonus-limited {
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.bonus-box ul {
  list-style-type: none;
}

.bonus-box li {
  padding-left: 25px;
  position: relative;
}

.bonus-box li:before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.bonus-value {
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}

/* Details Section */
.details h2 {
  color: var(--primary-color);
  text-align: center;
}

.details-box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: var(--border-radius);
  margin: 30px 0;
}

.bring-list {
  margin-top: 20px;
}

.bring-list ul {
  list-style-type: none;
}

.bring-list li {
  padding-left: 25px;
  position: relative;
}

.bring-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.bonus-reminder {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
  color: var(--primary-color);
}

/* About Section */
.about h2 {
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--light-color);
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.about-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-color);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: var(--light-color);
  color: var(--primary-color);
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.details .cta-button {
  background-color: var(--primary-color);
  color: var(--light-color);
  display: block;
  max-width: 300px;
  margin: 40px auto 20px;
  text-align: center;
}

.details .cta-button:hover {
  background-color: #e61e4d;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--light-color);
  padding: 30px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 60px 0;
  }
  
  header h1 {
    font-size: 2rem;
  }
  
  header h2 {
    font-size: 1.5rem;
  }
  
  .quote {
    font-size: 1.2rem;
  }
  
  .solution-points, .testimonials {
    flex-direction: column;
  }
  
  .solution-point, .testimonial {
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
  
  .about-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }
  
  header {
    padding: 40px 0;
  }
  
  header h1 {
    font-size: 1.8rem;
  }
  
  header h2 {
    font-size: 1.3rem;
  }
  
  .quote {
    font-size: 1.1rem;
  }
  
  .highlight {
    font-size: 1.2rem;
  }
  
  .testimonial-image, .about-image {
    width: 180px;
    height: 180px;
  }
}
