/* ============================================================
   pages/home.css — Home page specific styles
   ============================================================ */

/* ---- Hero Section ---- */
.hero{
    position:relative;
    min-height:560px;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
    text-align:center;
    padding:var(--space-20) var(--space-6);
}

.hero__video{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
    z-index:0;
    opacity:0;
    transition:opacity .9s ease;
}

.hero__video--active{
    opacity:1;
}

.hero__overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(255,255,255,.2),
        rgba(255,255,255,.2)
    );

    z-index:1;
}
.btn-outline-blue,.btn-blue{
  color:black;
}

.hero__content{
    position:relative;
    z-index:2;
    max-width:680px;
    margin:0 auto;
}

.hero__logo{
    width:378px;
    height:310px;
    margin:0 auto var(--space-6);
}

.hero__logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 7vw, var(--text-6xl));
  font-weight: 900;
  text-transform: uppercase;
  color: black;
  line-height: 0.95;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--color-yellow);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: red;
  margin-bottom: var(--space-8);
  font-weight: 800;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Home Main Grid ---- */
.home-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

/* Feature Card (large image card) */
.feature-card {
  position: relative;
  height: 460px;
  overflow: hidden;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1560272564-c83b66b1ad12?w=800&q=80') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6);
}

.feature-card__tag {
  display: inline-block;
  background-color: var(--color-blue);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: var(--space-3);
  width: fit-content;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.05;
}

/* Elite Stats Panel */
.stats-panel {
  background-color: var(--color-white);
  border: 1.5px solid var(--color-grey-200);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  height: 460px;
}

.stats-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats-panel__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stats-panel__desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-grey-500);
  line-height: 1.6;
}

.stats-panel__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  flex: 1;
}

.stat-item {}

.stat-item__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: var(--space-2);
}

.stat-item__pct {
  color: var(--color-red);
  font-weight: 700;
}

.progress-track {
  width: 100%;
  height: 4px;
  background-color: var(--color-grey-200);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--color-blue);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-grey-200);
  padding-top: var(--space-4);
}

.stats-panel__link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: gap var(--transition-fast);
}
.stats-panel__link:hover { gap: var(--space-3); }

.stats-panel__arrow {
  font-size: var(--text-base);
}

/* ---- News + Shop Row ---- */
.home-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
}

/* News Card */
.news-card {
  border: 1.5px solid var(--color-grey-200);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: border-color var(--transition-base);
}
.news-card:hover { border-color: var(--color-black); }

.news-card__tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
}

.news-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--color-black);
}

.news-card__time {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-grey-400);
  margin-top: auto;
}

/* Shop Card */
.shop-card {
  background-color: var(--color-blue);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  overflow: hidden;
}

.shop-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.shop-card__tag {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.shop-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.1;
  flex: 1;
}

.shop-card__btn {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: var(--color-white);
  color: var(--color-blue);
  padding: var(--space-2) var(--space-5);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}
.shop-card__btn:hover {
  background-color: var(--color-yellow);
  color: var(--color-black);
}
/* ============================================================
   pages/home.css — Section Responsive Media Queries
   ============================================================ */

/* ---- Tablet: ≤ 900px ---- */
@media (max-width: 900px) {

  /* Hero */
  .hero {
    padding: var(--space-16) var(--space-5);
    min-height: 500px;
  }
  .hero__logo {
    width: 280px;
    height: 220px;
  }

  /* Feature card */
  .feature-card {
    height: 340px;
  }
  .feature-card__title {
    font-size: var(--text-xl);
  }

  /* Stats panel */
  .stats-panel {
    height: auto;
    min-height: 280px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-4);
    padding: var(--space-5);
  }
  .stats-panel__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-4);
  }
  .stat-item {
    flex: 1 1 120px;
  }

  /* News card */
  .news-card {
    padding: var(--space-4);
  }

  /* Shop card */
  .shop-card {
    padding: var(--space-4);
  }
}

