/*
Theme Name: GeneratePress Child
Theme URI: https://example.com
Description: Child theme pentru GeneratePress
Author: Andrei Mozara
Template: generatepress
Version: 1.0
*/

/* CSS personalizat */
/* --- SETĂRI GLOBALE --- */
.reparatii-console-wrapper {
  font-family: 'Plus Jakarta Sans', 'Inter Tight', sans-serif;
  color: #333;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.reparatii-console-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.reparatii-console-wrapper h1, 
.reparatii-console-wrapper h2, 
.reparatii-console-wrapper h3 {
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}
.rc-subtitle {
  color: #555;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}
.rc-btn {
  display: inline-block;
  background-color: #32373c;
  color: #fff !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #32373c;
  text-align: center;
}
.rc-btn:hover {
  background-color: #555;
  border-color: #555;
}
.rc-btn-outline {
  background-color: transparent;
  color: #32373c !important;
}
.rc-btn-outline:hover {
  background-color: #32373c;
  color: #fff !important;
}
.rc-btn-large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* --- HEADER --- */
.rc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}
.rc-logo img {
  max-height: 60px;
}
.rc-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.rc-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}
.rc-header-buttons {
  display: flex;
  gap: 10px;
}

/* --- HERO SECTION --- */
.rc-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}
.rc-hero-content {
  flex: 1;
}
.rc-hero-content h1 {
  font-size: 2.8em;
}
.rc-hero-image {
  flex: 1;
}

/* --- BRANDS SECTION --- */
.rc-brands {
  text-align: center;
  padding: 40px 0;
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 60px;
}
.rc-brands-logos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.rc-brands-logos img {
  height: 40px;
  object-fit: contain;
}

/* --- SYMPTOMS & BENEFITS (Two columns) --- */
.rc-symptoms, .rc-benefits {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}
.rc-symptoms-image, .rc-benefits-image {
  flex: 1;
}
.rc-symptoms-content, .rc-benefits-content {
  flex: 1;
}
.rc-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.rc-check-list li {
  margin-bottom: 10px;
  font-weight: 500;
}

/* --- SERVICES GRID --- */
.rc-services {
  padding: 60px 0;
}
.rc-services-header {
  text-align: center;
  margin-bottom: 40px;
}
.rc-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
.rc-service-card {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}
.rc-service-card:hover {
  transform: translateY(-5px);
}
.rc-center-btn {
  text-align: center;
}

/* --- FAQ ACCORDION --- */
.rc-faq {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}
.rc-faq-header {
  text-align: center;
}
.rc-faq-accordion details {
  background: #fff;
  border: 1px solid #d5d8dc;
  margin-bottom: 10px;
  border-radius: 5px;
}
.rc-faq-accordion summary {
  padding: 15px 20px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  list-style: none;
  position: relative;
}
.rc-faq-accordion summary::-webkit-details-marker {
  display: none;
}
.rc-faq-accordion summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 1.5em;
  line-height: 1;
}
.rc-faq-accordion details[open] summary::after {
  content: '-';
}
.faq-content {
  padding: 15px 20px;
  border-top: 1px solid #d5d8dc;
}

/* --- STICKY CTA FOOTER --- */
.rc-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 15px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

/* --- RESPONSIVE / MOBILE --- */
@media (max-width: 768px) {
  .rc-header {
    flex-direction: column;
    text-align: center;
  }
  .rc-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .rc-hero, .rc-symptoms, .rc-benefits {
    flex-direction: column;
    text-align: center;
  }
  .rc-symptoms-image {
    order: -1;
  }
  .rc-check-list li {
    text-align: left;
  }
  .rc-hero-content h1 {
    font-size: 2em;
  }
  .rc-sticky-cta .rc-btn {
    display: block;
    width: 100%;
  }
}