/* ================= GLOBAL ================= */
:root{
  --saffron:#ff9933;
  --gold:#d4af37;
  --text:#2c2c2c;
}

body{
  margin:0;
  font-family:'Inter', sans-serif;
  color:var(--text);
}

/* ================= HERO ================= */
.shahothon_hero_section{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 20px;
  background:url("../img/DSCF7633.jpg") center/cover no-repeat;
}

.shahothon_hero_overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(255, 255, 255, 0.11),rgba(255,255,255,.9));
}

.shahothon_hero_content{
  position:relative;
  max-width:1100px;
  text-align:center;
  z-index:2;
}

.shahothon_title{
  font-family:'Playfair Display', serif;
  font-size:clamp(2.2rem,5vw,3.8rem);
  color:var(--saffron);
}

.shahothon_title span{
  color:#333;
}

.shahothon_tagline{
  margin:18px auto 35px;
  font-size:1.2rem;
  color:#8a5b12;
  font-weight:500;
}

/* ================= INFO CARDS ================= */
.shahothon_event_info{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:22px;
}

.shahothon_info_card{
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(0,0,0,0.08);
  padding:26px 20px;
  border-radius:18px;
  transition:transform .3s ease;
}

.shahothon_info_card:hover{
  transform:translateY(-6px);
}

.shahothon_icon{
  width:48px;
  height:48px;
  margin:0 auto 14px;
  color:var(--saffron);
}

.shahothon_icon svg{
  width:100%;
  height:100%;
}

.shahothon_info_card span{
  display:block;
  font-size:.9rem;
  color:#777;
  margin-bottom:6px;
}

.shahothon_info_card strong{
  font-size:1.05rem;
  color:#333;
}