/* ---- Small Tablet / Large Phone: ≤ 768px ---- */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    padding: var(--space-12) var(--space-4);
    min-height: 460px;
  }
  .hero__logo {
    width: 220px;
    height: 180px;
    margin-bottom: var(--space-4);
  }
  .hero__title {
    font-size: clamp(var(--text-3xl), 9vw, var(--text-5xl));
  }
  .hero__subtitle {
    font-size: var(--text-sm);
    max-width: 360px;
  }
  .hero__actions {
    gap: var(--space-3);
  }

  /* Feature card */
  .feature-card {
    height: 280px;
    padding: var(--space-4);
  }
  .feature-card__title {
    font-size: var(--text-xl);
  }

  /* Stats panel reset to vertical */
  .stats-panel {
    flex-direction: column;
    height: auto;
    min-height: auto;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  .stats-panel__stats {
    flex-direction: column;
  }
  .stat-item {
    flex: none;
    width: 100%;
  }

  /* Home grid section padding */
  .home-grid {
    padding: var(--space-3) 0;
  }
  .home-bottom-grid {
    padding-bottom: var(--space-3);
  }

  /* Shop card title */
  .shop-card__title {
    font-size: var(--text-lg);
  }
}

/* ---- Mobile: ≤ 600px ---- */
@media (max-width: 600px) {

  /* Hero */
  .hero {
    padding: var(--space-10) var(--space-4);
    min-height: 420px;
  }
  .hero__logo {
    width: 170px;
    height: 140px;
  }
  .hero__title {
    font-size: clamp(var(--text-2xl), 10vw, var(--text-4xl));
    margin-bottom: var(--space-4);
  }
  .hero__subtitle {
    font-size: var(--text-xs);
    margin-bottom: var(--space-5);
    max-width: 300px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }
  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Feature card */
  .feature-card {
    height: 240px;
    padding: var(--space-4);
  }
  .feature-card__title {
    font-size: var(--text-lg);
  }

  /* Stats panel */
  .stats-panel {
    padding: var(--space-4);
    gap: var(--space-3);
  }
  .stats-panel__title {
    font-size: var(--text-base);
  }

  /* News card */
  .news-card {
    padding: var(--space-3);
  }
  .news-card__title {
    font-size: var(--text-lg);
  }

  /* Shop card */
  .shop-card {
    padding: var(--space-4);
  }
  .shop-card__title {
    font-size: var(--text-base);
  }
}

/* ---- Small Phone: ≤ 480px ---- */
@media (max-width: 480px) {

  /* Hero */
  .hero {
    padding: var(--space-8) var(--space-3);
    min-height: 380px;
  }
  .hero__logo {
    width: 140px;
    height: 110px;
  }
  .hero__title {
    font-size: clamp(1.75rem, 11vw, var(--text-3xl));
  }
  .hero__subtitle {
    display: none;
  }
  .hero__actions .btn {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-xs);
  }

  /* Feature card */
  .feature-card {
    height: 200px;
  }
  .feature-card__tag {
    font-size: 10px;
    padding: 3px 8px;
  }
  .feature-card__title {
    font-size: var(--text-base);
  }

  /* Stats panel */
  .stats-panel {
    padding: var(--space-3);
    gap: var(--space-3);
  }
  .stats-panel__footer {
    flex-direction: column;
    gap: var(--space-2);
    align-items: flex-start;
  }
}

/* ==========================================================
   FAQ SECTION
========================================================== */

.faq-section{
    padding:30px 0 160px 0px;
    background:#fff;
}

.faq-header{
    text-align:center;
    margin-bottom:70px;
}

.faq-header h2{
    font-family:var(--font-heading);
    font-size:40px;
    font-weight:900;

    text-transform:uppercase;
    letter-spacing:-0.03em;
    color:var(--color-red);
    margin-bottom:18px;
}

.faq-header p{
    max-width:720px;
    margin:0 auto;
    font-family:var(--font-body);
    font-size:1.05rem;
    line-height:1.8;
    color:#6b7280;
}

/* ==========================================================
   FAQ CONTAINER
========================================================== */

.faq{
    max-width:1000px;
    margin:0 auto;
}

/* ==========================================================
   FAQ ITEM
========================================================== */

.faq-item{
    border-top:1px solid #e8e8e8;
    transition:.35s ease;
}

.faq-item:last-child{
    border-bottom:1px solid #e8e8e8;
}

/* ==========================================================
   QUESTION
========================================================== */

.faq-question{
    width:100%;
    border:none;
    background:none;
    outline:none;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 0;

    cursor:pointer;

    font-family:var(--font-heading);
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    text-align:left;

    color:#111;

    transition:.3s;
}

.faq-question:hover{
    color:#ff5b2e;
}

.faq-item.active .faq-question{
    color:#ff5b2e;
}

