/* Landing Page Styles for Your Event List */

/* Honeypot field - hidden from users but visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

:root {
  --gradient-start: #667eea;
  --gradient-end: #764ba2;
  --primary-color: #5e72e4;
  --primary-hover: #4c63d2;
  --text-dark: #32325d;
  --text-muted: #8898aa;
  --text-light: #adb5bd;
  --bg-light: #f8f9fe;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Navigation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.landing-nav .nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-nav .nav-logo {
  text-decoration: none;
}

.landing-nav .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.landing-nav.scrolled .logo-text {
  color: var(--gradient-start);
}

.landing-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.landing-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.landing-nav.scrolled .nav-link {
  color: var(--text-dark);
}

.landing-nav .nav-link:hover {
  color: var(--white);
}

.landing-nav.scrolled .nav-link:hover {
  color: var(--primary-color);
}

.landing-nav .btn-nav {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.landing-nav .btn-nav:hover {
  background: var(--white);
  color: var(--gradient-start);
  border-color: var(--white);
}

.landing-nav.scrolled .btn-nav {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  border-color: transparent;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

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

.hero-headline {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.text-highlight {
  display: inline-block;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), rgba(224,231,255,0.95));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 1.25rem;
  opacity: 0.92;
  margin-bottom: 2rem;
  max-width: 500px;
  font-weight: 400;
}

/* Waitlist Form */
.waitlist-form {
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.waitlist-form .form-control {
  border-radius: 10px;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1rem;
  backdrop-filter: blur(10px);
}

.waitlist-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.waitlist-form .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15);
  outline: none;
}

.btn-cta {
  background: var(--white);
  color: var(--gradient-start);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--gradient-start);
}

.hero-social-proof {
  font-size: 0.95rem;
  opacity: 0.9;
}

.hero-social-proof i {
  margin-right: 8px;
}

/* Hero Visual */
.hero-visual {
  animation: fadeInRight 0.8s ease 0.2s both;
}

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

.dashboard-preview {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.preview-header {
  background: #e9ecef;
  padding: 12px 16px;
  display: flex;
  gap: 8px;
}

.preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.preview-dot.red { background: #ff5f56; }
.preview-dot.yellow { background: #ffbd2e; }
.preview-dot.green { background: #27ca40; }

.preview-content {
  display: flex;
  padding: 20px;
  min-height: 300px;
  background: #f8f9fa;
}

.preview-sidebar {
  width: 60px;
  margin-right: 20px;
}

.preview-menu-item {
  height: 40px;
  background: #dee2e6;
  border-radius: 8px;
  margin-bottom: 10px;
}

.preview-menu-item.active {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.preview-main {
  flex: 1;
}

.preview-card {
  background: var(--white);
  height: 60px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.preview-stats {
  display: flex;
  gap: 15px;
}

.preview-stat {
  flex: 1;
  background: var(--white);
  height: 80px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Section Styles */
.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background: var(--white);
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon i {
  font-size: 28px;
  color: var(--white);
}

.feature-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.benefits-visual {
  position: relative;
  height: 350px;
}

.benefit-card {
  position: absolute;
  background: var(--white);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.benefit-card i {
  font-size: 24px;
  color: var(--gradient-start);
}

.benefit-card-1 {
  top: 20px;
  left: 10%;
  animation: float 3s ease-in-out infinite;
}

.benefit-card-2 {
  top: 140px;
  right: 5%;
  animation: float 3s ease-in-out infinite 0.5s;
}

.benefit-card-3 {
  bottom: 40px;
  left: 20%;
  animation: float 3s ease-in-out infinite 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.benefits-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 12px 0;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.benefits-list li i {
  color: #27ae60;
  margin-right: 12px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 35px;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid #e9ecef;
}

.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.author-avatar i {
  color: var(--white);
  font-size: 20px;
}

.author-info strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
}

.author-info span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
  color: var(--white);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-form-large .form-control {
  border-radius: 10px;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1rem;
}

.waitlist-form-large .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.waitlist-form-large .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.15);
  outline: none;
}

.btn-cta-light {
  background: var(--white);
  color: var(--gradient-start);
  border: none;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-light:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: var(--gradient-start);
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 15px;
}

.footer-tagline {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-subheadline {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .benefits-visual {
    height: 280px;
    margin-bottom: 40px;
  }

  .benefit-card-1 { top: 10px; left: 5%; }
  .benefit-card-2 { top: 110px; right: 0; }
  .benefit-card-3 { bottom: 30px; left: 15%; }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 90px 0 50px;
    text-align: center;
  }

  .hero-headline {
    font-size: 2rem;
  }

  .hero-subheadline {
    font-size: 1rem;
    max-width: 100%;
  }

  .waitlist-form {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .benefits-visual {
    display: none;
  }

  .benefits-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .testimonial-card {
    padding: 25px;
  }

  .site-footer {
    padding: 40px 0 20px;
  }
}

/* Alert styles for form messages */
.waitlist-form .alert,
.waitlist-form-large .alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.waitlist-form .alert-success,
.waitlist-form-large .alert-success {
  background: rgba(39, 174, 96, 0.2);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #d4edda;
}

.waitlist-form .alert-danger,
.waitlist-form-large .alert-danger {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #f8d7da;
}
