/* ============================================
   CREATE PARTY INFO PAGE STYLES
   ============================================ */

/* Main container */
.party-info-page {
  background: #FFFFFF;
  min-height: 100vh;
  padding: 40px 20px;
}

.party-info-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero section */
.party-info-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #F7E226 0%, #FFE066 100%);
  border-radius: 20px;
  margin-bottom: 60px;
}

.party-info-icon {
  font-size: 64px;
  color: #40403e;
  margin-bottom: 24px;
}

.party-info-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #40403e;
  margin: 0 0 16px;
}

.party-info-subtitle {
  font-size: 18px;
  color: #2d2d2d;
  margin: 0;
}

/* Features section */
.party-info-features {
  margin-bottom: 60px;
}

.party-info-features h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #1e293b;
  margin: 0 0 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  color: #84c5ed;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 12px;
}

.feature-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Call to action */
.party-info-cta {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.party-info-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 16px;
}

.party-info-cta p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

/* Auth section */
.party-info-auth {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 60px 40px;
}

.auth-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.auth-form h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #40403e;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.form-group input:focus-visible {
  outline: none;
  border-color: #84c5ed;
  box-shadow: 0 0 0 3px rgba(132, 197, 237, 0.1);
}

.btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #84c5ed 0%, #b9d4eb 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 174, 243, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 174, 243, 0.4);
}

.btn-secondary {
  background: #40403e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background: #2d2d2d;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.forgot-password {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: #84c5ed;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Register section */
.register-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.register-link p {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
  .party-info-page {
    padding: 20px 16px;
    min-height: auto;
    padding-bottom: 40px;
  }

  .party-info-hero {
    padding: 40px 20px;
    margin-bottom: 40px;
  }

  .party-info-icon {
    font-size: 48px;
  }

  .party-info-hero h1 {
    font-size: 28px;
  }

  .party-info-subtitle {
    font-size: 16px;
  }

  .party-info-features h2 {
    font-size: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 24px;
  }

  .auth-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .party-info-auth {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .party-info-hero h1 {
    font-size: 24px;
  }

  .party-info-subtitle {
    font-size: 14px;
  }

  .party-info-features h2 {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .feature-icon {
    font-size: 40px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .party-info-cta h2 {
    font-size: 22px;
  }

  .party-info-cta p {
    font-size: 14px;
  }
}