/* ==========================================================
   ICON
========================================================== */

.faq-icon{
    width:32px;
    height:32px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:1.15rem;
    color:#555;

    transition:.35s ease;
}

.faq-item.active .faq-icon{
    transform:rotate(90deg);
    color:#ff5b2e;
}

/* ==========================================================
   ANSWER
========================================================== */

.faq-answer{
    max-height:0;
    overflow:hidden;

    transition:
        max-height .45s ease,
        padding .35s ease;
}

.faq-answer p{
    font-family:var(--font-body);
    font-size:1rem;
    line-height:1.9;
    color:#6b7280;

    padding:0 0 32px;

    max-width:920px;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

/* ==========================================================
   HOVER EFFECT
========================================================== */

.faq-item:hover{
    border-color:#d7d7d7;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:992px){

    .faq-section{
        padding:90px 0;
    }

    .faq-header{
        margin-bottom:50px;
    }

    .faq-header h2{
        font-size:2.5rem;
    }

    .faq-question{
        font-size:1.3rem;
        padding:26px 0;
    }

    .faq-answer p{
        font-size:.98rem;
        line-height:1.8;
    }

}

@media (max-width:768px){

    .faq-section{
        padding:70px 20px;
    }

    .faq-header h2{
        font-size:2rem;
    }

    .faq-header p{
        font-size:.95rem;
    }

    .faq-question{
        font-size:1.08rem;
        padding:22px 0;
    }

    .faq-answer p{
        font-size:.95rem;
        padding-bottom:24px;
    }

    .faq-icon{
        font-size:1rem;
    }

}

@media (max-width:480px){

    .faq-question{
        font-size:1rem;
        line-height:1.5;
    }

    .faq-answer p{
        font-size:.9rem;
    }

}

/* ==========================================
   Academy Section
========================================== */

.academy-section{
    padding: 30px 0;
    background: #f8f8f8;
    margin-top: 40px;
}

.academy-section .container{
    width: min(95%, 1700px);
    max-width: 1700px;
    margin: auto;
}

/* ==========================================
   Layout
========================================== */

.academy-grid{
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 45px;
    align-items: stretch;
}

/* ==========================================
   Left Image
========================================== */

.academy-image{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: 500px;
}

.academy-image img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .6s ease;
}

.academy-image:hover img{
    transform: scale(1.05);
}

/* White Fade */

.academy-image::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;

    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,.12) 20%,
        rgba(255,255,255,.30) 45%,
        rgba(255,255,255,.65) 75%,
        #fff 100%
    );

    pointer-events: none;
    z-index: 2;
}

/* ==========================================
   Overlay
========================================== */

.academy-overlay{
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 3;
}

.academy-tag{
    display: inline-block;
    padding: 8px 28px;
    background: #0F62FE;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.academy-overlay h2{
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #111;
}

/* ==========================================
   Right Content
========================================== */

.academy-content{
    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #cbcbcb;
    border-top: 8px solid #0F62FE;

    padding: 24px;
    text-align: justify;
}

.academy-title{
    font-family: var(--font-heading);
    font-size: 2.3rem;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: red;
    margin-bottom: 22px;
}

.academy-content p{
    font-family: var(--font-body);
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.8;
    color: #222;
    margin-bottom: 16px;
    max-width: 100%;
}

/* ==========================================
   Large Screens
========================================== */

@media (min-width:1600px){

    .academy-grid{
        grid-template-columns: 2fr 1fr;
        gap: 60px;
    }

    .academy-image{
        min-height: 560px;
    }

}

/* ==========================================
   Tablet
========================================== */

