@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
  overflow-x: hidden;
}

.App {
  min-height: 100vh;
  background: linear-gradient(135deg, #faf9f6 0%, #f5f1e8 100%);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  background: linear-gradient(135deg, #f8f6f0 0%, #fdfbf7 50%, #f5f0e8 100%);
  text-align: center;
}

.crown-icon-container {
  display: inline-flex;
  padding: 1.5rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
  animation: floatAnimation 3s ease-in-out infinite;
}


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

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #5a5a5a;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.hero-image-container {
  margin-top: 4rem;
  max-width: 800px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Features Section */
.features-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #fdfbf7 0%, #f8f6f0 100%);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  color: #2d2d2d;
  margin-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
  display: inline-flex;
  padding: 1.25rem;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.feature-description {
  font-size: 1rem;
  color: #5a5a5a;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: #e0e0e0;
  font-weight: 500;
}

/* About Section */
.about-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f8f6f0 0%, #fdfbf7 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.about-content {
  padding-right: 2rem;
}

.about-text {
  font-size: 1.125rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Join Section */
.join-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f0e8 100%);
  text-align: center;
}

.join-content {
  max-width: 700px;
  margin: 0 auto;
}

.join-subtitle {
  font-size: 1.25rem;
  color: #5a5a5a;
  margin-bottom: 3rem;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.form-group {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.input-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8a8a8a;
}

.email-input {
  width: 100%;
  padding: 1.25rem 1.5rem 1.25rem 3.5rem;
  font-size: 1.125rem;
  border: 2px solid #e0d9c8;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  color: #2d2d2d;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.email-input::placeholder {
  color: #8a8a8a;
}

.submit-button {
  padding: 1.25rem 3.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2d2d2d;
  background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

/* Footer */
.footer {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #e0e0e0;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d4af37;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 1rem;
  color: #b0b0b0;
  margin-bottom: 2rem;
  font-style: italic;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d4af37;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #8a8a8a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1rem; }
  .features-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .about-content { padding-right: 0; }
  .section-title { font-size: 2.5rem; }
  .footer-links { flex-direction: column; gap: 1rem; }
}