/* ================= ABOUT ================= */
.shahothon_about_light{
  background:linear-gradient(to bottom,#fffaf2,#f6f1e7);
  padding:120px 20px;
}

.shahothon_about_container{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:80px;
  align-items:center;
}

.shahothon_label{
  display:inline-block;
  padding:8px 18px;
  background:rgba(255,153,51,0.15);
  color:#c56b12;
  border-radius:50px;
  font-size:.85rem;
  margin-bottom:20px;
  letter-spacing:.6px;
}

.shahothon_about_text h2{
  font-family:'Playfair Display', serif;
  font-size:3rem;
  margin-bottom:25px;
}

.shahothon_about_text h2 span{
  color:var(--saffron);
}

.shahothon_about_text p{
  font-size:1rem;
  line-height:1.9;
  margin-bottom:18px;
}

.shahothon_about_text .intro{
  font-size:1.15rem;
}

.shahothon_tribute{
  margin-top:30px;
  padding:28px;
  background:#fff;
  border-left:5px solid var(--saffron);
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.shahothon_tribute h4{
  color:var(--saffron);
  margin-bottom:15px;
}

.shahothon_tribute li{
  margin-bottom:10px;
}

.shahothon_promise{
  margin-top:40px;
  font-size:1.25rem;
  font-style:italic;
  color:#8a5b12;
  border-left:4px solid var(--gold);
  padding-left:18px;
}

/* ================= IMAGES ================= */
.shahothon_about_visual{
  display:grid;
  gap:25px;
}

.shahothon_about_visual img{
  width:100%;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.shahothon_about_visual img:nth-child(2){
  transform:translateX(40px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:1000px){
  .shahothon_about_container{
    grid-template-columns:1fr;
    gap:60px;
  }
  .shahothon_about_visual img:nth-child(2){
    transform:none;
  }
}

@media(max-width:600px){
  .shahothon_about_text h2{
    font-size:2.2rem;
  }
  .shahothon_promise{
    font-size:1.1rem;
  }
}
/* ================= DOCTRINE SECTION ================= */

.shahothon_doctrine_section{
  background: linear-gradient(
    to bottom,
    #ffffff,
    #f7f2e8
  );
  padding: 120px 20px;
}

.shahothon_doctrine_container{
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* TEXT */
.shahothon_doctrine_text h2{
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #2b2b2b;
}

.shahothon_doctrine_text h2 span{
  color: #ff9933;
}

.shahothon_doctrine_text p{
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #444;
}

.shahothon_doctrine_text .intro{
  font-size: 1.15rem;
  color: #2f2f2f;
}

/* DOCTRINE CARDS */
.shahothon_doctrine_points{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  margin: 35px 0;
}

.doctrine_card{
  background: #ffffff;
  padding: 26px 22px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-top: 4px solid #ff9933;
}

.doctrine_card span{
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff9933;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.doctrine_card p{
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin: 0;
}

/* CLOSING LINE */
.shahothon_doctrine_text .closing{
  margin-top: 30px;
  font-size: 1.1rem;
  color: #2c2c2c;
  border-left: 4px solid #d4af37;
  padding-left: 18px;
}

/* VISUAL */
.shahothon_doctrine_visual img{
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px){
  .shahothon_doctrine_container{
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 600px){
  .shahothon_doctrine_text h2{
    font-size: 2.2rem;
  }

  .shahothon_doctrine_text .closing{
    font-size: 1rem;
  }
}
/* ================= BG IMAGE CARDS ================= */

.shahothon_bg_cards_section{
  background: linear-gradient(to bottom, #ffffff, #f7f2e8);
  padding: 120px 20px;
}

.shahothon_bg_cards_container{
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD BASE */
.shahothon_bg_card{
  position: relative;
  height: 280px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}

.shahothon_bg_card:hover{
  transform: translateY(-10px);
}

/* LIGHT OVERLAY */
.shahothon_bg_card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.95),
    rgba(255,255,255,0.6),
    rgba(255,255,255,0.2)
  );
  z-index: 1;
}

/* CONTENT */
.shahothon_bg_card .content{
  position: relative;
  z-index: 2;
  padding: 26px;
}

.shahothon_bg_card h4{
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.shahothon_bg_card p{
  font-size: .95rem;
  color: #555;
  line-height: 1.6;
}

/* ================= BACKGROUND IMAGES ================= */

.security{
  background-image: url("../img/DSCF7633.jpg");
}

.youth{
  background-image: url("../img/DSCF7640.jpg");
}

.fitness{
  background-image: url("../img/DSCF7651.jpg");
}

.patriotism{
  background-image: url("../img/DSCF7742.jpg");
}

.leadership{
  background-image: url("../img/DSCF7913.jpg");
}

/* ================= RESPONSIVE ================= */

@media(max-width:600px){
  .shahothon_bg_card{
    height: 240px;
  }
}
/* ================= INDIA IS UNITED ================= */

.shahothon_unity_section{
  position: relative;
  padding: 140px 20px;
  background: url("../img/DSCF7930.jpg")
    center / cover no-repeat;
}

/* LIGHT OVERLAY */
.shahothon_unity_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.95)
  );
}

/* CONTAINER */
.shahothon_unity_container{
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.shahothon_unity_heading{
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.3;
  color: #2c2c2c;
  margin-bottom: 30px;
}

.shahothon_unity_heading span{
  color: #ff9933;
}

/* INTRO */
.shahothon_unity_intro{
  max-width: 850px;
  margin: 0 auto 70px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
}

/* POINTS GRID */
.shahothon_unity_points{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.unity_card{
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform .35s ease;
}

.unity_card:hover{
  transform: translateY(-8px);
}

.unity_card h4{
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #ff9933;
}

.unity_card p{
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .shahothon_unity_heading{
    font-size: 2.4rem;
  }
}

@media (max-width: 600px){
  .shahothon_unity_heading{
    font-size: 2rem;
  }

  .shahothon_unity_intro{
    font-size: 1rem;
  }

  .unity_card{
    text-align: center;
  }
}
/* ================= OUR TRIBUTE ================= */

.shahothon_tribute_section{
  position: relative;
  padding: 160px 20px;
  background: url("../img/DSCF7640.jpg")
    center / cover no-repeat;
}

/* LIGHT OVERLAY */
.shahothon_tribute_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.88),
    rgba(255,255,255,0.97)
  );
}

/* CONTAINER */
.shahothon_tribute_container{
  position: relative;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.shahothon_tribute_heading{
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.3;
  margin: 25px 0;
  color: #2c2c2c;
}

.shahothon_tribute_heading span{
  color: #ff9933;
}

/* INTRO */
.shahothon_tribute_intro{
  max-width: 850px;
  margin: 0 auto 70px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: #444;
}

/* POINTS */
.shahothon_tribute_points{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 28px;
  margin-bottom: 80px;
}

.tribute_point{
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

.tribute_point p{
  font-size: 1rem;
  font-weight: 500;
  color: #2c2c2c;
}

/* MESSAGE */
.shahothon_tribute_message{
  font-size: 1.35rem;
  font-style: italic;
  color: #8a5b12;
  border-top: 2px solid rgba(255,153,51,0.3);
  padding-top: 35px;
}

.shahothon_tribute_message span{
  display: block;
  margin-top: 10px;
  color: #2c2c2c;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .shahothon_tribute_heading{
    font-size: 2.4rem;
  }
}

@media (max-width: 600px){
  .shahothon_tribute_heading{
    font-size: 2rem;
  }

  .shahothon_tribute_intro{
    font-size: 1rem;
  }

  .shahothon_tribute_message{
    font-size: 1.1rem;
  }
}
/* ================= WHAT SHAHOTHON REPRESENTS ================= */

.shahothon_represents_section{
  position: relative;
  padding: 150px 20px;
  background: url("../img/DSCF7930.jpg")
    center / cover no-repeat;
}

/* LIGHT OVERLAY */
.shahothon_represents_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.88),
    rgba(255,255,255,0.96)
  );
}

/* CONTAINER */
.shahothon_represents_container{
  position: relative;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.shahothon_represents_heading{
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.3;
  margin: 30px 0 80px;
  color: #2c2c2c;
}

.shahothon_represents_heading span{
  color: #ff9933;
}

/* GRID */
.shahothon_represents_grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 32px;
}

/* CARD */
.represents_card{
  background: #ffffff;
  padding: 42px 32px;
  border-radius: 26px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.1);
  transition: transform .35s ease;
}

