/* Basic styling for the site */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #171717;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header styles */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero section */
.hero {
  position: relative;
  color: white;
  padding: 5rem 0;
  text-align: center;
  background-image: url('/images/95571685_105556984480620_4827146836697415680_n.jpg?v=2');
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero-button {
  display: inline-block;
  background-color: white;
  color: #e36a23;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: 2px solid transparent;
}

.hero-button:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

/* About section */
.about {
  padding: 5rem 0;
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(227, 106, 35, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.about h2 {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
  position: relative;
}

.about h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e36a23;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

/* New styles for the redesigned about section */
.about-full-width {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-full-width h3 {
  color: #333;
  margin: 2.5rem 0 1.5rem;
  font-size: 1.75rem;
  position: relative;
  display: inline-block;
}

.about-full-width h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e36a23;
}

.about-full-width p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #4b5563;
}

.features-container {
  max-width: 1100px;
  margin: 3rem auto 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 3px solid transparent;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
  border-left: 3px solid #e36a23;
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1.25rem;
  color: #e36a23;
  background-color: rgba(227, 106, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-item span {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

/* Tagline banner */
.tagline-banner {
  background-color: #e36a23;
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tagline-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/pattern.png');
  background-size: 200px;
  opacity: 0.1;
  z-index: 0;
}

.tagline-banner .container {
  position: relative;
  z-index: 1;
}

.tagline-banner h2 {
  font-size: 2.25rem;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.4;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .tagline-banner h2 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-text p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.feature-box {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.feature-box h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.feature-list li svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #10b981;
  margin-right: 0.5rem;
}

/* Testimonials section */
.testimonials {
  padding: 4rem 0;
  background-color: #ffffff;
}

.testimonials h2 {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}

.testimonial-card {
  background-color: #f9fafb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
  color: #e36a23;
  display: flex;
  margin-bottom: 1rem;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #111827;
}

/* Footer styles */
footer {
  background-color: #1f2937;
  color: white;
  padding: 2rem 0;
}

footer h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

footer p {
  color: #9ca3af;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
  }
}

.footer-divider {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #374151;
  text-align: center;
  color: #9ca3af;
}

/* CTA Button styling */
.cta-button {
  display: inline-block;
  background-color: #e36a23;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #e36a23;
  font-size: 1.1rem;
  box-shadow: 0 4px 6px rgba(227, 106, 35, 0.25);
}

.cta-button:hover {
  background-color: transparent;
  color: #e36a23;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(227, 106, 35, 0.3);
}

/* Categories Section */
.categories {
  padding: 5rem 0;
  background-color: white;
}

.categories h2 {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
  position: relative;
}

.categories h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e36a23;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.category-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.category-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.category-card:hover .category-img {
  transform: scale(1.05);
}

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1.5rem 1.5rem 0.75rem;
  color: #333;
}

.category-link {
  display: inline-block;
  color: #e36a23;
  font-weight: 600;
  margin: 0 1.5rem 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
  position: relative;
}

.category-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e36a23;
  transition: width 0.3s ease;
}

.category-link:hover::after {
  width: 100%;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #f9fafb;
  position: relative;
}

.contact h2 {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
  position: relative;
}

.contact h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #e36a23;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #333;
  text-align: center;
}

.contact-info p {
  font-size: 1.1rem;
  color: #4b5563;
  text-align: center;
}

.contact-info > div {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.contact-info > div:hover {
  transform: translateY(-5px);
}

/* Styles for the full-width Viber section */
.viber-full-width {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin: 2rem auto 0;
  width: 100%;
  display: block;
}

.viber-full-width h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
}

.viber-full-width .contact-button {
  background-color: #665CAC;
  border: 2px solid #665CAC;
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  max-width: 250px;
  margin: 0 auto;
}

.viber-full-width .contact-button:hover {
  background-color: transparent;
  color: #665CAC;
}

.viber-full-width .contact-button svg {
  margin-right: 10px;
}

.buttons-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.buttons-container .contact-button,
.buttons-container .products-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

@media (min-width: 768px) {
  .buttons-container {
    max-width: 600px;
  }
  .buttons-container .contact-button,
  .buttons-container .products-button {
    width: 280px;
    max-width: 280px;
  }
}

.contact-button {
  background-color: #665CAC;
  border: 2px solid #665CAC;
  color: white;
}

.contact-button:hover {
  background-color: transparent;
  color: #665CAC;
}

.products-button {
  background-color: #e36a23;
  border: 2px solid #e36a23;
  color: white;
}

.products-button:hover {
  background-color: transparent;
  color: #e36a23;
}

.contact-button svg,
.products-button svg {
  margin-right: 10px;
}

@media (max-width: 640px) {
  .buttons-container {
    flex-direction: column;
  }
  
  .buttons-container .contact-button,
  .buttons-container .products-button {
    width: 100%;
  }
}

.viber-full-width:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info.viber-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info.viber-row .viber-full-width {
    width: 100%;
    max-width: none;
  }
}

/* Contact page styles */
.contact-page .page-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.contact-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(227, 106, 35, 0.1);
  color: #e36a23;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.contact-card-text {
  color: #6c757d;
  margin-bottom: 0.5rem;
  line-height: 1.6;
} 