/* ==========================================================
   EUROING — HOME (ABOUT US) PAGE STYLES
   ========================================================== */

body.home-page {
  font-family: "Roboto", sans-serif;
  background: #f4f4f4;
  color: #222;
  margin: 0;
  padding: 0;
}

.home-page main {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* ===== HERO SECTION ===== */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 100px 50px;
}

.hero-text {
  flex: 1 1 50%;
}

.hero-text h1 {
  font-family: "Play", sans-serif;
  font-size: 70px;
  font-weight: 800;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.hero-image {
  flex: 1 1 50%;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  object-fit: cover;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 80px 50px;
  background: #f8f9fa;
}

.about-image {
  flex: 1 1 45%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1 1 55%;
}

.about-text h2 {
  font-family: "Play", sans-serif;
  font-size: 40px;
  color: #11798c;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
  padding: 80px 50px;
  text-align: center;
}

.clients-section h2 {
  font-family: "Play", sans-serif;
  font-size: 50px;
  color: #222;
  margin-bottom: 50px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.client-card {
  width: 200px;
  text-align: center;
}

.client-card img {
  width: 100%;
  max-width: 130px;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.client-card:hover img {
  filter: grayscale(0);
}

.client-card h4 {
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-section,
  .about-section {
    flex-direction: column;
    padding: 60px 25px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .about-text h2 {
    font-size: 32px;
  }

  .clients-section {
    padding: 60px 25px;
  }
}
