/*
Theme Name: MAB Services
Theme URI: https://example.com
Author: Mohamed Ait Brahim
Description: Custom WordPress theme for social media services.
Version: 1.0
Text Domain: mab-services
*/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f8fb;
  color: #161616;
  direction: rtl;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1150px, 92%);
  margin: auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  padding: 18px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 24px;
}

.hero {
  padding: 90px 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  margin: 0 0 20px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 19px;
  line-height: 1.8;
  color: #666;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-weight: bold;
}

.services {
  padding: 40px 0 90px;
}

.section-title {
  text-align: center;
  margin-bottom: 35px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #ececec;
}

.service-card h3 {
  margin-top: 0;
}

.price {
  font-size: 26px;
  font-weight: 800;
  margin: 18px 0;
}

@media (max-width: 800px) {
  .nav {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 0;
  }
}