/*
Theme Name: Gatisheel Loktantrik Party
Theme URI: https://gatisheel.party/
Author: Kantipur Infotech
Author URI: https://kantipurinfotech.com/
Description: Gatisheel Loktantrik Party
Tags: Gatisheel Loktantrik Party
Version: 1.0
Note: The CSS files are loaded from assets/css/ folder.
*/

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

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

body {
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* color variable */
:root {
  /*  Muted Yellow  */
  --yellow-950: #2c2814;
  --yellow-900: #4c4421;
  --yellow-800: #6a6030;
  --yellow-700: #968c54;
  --yellow-600: #b2a451;
  --yellow-500: #c5b86a;
  --yellow-400: #d1c48c;
  --yellow-300: #dbd1a4;
  --yellow-200: #e2d9bd;
  --yellow-100: #eee9d0;
  --yellow-50: #f8f6ef;

  /*  Primary Green  */
  --green-950: #0f1e1d;
  --green-900: #1e4a46;
  --green-800: #2b6862;
  --green-700: #558a85;
  --green-600: #6fb0a8;
  --green-500: #4db6ac;
  --green-400: #96d4cd;
  --green-300: #aee0dc;
  --green-200: #c0e9e6;
  --green-100: #d2edea;
  --green-50: #f1f9f8;
}

/* Scrollbar helper */

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Navigation bar */
.nav {
  background-color: var(--green-50);
}

/* Main nav link – text + arrow inside same pill */
.nav li a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--green-800);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-weight: 500;
  font-size: 14px;
}

/* Hover state: background = primary 100 */
.nav li a:hover {
  background-color: var(--green-100);
  color: var(--green-800);
}

/* Make sure icon respects text color */
.nav li a i {
  line-height: 1;
}

/* title */
/* desktop*/
.title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: var(--green-800);
}

/* Tablet */
@media (max-width: 1024px) {
  .title {
    font-size: 40px;
  }
}

/* Mobile  */
@media (max-width: 640px) {
  .title {
    font-size: 30px;
    line-height: 1.3;
  }
}

/* paragraph tag */
p {
  font-weight: 400;
  font-size: 16px;
  line-height: 170%;
  color: black;
}

.btn {
  background-color: var(--green-100);
  color: var(--green-500);
  font-weight: 500;
  line-height: 170%;
  font-size: 16px;
  border-radius: 4px;
  padding: 10px 12px 10px 12px;
}

.btn:hover {
  color: #2b6862;
}

.battery {
  width: 96px;
  height: 240px;
  opacity: 1;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  background-color: var(--green-800);
}

/* leadership page movement  */
.fc-card {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #f2f2f2;
  flex: 0 0 auto;
}
.fc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .fc-card {
    width: 200px;
    height: 200px;
  }
}

.content{
  color: #000000;        
  font-size: 16px;       
  line-height: 1.7;     
  letter-spacing: 0px;
}