.represents_card:hover{
  transform: translateY(-10px);
}

.represents_card h4{
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #ff9933;
}

.represents_card p{
  font-size: .95rem;
  line-height: 1.7;
  color: #555;
}

/* STATEMENT */
.shahothon_represents_statement{
  margin-top: 90px;
  font-size: 1.35rem;
  font-style: italic;
  color: #8a5b12;
  border-top: 2px solid rgba(255,153,51,0.35);
  padding-top: 40px;
}

.shahothon_represents_statement span{
  display: block;
  margin-top: 10px;
  color: #2c2c2c;
  font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px){
  .shahothon_represents_heading{
    font-size: 2.4rem;
  }
}

@media (max-width: 600px){
  .shahothon_represents_heading{
    font-size: 2rem;
  }

  .shahothon_represents_statement{
    font-size: 1.1rem;
  }
}
/* ================= RUN CATEGORIES ================= */

.shahothon_run_categories{
  position: relative;
  padding: 150px 20px;
  background: url("https://images.unsplash.com/photo-1599058917212-d750089bc07c?auto=format&fit=crop&w=1600&q=80")
    center / cover no-repeat;
}

/* LIGHT OVERLAY */
.shahothon_run_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.97)
  );
}

/* CONTAINER */
.shahothon_run_container{
  position: relative;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* HEADING */
.shahothon_run_heading{
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 30px 0 70px;
  color: #2c2c2c;
}

.shahothon_run_heading span{
  color: #ff9933;
}

/* TABLE */
.shahothon_run_table{
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 25px 55px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* ROW */
.run_row{
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 26px 30px;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
  color: #444;
}

.run_row:last-child{
  border-bottom: none;
}

/* HEADER ROW */
.run_row.header{
  background: linear-gradient(
    to right,
    rgba(255,153,51,0.15),
    rgba(255,153,51,0.05)
  );
  font-weight: 600;
  color: #2c2c2c;
}

/* DISTANCE */
.run_row .distance{
  font-weight: 600;
  color: #ff9933;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 700px){
  .run_row{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .run_row.header{
    display: none;
  }

  .run_row .distance{
    font-size: 1.2rem;
  }
}

@media (max-width: 600px){
  .shahothon_run_heading{
    font-size: 2.1rem;
  }
}
