/* ============================
Font
============================ */
@font-face {
  font-family: 'IphoneMedium';
  src: url('Font/iPhone/iphone-fonst/Ios 15 Medium.ttf') format('truetype');
}

@font-face {
  font-family: 'Lalezar';
  src: url('Font/Lalezar/Digi Lalezar Plus.ttf') format('truetype');
}

/* ============================
Body Style
============================ */
body {
  margin: 0;
  background: rgba(255,255,255,0.06);
  font-family: 'IphoneMedium', sans-serif;
  font-size: 1rem;
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
}

/* ============================
Header
============================ */
.header {
  background: #000;
  color: #fff;
  padding: 12px 0;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.header-container {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header-links {
  display: flex;
  gap: clamp(40px, 9vw, 150px);
}
.header-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: color .3s, transform .3s;
}
.header-links a:hover {
  color: #bdbdbd;
  transform: scale(1.05);
}
.logo-container {
  display: flex;
  justify-content: center;
  flex-grow: 0.5;
}
.logo {
  max-width: 120px;
  transition: transform .3s;
  cursor: pointer;
}
.logo:hover {
  transform: scale(1.4);
}

/* ------------------------------------------------------------------
hamburger panel
------------------------------------------------------------------ */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #222;
  color: #fff;
  transform: translateX(100%);
  transition: transform .3s ease-in-out;
  z-index: 1000;
  overflow-y: auto;
  padding-top: 60px;
}
.mobile-nav a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #444;
  font-size: 1.1rem;
}
.mobile-nav a:hover { background: #333; }
.mobile-menu.open { transform: translateX(0); }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
  z-index: 999;
}
.overlay.show { opacity: 1; visibility: visible; }

body.no-scroll { overflow: hidden; }
/* ============================
  Coaches
============================ */
.coaches-section{
  background: radial-gradient(1200px 600px at 50% -10%, rgba(255,255,255,0.06), transparent 55%),
              linear-gradient(180deg, #0f0f12 0%, #141418 55%, #0f0f12 100%);
  padding: 80px 20px;
  color: #fff;
}

.coaches-inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.coaches-title{
  text-align: center;
  font-size: clamp(32px, 3.2vw, 38px);
  font-weight: 900;
  letter-spacing: 0.2px;
  margin-bottom: 45px;
  opacity: 0.95;
}
.highlight {
  color: red;
  font-weight: bold;
}
.List-title{
  font-size: clamp(26px, 3.2vw, 30px);
  opacity: 0.95;
  letter-spacing: 0.2px;
  display: inline-block;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.425);
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
}
.coaches-list{
  display: grid;
  gap: 18px;
}

.coach-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  box-shadow:
    0 18px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.03) inset;

  transform: translateY(10px);
}

.coach-media{
  padding: 26px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.head-circle{
  width: 260px;
  height: 260px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 30% 25%, rgba(165, 0, 0, 0.95), rgba(128, 0, 0, 0.404) 35%, rgba(92, 0, 0, 0.18) 62%, rgba(120,120,120,0.08) 100%);

  border: 1px solid rgba(255,255,255,0.35);
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(255,255,255,0.06),
    0 0 0 8px rgba(255,255,255,0.04) inset;
}
.coach-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  transform: translateY(-14px) scale(1.02);
}
.coach-media{
  overflow: hidden;
}

.coach-media img{
  width: 100%;
  height: auto;
  display: block;

  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms ease;

  will-change: transform, opacity;
}

.coach-card.is-visible .coach-media img{
  opacity: 1;
  transform: translateY(0);
}

.coach-content{
  padding: 26px 28px 26px 16px;
  text-align: right;
}

.coach-name{
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  margin-bottom: 14px;
  opacity: 0.98;
}

.coach-bullets{
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  gap: 10px;
}

.coach-bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.9;
}

.coach-bullets li::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 8px;
  flex: 0 0 auto;

  background: radial-gradient(circle at 30% 30%, #2a2a2a, #1b1b1b 35%, rgba(0, 0, 0, 0.35) 70%, rgba(90,90,90,0.15) 100%);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.20);
}

.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 860px){
  .coach-card{
    grid-template-columns: 1fr;
  }

  .coach-content{
    padding: 18px 18px 22px;
  }

  .coach-media{
    padding: 18px 14px 8px;
  }

  .head-circle{
    width: 220px;
    height: 220px;
  }

  .coach-photo{
    transform: translateY(-16px) scale(1.03);
    object-position: 50% 10%;
  }
}

/* ============================
  Footer
============================ */
.footer {
  background: #0a0a0a;
  color: #eee;
  padding: 50px;
  font-family: 'IphoneMedium', sans-serif;
  border-top: 4px solid #0c0c0c;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  font-family: 'Lalezar', cursive;
  color: #fff;
  margin-bottom: 15px;
}

.footer-section p {
  margin-bottom: 10px;
}

.location-link{
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
}
.location-link:hover{
  color: red;
}
.contact-link {
  color: #ddd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: red;
}
.social-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-top: 20px;
  background: #181818;
  padding: 3px;
  border-radius: 12px;
  width: 100%;
  max-width: 100%;
  border: 1px solid #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, filter 0.3s;
  filter: grayscale(100%);
}

.social-link:hover img {
  transform: translateY(-5px) scale(1.1);
  filter: grayscale(0%);
}

.designer-link {
  color: #ff5252;
  text-decoration: none;
  font-weight: bold;
}

/* موبایل */
@media (max-width: 900px) {
  .footer-section {
    max-width: 100%;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .social-box {
    width: 100%;
    justify-content: center;
  }
}

/* ============================
Responsive
============================ */
@media (max-width: 900px) {
  .icon-item {
    max-width: 30%;
  }
  .icon-item {
    max-width: 45%;
  }
  .icon-img {
    width: 50px;
    height: 50px;
  }
  .icon-text {
    font-size: 13px;
  }
  .hamburger-btn {
     display: block; 
  }
  .header-links { 
    display: none;
  }
}
@media (max-width: 400px) {
  .icon-item {
    max-width: 100%;
  }
}
