/* Rhythm of Business Custom Styles */

/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Apply Inter font globally */
body, html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

:root {
  --brand-primary: #52c4a0;    /* Main green from logo */
  --brand-accent: #ff6b6b;     /* Coral red from logo */
  --brand-dark: #2c3e50;       /* Professional dark blue */
  --brand-light: #f8f9fa;      /* Clean light gray */
  --brand-white: #ffffff;
}

/* Hero Section Styling */
.hero-section {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-accent) 100%);
  color: var(--brand-white);
  padding: 4rem 2rem;
  text-align: center;
  margin: -2rem -2rem 3rem -2rem;
  border-radius: 0 0 20px 20px;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Call to Action Button */
.cta-section {
  text-align: center;
  margin: 3rem 0;
}

.btn-primary {
  background: linear-gradient(135deg, #52c4a0 0%, #45b393 100%);
  color: white !important;
  padding: 0.9rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(82, 196, 160, 0.3);
  text-transform: none;
  letter-spacing: 0;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #e55a5a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  color: white !important;
  text-decoration: none;
}

/* CTA Card & Elements */
.welcome-card {
  background: rgba(255, 255, 255, 0.95);
  color: #2c3e50;
  padding: 1.75rem 1.85rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 500px;
  margin: 2rem auto;
}

.hero-cta {
  margin-top: 1rem;
  text-align: center;
}

.cta-urgency {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: #5a6c7d;
  font-weight: 400;
}

.cta-pricing {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.35;
  color: #2c3e50;
  font-weight: 400;
}

.cta-pricing strong {
  color: #1B365D;
  font-weight: 700;
  font-size: 0.95rem;
}

.cta-roi {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #5a6c7d;
  font-style: italic;
  font-weight: 400;
}

.trust-badge {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #7a8a9d;
}

/* Value Props Cards */
.value-props {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 40px auto 80px auto;
  max-width: 1200px;
}

.value-props > div {
  background: white;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.value-props > div .card-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 12px;
  width: 100%;
  margin: 1.5rem;
}

/* Desktop: alternate left/right positioning */
@media (min-width: 768px) {
  .value-props > div .card-content {
    width: 50%;
    margin: 2rem;
  }

  .value-props > div:nth-child(odd) .card-content {
    margin-left: 2rem;
    margin-right: auto;
  }

  .value-props > div:nth-child(even) .card-content {
    margin-left: auto;
    margin-right: 2rem;
  }
}

.value-props > div:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #52c4a0, #45b393);
  border-radius: 16px 16px 0 0;
}

.value-props h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-top: 0;
  position: relative;
  color: #2c3e50;
  border-bottom: none;
}

.value-props p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #5a6c7d;
  margin-bottom: 1rem;
}

.value-props ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.value-props li {
  margin-bottom: 0.75rem;
  color: #5a6c7d;
}

.value-props .card-content > p:has(a.btn-primary) {
  text-align: center;
}


/* Tagline Styling */
.tagline {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: var(--brand-light);
  border-radius: 10px;
  border-left: 4px solid var(--brand-primary);
}

.tagline em {
  font-size: 1.2rem;
  color: var(--brand-dark);
  font-style: italic;
}

/* Pricing Hero - Override dark text */
.pricing-hero,
.pricing-hero p,
.pricing-hero strong,
.pricing-hero span,
.pricing-hero td {
  color: #e8f0f7 !important;
}

/* Section Improvements */
h2 {
  color: var(--brand-dark);
  border-bottom: 2px solid var(--brand-primary);
  padding-bottom: 0.5rem;
  margin-top: 3rem;
}

h3 {
  color: var(--brand-primary);
  margin-top: 2rem;
}

/* Navigation Styling */
.site-navigation a {
  color: var(--brand-dark);
  transition: color 0.3s ease;
}

.site-navigation a:hover {
  color: var(--brand-primary);
}

/* Footer Menu Styling */
.site-footer a {
  color: var(--brand-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

/* Legal Pages - Clean Footer Style */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--brand-white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.legal-page h1 {
  color: var(--brand-dark);
  border-bottom: 3px solid var(--brand-primary);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.legal-page h2 {
  color: var(--brand-primary);
  border-bottom: 1px solid var(--brand-light);
  margin-top: 2rem;
}

.legal-page h3 {
  color: var(--brand-dark);
  margin-top: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 1rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
}

/* List Styling */
ul li {
  margin-bottom: 0.5rem;
}

strong {
  color: var(--brand-dark);
}

/* Link Styling */
a {
  color: var(--brand-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--brand-accent);
}

/* Blockquote/Emphasis Styling */
blockquote {
  border-left: 4px solid var(--brand-primary);
  background: var(--brand-light);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

/* Call-to-Action Grid - Responsive */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem 0;
}

@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Profile Cards Grid - Responsive */
.profile-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .profile-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
