@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@400;700&display=swap');

:root {
  --primary-color: #6A5ACD;
  --secondary-color: #8B5FBF;
  --accent-color: #FFE66D;
  --text-color: #2C3E50;
  --background-color: #F7F9FC;
  --error-color: #E74C3C;
  --success-color: #2ECC71;
  --warning-color: #F1C40F;
  --border-radius: 8px;
  --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans Hebrew', sans-serif;
}

body {
  background-color: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* App Icon Section - Common across all pages */
.app-icon-section {
  text-align: center;
  margin: 200px 0;
  padding: 100px 0;
}

.app-icon {
  width: 300px;
  height: 300px;
  border-radius: 30px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Flutter App Container */
#flutter_app {
  display: none;
}

/* Unified button styles */
.cta-button,
.support-button,
.create-button,
.navigation a {
  display: inline-block;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  margin: 10px;
  transition: var(--transition);
  font-size: 1.2em;
  font-weight: bold;
  background: var(--primary-color);
}

.cta-button:hover,
.support-button:hover,
.navigation a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.create-button {
  background: var(--secondary-color);
}

.create-button:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Common text styles */
.centered-text {
  text-align: center;
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 30px;
  font-style: italic;
}

.centered-margin {
  text-align: center;
  margin-top: 40px;
}

.centered-margin-small {
  text-align: center;
  margin-top: 30px;
}

/* Link styles */
.white-link {
  color: white;
  text-decoration: underline;
}

.white-link:hover {
  color: var(--accent-color);
}

/* Container and layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header and navigation */
header {
  background: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo a {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.language-selector {
  display: flex;
  gap: 1rem;
}

.language-selector a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.language-selector a:hover {
  color: var(--primary-color);
}

/* Hero sections */
.hero,
.hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1,
.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .subtitle,
.hero-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Sections */
section {
  padding: 4rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-color);
}

/* Unified grid layouts */
.styles-grid,
.features-grid,
.examples-grid,
.faq-category,
.contact-methods,
.pricing-grid,
.benefits-grid,
.theme-grid,
.selection-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

/* Style grid specific */
.style-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

/* Unified card styles */
.style-card,
.feature-card,
.example-card,
.faq-item,
.contact-method,
.pricing-card,
.benefit-card,
.step,
.theme-card,
.story-card,
.feature-item,
.guide-item {
  background: var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  margin: 15px 0;
  transition: transform 0.3s ease;
}

.style-card:hover,
.feature-card:hover,
.example-card:hover,
.faq-item:hover,
.contact-method:hover,
.pricing-card:hover,
.benefit-card:hover,
.step:hover,
.theme-card:hover,
.story-card:hover,
.feature-item:hover,
.guide-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.style-icon,
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* Lists */
.style-card ul {
  list-style: none;
  margin-top: 1rem;
}

.style-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.style-card li:last-child {
  border-bottom: none;
}













.related-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.related-links a {
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.related-links a:hover {
  background: var(--primary-color);
  color: white;
}

/* Footer */
footer {
  background: var(--text-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Common section styles - unified for all pages */
.faq-section,
.contact-section,
.pricing-section,
.how-it-works-section,
.process-steps,
.technology-section,
.comparison-section,
.transparent-pricing,
.examples-section,
.success-stories,
.research-block,
.seo-content,
.pricing,
.theme-card,
.story-card,
.step,
.benefit-card,
.cta-section,
.related-pages,
.free-credit,
.contact-info,
.support-info {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}



/* Text styles */
h1 {
  color: #ffffff;
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
}

h2, h3, h4, .price, .price-small {
  color: var(--secondary-color);
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: bold;
}

h2 {
  font-size: 2em;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.5em;
  margin-top: 30px;
}

h4 {
  font-size: 1.2em;
  cursor: pointer;
  transition: color 0.3s ease;
}

.price {
  font-size: 2.5em;
  margin: 20px 0;
}

.price-small {
  font-size: 1.5em;
}

h4:hover {
  color: var(--primary-color);
}

/* Special elements */
.highlight {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  text-align: center;
}





/* Pricing specific */
.pricing-card.featured {
  border: 3px solid var(--secondary-color);
  transform: scale(1.05);
}





/* Lists */
ul, ol, .feature-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

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

.feature-list li {
  margin: 10px 0;
  padding: 5px 0;
}

.feature-list li:before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
  margin-right: 10px;
}

li {
  margin-bottom: 8px;
}

strong {
  color: var(--secondary-color);
}

/* Responsive design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    flex-direction: column;
    text-align: center;
  }
  
  .language-selector {
    justify-content: center;
  }
  
  .hero h1,
  .hero-section h2 {
    font-size: 2rem;
  }
  
  .styles-grid,
  .features-grid,
  .examples-grid,
  .selection-guide,
  .faq-category,
  .contact-methods,
  .pricing-grid,
  .benefits-grid,
  .theme-grid,
  .style-grid {
    grid-template-columns: 1fr;
  }
  
  .related-links {
    flex-direction: column;
    align-items: center;
  }
  
  .container {
    padding: 20px;
  }
  
  .navigation a {
    display: block;
    margin: 10px 0;
  }
}

/* RTL support for Hebrew */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

[dir="rtl"] .language-selector {
  flex-direction: row-reverse;
}

[dir="rtl"] ul, [dir="rtl"] ol {
  margin-right: 20px;
  margin-left: 0;
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

.hidden {
  display: none;
} 