.elementor-771 .elementor-element.elementor-element-d0177d9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-3bf1a56 */.remonty-flyer {
  font-family: 'Arial', 'Helvetica', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.flyer-header {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  padding: 30px 0;
  position: relative;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.helmet-icon {
  flex-shrink: 0;
}

.brand-text {
  flex: 1;
}

.brand-name {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
  color: #DC143C;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-number {
  color: #000;
}

.brand-domain {
  color: #DC143C;
}

.brand-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin: 5px 0 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Banner */
.main-banner {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-subtitle {
  font-size: 1.3rem;
  color: #FFD700;
  margin: 10px 0 0 0;
  font-weight: 300;
}

/* Gallery */
.gallery-section {
  padding: 40px 0;
  background: #f8f8f8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.gallery-grid-four {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #000 0%, #333 100%);
  padding: 40px 0;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Services & Contact */
.services-contact {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  padding: 50px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.services-list {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.services-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-items li {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
}

.contact-section {
  display: flex;
  gap: 30px;
  align-items: center;
}

.qr-code {
  flex-shrink: 0;
}

.qr-placeholder {
  animation: pulse 2s infinite;
}

.contact-info {
  flex: 1;
}

.contact-title {
  font-size: 2rem;
  font-weight: 900;
  color: #DC143C;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.phone-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: #000;
  margin: 0 0 10px 0;
}

.email, .website {
  font-size: 1.1rem;
  color: #000;
  margin: 5px 0;
  font-weight: 500;
}

/* Tools Animation */
.tools-illustration {
  margin-top: 40px;
  text-align: center;
}

.tools-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tool-item {
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.tool-item:hover {
  transform: scale(1.3) rotate(15deg);
}

.tool-item:nth-child(1) { animation-delay: 0s; }
.tool-item:nth-child(2) { animation-delay: 0.5s; }
.tool-item:nth-child(3) { animation-delay: 1s; }
.tool-item:nth-child(4) { animation-delay: 1.5s; }
.tool-item:nth-child(5) { animation-delay: 2s; }
.tool-item:nth-child(6) { animation-delay: 2.5s; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand-name {
    font-size: 2.5rem;
  }
  
  .brand-tagline {
    font-size: 1rem;
  }
  
  .banner-title,
  .cta-title {
    font-size: 1.8rem;
  }
  
  .banner-subtitle {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-section {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-section {
    flex-direction: column;
    text-align: center;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 2rem;
  }
  
  .banner-title,
  .cta-title {
    font-size: 1.5rem;
  }
  
  .contact-title {
    font-size: 1.5rem;
  }
  
  .phone-number {
    font-size: 1.4rem;
  }
  
  .gallery-grid-four {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */