/* React Flow CSS - Required for React Flow components */
@import url("https://cdn.jsdelivr.net/npm/@xyflow/react@12.6.4/dist/style.css");

body {
  margin: 0;
  padding: 0;
}

html * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.25rem;
  font-weight: 600;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Spinner animation for payment loading */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Hero Section Responsive Styles */
.hero-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
  background: #7B75E8;
}

.hero-logo {
  height: 100px;
  width: auto;
}

.hero-background {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: 70% top;
  opacity: 0.95;
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10;
  padding: 60px 5% 40px 5%;
  margin: auto 0;
  position: relative;
}

.hero-headline {
  color: #ffffff;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  max-width: 600px;
}

.hero-subheadline {
  color: #ffffff;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 600px;
  opacity: 0.95;
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  .hero-wrapper {
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-background {
    object-position: 80% top;
    opacity: 0.7;
  }

  .hero-content {
    padding: 40px 20px 40px 20px;
  }

  .hero-headline {
    max-width: 100%;
  }

  .hero-subheadline {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-wrapper {
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
  }

  .hero-logo {
    height: 80px;
  }

  .hero-background {
    object-position: 75% top;
  }

  .hero-content {
    padding: 50px 40px 40px 40px;
  }
}

/* Desktop: >= 1024px */
@media (min-width: 1024px) {
  .hero-logo {
    height: 100px;
  }
}