/**
 * Landing Page & Thank You Page Styles
 * Extracted from Tailwind CSS classes for better maintainability
 */

/* ==========================================================================
   LANDING PAGE STYLES
   ========================================================================== */

/* Landing Hero Section */
.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f9fafb, #ffffff);
  position: relative;
  overflow: hidden;
}

/* Background Hero Mode */
.landing-hero-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background-color: #000000;
  z-index: 5;
}

.landing-hero-background .container {
  z-index: 15;
}

.landing-hero-background h1,
.landing-hero-background .subtitle,
.landing-hero-background .confirmation-message,
.landing-hero-background .additional-info,
.landing-hero-background .benefit-item h3,
.landing-hero-background .benefit-item p {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.landing-hero-background .benefit-item .icon {
  background-color: rgba(255, 255, 255, 0.9);
}

.landing-hero-background .benefit-item .icon svg {
  color: #000000;
}

.landing-hero-background .trust-indicators p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .landing-hero-background {
    background-attachment: scroll;
  }
}

.landing-hero .noise {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  pointer-events: none;
}

.landing-hero .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
  position: relative;
  z-index: 10;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .landing-hero .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}


/* Campaign Image */
.campaign-image {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.campaign-featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-height: 400px;
  width: auto;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fade-in-scale 0.8s ease-out;
}

.campaign-featured-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 30px -5px rgba(0, 0, 0, 0.15), 0 15px 15px -5px rgba(0, 0, 0, 0.08);
}

@keyframes fade-in-scale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .campaign-featured-image {
    max-height: 500px;
  }
}

@media (min-width: 1024px) {
  .campaign-featured-image {
    max-height: 600px;
  }
}

/* Main Headline */
.landing-hero h1 {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .landing-hero h1 {
    font-size: 2.35rem;
  }
}

/* Subtitle */
.landing-hero .subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}


/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-item .icon {
  width: 3rem;
  height: 3rem;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.benefit-item .icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

.benefit-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #4b5563;
}

/* CTA Button */
.cta-button {
  background-color: #000000;
  color: #ffffff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #374151;
  transform: scale(1.05);
}

.cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
}

/* Trust Indicators */
.trust-indicators {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Form Container */
.form-container {
  background-color: #f9fafb;
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .form-container {
    padding: 2rem;
  }
}

/* Form Styles */
.registration-form {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-row.mailchimp-newsletter{
  display: none !important;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group .required {
  color: #ef4444;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px #000000;
}

.password-note {
  font-size: 0.875rem;
  color: #4b5563;
}

.mandatory-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.submit-button {
  width: 100%;
  background-color: #000000 !important;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #374151 !important;
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.5);
}

.form-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Social Proof Section */
.social-proof {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f9fafb;
}

.social-proof .container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .social-proof .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.social-proof h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2rem;
}

/* Screen Reader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Thank You specific styles */
.thank-you-hero .container {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 48rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .thank-you-hero .container {
    margin-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Thank You Logo */
.landing-hero .logo {
  width: 10rem;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* Campaign Image Small (Thank You Page) */
.campaign-image-small {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.campaign-featured-image-small {
  max-width: 200px;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

@media (min-width: 768px) {
  .campaign-featured-image-small {
    max-width: 250px;
  }
}

/* Success Icon */
.success-icon-container {
  margin-bottom: 2rem;
}

.success-icon {
  width: 6rem;
  height: 6rem;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.success-icon svg {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
}

/* Confirmation Message */
.confirmation-message {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .confirmation-message {
    font-size: 1.5rem;
  }
}

/* What's Next Section */
.whats-next {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-bottom: 3rem;
  border: 1px solid #f3f4f6;
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .whats-next {
    padding: 2.5rem;
  }
}

.whats-next h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
}

.next-steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .next-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.next-step {
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease;
}


.next-step .step-number {
  width: 3rem;
  height: 3rem;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.next-step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.next-step p {
  color: #4b5563;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #374151;
  transform: scale(1.05);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  border: 2px solid #000000;
  color: #000000;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}
/* Responsive Design */
@media (max-width: 640px) {
  .landing-hero .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
  
  .whats-next {
    padding: 1.5rem;
  }
  
  .landing-hero h1 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


#header, #footer, hr{
  display: none !important;
}

