body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5dc; /* Creamy white */
  color: #5c4033; /* Rich brown */
  margin: 0;
  padding: 0;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  margin-top: 0; /* Removed top margin to align with other pages */
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 120px;
  width: auto;
}

.logo h1 {
  color: #d4a373;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin: 0;
  font-weight: 700;
}

nav {
  justify-self: end;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav a {
  color: #5c4033; /* Rich brown */
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
}

nav a:hover {
  color: #d4a373; /* Warm terracotta */
}

/* Apply CTA styling to dashboard button */
nav a.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #d4a373;
  color: #ffffff;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block; /* This ensures consistent block properties */
  text-align: center; /* Center the text for consistent appearance */
}

nav a.cta-button:hover {
  background-color: #b22222;
  color: #ffffff;
  transform: translateY(-1px); /* Add subtle hover animation for better feedback */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add shadow on hover for depth */
}

.hero {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}

.hero-content {
  flex: 1;
}

.hero h2 {
  color: #d4a373; /* Warm terracotta */
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background-color: #d4a373; /* Warm terracotta */
  color: #ffffff;
  border: none;
  border-radius: 25px; /* Bubbled buttons */
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #b22222; /* Vibrant red */
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.features {
  margin-bottom: 4rem;
}

.features h2 {
  color: #d4a373; /* Warm terracotta */
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.feature i {
  font-size: 2.5rem;
  color: #d4a373; /* Warm terracotta */
  margin-bottom: 1rem;
}

.feature h3 {
  color: #5c4033; /* Rich brown */
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature p {
  color: #5c4033; /* Rich brown */
  font-size: 1rem;
  line-height: 1.6;
}

footer {
  text-align: center;
  color: #5c4033; /* Rich brown */
  font-size: 0.9rem;
  padding: 1rem 0;
}

/* Stripe Connect Styles */
#payment-settings .section-content {
  padding: 20px;
}

.info-card,
.warning-card,
.success-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.info-card h3,
.warning-card h3,
.success-card h3 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 16px;
}

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

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.benefit-icon {
  margin-right: 10px;
  font-size: 20px;
}

.fee-info {
  background-color: #f9f9f9;
  border-radius: 6px;
  padding: 12px;
  margin: 16px 0;
}

.fee-note {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

#connect-stripe-btn {
  background-color: #6772e5;
  color: white;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  margin-top: 16px;
  display: block;
  width: 100%;
}

.warning-card {
  border-left: 4px solid #f5b729;
  background-color: #fffbf1;
}

.success-card {
  border-left: 4px solid #46c76c;
  background-color: #f5fff7;
}

.checkmark {
  color: #32a852;
  font-weight: bold;
}

.payout-info,
.fee-summary {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 12px;
  margin: 16px 0;
}

.payout-info h4,
.fee-summary h4 {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 8px;
}

#view-stripe-dashboard {
  color: #6772e5;
  text-decoration: none;
  display: inline-block;
  margin-top: 16px;
  font-weight: 500;
}

#view-stripe-dashboard:hover {
  text-decoration: underline;
}

#complete-stripe-btn {
  background-color: #f5b729;
  color: #333;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  margin-top: 16px;
  display: block;
  width: 100%;
}

/* End of Stripe Connect Styles */
