/*
Theme Name: VitalMan Child
Theme URI: https://www.vitalman.cz
Description: Flatsome child theme for VitalMan.cz
Author: VitalMan
Author URI: https://www.vitalman.cz
Template: flatsome
Version: 1.0.0
Text Domain: vitalman-child
*/

/* Custom styles for VitalMan */

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

h1, h2, h3, h4 {
  font-weight: 700;
}

/* Hero Section */
.home-hero h1 {
  font-weight: 800;
  letter-spacing: -1.5px;
}

/* Product Flip Styling */
.product-flip {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-flip:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Buttons */
.button.primary {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Trust badges section */
.trust-badge-icon {
  font-size: 1.6rem;
}

/* Ingredient cards */
.ingredient-card {
  background: #f9faf9;
  border-radius: 16px;
  padding: 25px;
  border-left: 4px solid #1a4a2e;
  transition: transform 0.2s ease;
}
.ingredient-card:hover {
  transform: translateX(4px);
}

/* Timeline cards */
.timeline-card {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Testimonial cards */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
}

/* Price display */
.price {
  color: #1a4a2e;
  font-weight: 700;
}

/* Section transitions */
.section {
  overflow: hidden;
}

/* Mobile optimizations */
@media (max-width: 549px) {
  .home-hero h1 {
    font-size: 1.8rem !important;
    letter-spacing: -0.5px;
  }
  .timeline-card {
    padding: 20px 15px;
  }
}
