* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 91vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 span {
  background-image: linear-gradient(
    90deg,
    rgb(255, 137, 4) 0%,
    rgb(255, 100, 103) 50%,
    rgb(255, 105, 0) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  margin: 20px 0;
  font-size: 24px;
  opacity: 0.9;
}

.hero-info {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-item {
  font-size: 16px;
}

/* SECOND SECTION */
.club-section {
  padding: 80px 20px;
  text-align: center;
  background: #f4f4f4;
}

.club-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.club-section p {
  font-size: 16px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 90vh;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-info {
    flex-direction: column;
    gap: 15px;
  }
}
* SECTION */ .clubs {
  padding: 80px 20px;
  text-align: center;
}
.clubs {
  margin-top: 4%;
  margin-bottom: 4%;
}
.container {
  margin: auto;
}

.clubs h2 {
  font-size: 42px;
  font-weight: 700;
}

.clubs img {
  width: 112px;
  height: 112px;
  border-radius: 15px;
}

.subtitle {
  margin-top: 10px;
  color: #666;
  margin-bottom: 60px;
}

/* CARDS GRID */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD STYLE */

.card:hover {
  transform: translateY(-8px);
}

.card h3 {
  margin: 25px 0 15px;
  font-size: 27px;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}
p,
.sub-desciption-slide {
  font-family: system-ui;
}

/* LOGO */
.logo {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* CARD VARIANTS */
.light {
  background: #ece7e1;
}

.city {
  background: #ff7a59;
  color: white;
}

.dark-blue {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
}

.unique {
  background: black;
  color: gold;
}

.dark-red {
  background: linear-gradient(135deg, #3b0a0a, #0f172a);
  color: white;
}

.ufc {
  background: black;
  color: red;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-radius: 15px;
  text-decoration: none;
  min-width: 220px; /* important for spacing */
}

/* Orange style */

/* Arrow icon */
.arrow {
  width: 18px;
  height: 18px;
  position: relative;
}

.arrow::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-top: 2px solid white;
  transform: rotate(45deg);
  right: 0;
  top: 4px;
}

.orange {
  background: linear-gradient(
    135deg,
    rgb(240, 104, 78) 0%,
    rgb(255, 140, 110) 50%,
    rgb(240, 104, 78) 100%
  );
  color: white;
}

.gold {
  background: linear-gradient(
    135deg,
    rgb(229, 206, 159) 0%,
    rgb(212, 184, 135) 50%,
    rgb(201, 169, 97) 100%
  );
  color: #111;
}

.btn.gold:hover {
  color: #111;
}
.btn.orange:hover {
  color: white;
}
.btn.red:hover {
  color: white;
}

.btn.gold,
.btn.orange,
.btn.red {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn.gold:hover,
.btn.orange:hover,
.btn.red:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.red {
  background: linear-gradient(
    135deg,
    rgb(205, 20, 33) 0%,
    rgb(160, 15, 26) 50%,
    rgb(139, 0, 0) 100%
  );
  color: white;
}

.btn:hover {
  opacity: 0.85;
}

/* FOOTER */
footer {
  background: #0b0f19;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .clubs h2 {
    font-size: 30px;
  }
}

.cards {
  display: flex;
  gap: 35px;
  align-items: stretch; /* يخليهم نفس الطول */
}

.card {
  flex: 1;
  display: flex;
  flex-direction: column; /* مهم بزاف */
  padding: 20px;
  border-radius: 12px;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;
  border: none;
  transition: 0.3s ease;
}
.card:hover {
  box-shadow:
    rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.card .btn {
  margin-top: auto; /* كيهبط الزر لتحت */
}
@media (max-width: 768px) {
  .cards {
    flex-direction: column;
  }
}