@media (max-width:992px){

    .academy-section{
        padding: 70px 0;
    }

    .academy-section .container{
        width: 92%;
    }

    .academy-grid{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .academy-image{
        min-height: 420px;
    }

    .academy-overlay{
        left: 25px;
        bottom: 25px;
    }

    .academy-overlay h2{
        font-size: 1.8rem;
    }

    .academy-title{
        font-size: 2rem;
    }

}

/* ==========================================
   Mobile
========================================== */

@media (max-width:768px){

    .academy-section{
        padding: 60px 0;
    }

    .academy-grid{
        gap: 25px;
    }

    .academy-image{
        min-height: 320px;
    }

    .academy-overlay{
        left: 20px;
        bottom: 20px;
    }

    .academy-tag{
        padding: 6px 18px;
        font-size: .75rem;
    }

    .academy-overlay h2{
        font-size: 1.5rem;
    }

    .academy-content{
        padding: 20px;
    }

    .academy-title{
        font-size: 1.8rem;
    }

    .academy-content p{
        font-size: .95rem;
        line-height: 1.7;
    }

}/* ==========================================================
   LATEST NEWS
========================================================== */

.latest-news{
    padding:90px 0;
    background:#f7f7f7;
}

/* ==========================================================
   CONTAINER
========================================================== */

.latest-news .container{
    width:95%;
    max-width:1400px;
    margin:0 auto;
}

/* ==========================================================
   HEADER
========================================================== */

.section-header{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:8px 22px;
    background:#0F62FE;
    color:#fff;
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    border-radius:50px;
    margin-bottom:18px;
}

.section-header h2{
    font-family:var(--font-heading);
    font-size:2.8rem;
    color:#111;
    margin-bottom:18px;
}

.section-header p{
    color:#666;
    line-height:1.8;
}

/* ==========================================================
   FLEX LAYOUT
========================================================== */

.latest-news__layout{

    display:flex;

    align-items:flex-start;

    gap:45px;

}

/* ==========================================================
   VIDEO
========================================================== */

.latest-news__video{

    flex:0 0 45%;

    position:sticky;

    top:120px;

    border-radius:22px;

    overflow:hidden;

    background:#000;

    box-shadow:0 18px 45px rgba(0,0,0,.15);

}

.latest-news__video video{

    width:100%;
    /* height:350px; */
    display:block;

}

/* ==========================================================
   ARTICLE
========================================================== */

.latest-news__article{

  
    background: #cbcbcb;

  
    border-top:8px solid #0F62FE;
  border-top-left-radius:12px;
  border-top-right-radius:12px;
    

    padding:45px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.latest-news__article:hover{

    transform:translateY(-5px);

}

/* ==========================================================
   TOP INFO
========================================================== */

.article-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:28px;

}

.news-date{

    background:#eef4ff;

    color:#0F62FE;

    padding:8px 18px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:700;

}

.news-category{

    background:#f5c400;

    color:#111;

    padding:8px 18px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:700;

}

/* ==========================================================
   TITLE
========================================================== */

.latest-news__article h3{

    font-family:var(--font-heading);

    font-size:25px;

    line-height:1.2;

    text-transform:uppercase;

    color:#111;

    margin-bottom:28px;

}

/* ==========================================================
   TEXT
========================================================== */

.latest-news__article p{

    color:#555;
    font-size: 16px;

    line-height:1.5;

    margin-bottom:22px;

    text-align:justify;

}

/* ==========================================================
   HIGHLIGHTS
========================================================== */

.news-highlights{

    display:flex;
  font-size: 16px;
    flex-direction:column;

    gap:5px;

    margin:35px 0;

}

.highlight{

    padding:8px;

    background:#fff;

    border-left:5px solid #f5c400;
    font-weight: 600;
    border-radius:10px;
    color:#333;

}

/* ==========================================================
   FOOTER
========================================================== */

.article-footer{

    margin-top:40px;

}

.article-footer .btn{

    display:inline-flex;

}

/* ==========================================================
   TABLET
========================================================== */

@media(max-width:1200px){

.latest-news__layout{

flex-direction:column;

}

.latest-news__video{

position:relative;

top:0;

width:100%;

max-width:700px;

margin:0 auto;

}

.latest-news__article{

width:100%;

padding:35px;

}

}

/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:768px){

.latest-news{

padding:70px 0;

}

.section-header{

margin-bottom:40px;

}

.section-header h2{

font-size:2rem;

}

.latest-news__article{

padding:25px;

}

.latest-news__article h3{

font-size:1.6rem;

}

.latest-news__article p{

text-align:left;

line-height:1.8;

}

.article-top{

justify-content:flex-start;

}

}

/* ==========================================================
   SMALL MOBILE
========================================================== */

@media(max-width:480px){

.latest-news{

padding:50px 0;

}

.section-header h2{

font-size:1.6rem;

}

.latest-news__article{

padding:20px;

}

.latest-news__article h3{

font-size:1.3rem;

}

.news-date,
.news-category{

font-size:.75rem;

padding:6px 14px;

}

.highlight{

padding:14px;

}

}
