/* font: Inter, fallback-font: Wix Madefor Display */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&family=Montserrat:wght@400;800&family=Inter:wght@400;700&family=Wix+Madefor+Display&display=swap");

:root {
  --font-title: "Montserrat", "Inter", sans-serif;
  --font-heading: "Montserrat", "Inter", sans-serif;
  --font-body: "Wix Madefor Display", "Inter", sans-serif;
  --fontSizes-xs: 0.75rem;
  --fontSizes-sm: 0.875rem;
  --fontSizes-md: 1rem;
  --fontSizes-lg: 1.125rem;
  --fontSizes-xl: 1.25rem;
  --fontSizes-2xl: 1.5rem;
  --fontSizes-4xl: 2.25rem;
  --fontSizes-3xl: 1.875rem;
  --fontSizes-5xl: 3rem;
  --fontSizes-6xl: 3.75rem;
  --fontSizes-7xl: 4.5rem;
  --fontSizes-8xl: 5.75rem;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  background-color: rgb(0, 0, 0);
  width: 2.5px;
  border-radius: 2.5px;
}
::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255);
}
*{
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
}
.indev-info{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  backdrop-filter: blur(2.5px);
  z-index: 999;
  background-color: rgb(45, 119, 255);
  color: white;
  line-height: 25px;
  font-size: var(--fontSizes-xs);
  text-align: center;
}
body {
  margin: 0;
  /* margin-top: 25px; */
  font-family: var(--font-body);
}
img, video {  
  pointer-events: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* ::::::::::::::::::::::::::::::::::::nav-bar::::::::::::::::::::::::::::::::::::::::::: */

.nav-bar {
  box-sizing: border-box;
  position: fixed;
  display: flex;
  height: 100px;
  width: 100%;
  background-color: transparent;
  color: white;
  padding: 0 60px;
  z-index: 9;
}
.nav-bar-blinds{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0% !important;
  background-color: rgb(0, 0, 0);
  transition: height 0.25s ease-in-out;
}
.nav-bar-blinds-on{
  height: 100% !important;
} 
.nav-bar-hamburger{
  display: none !important;
}
.nav-bar > div {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-bar-logo {
  width: fit-content;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.nav-bar-logo a {
  width: fit-content;
  height: 50%;
}
.nav-bar-logo img {
  min-height: 50px;
  width: auto;
  height: 100%;
}
.nav-bar-items {
  width: -webkit-fill-available;
  justify-content: right;
}
.nav-bar-items .item-link {
  font-size: var(--fontSizes-sm);
  margin: 0 0 0 40px;
}
.item-link a {
  position: relative;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.item-link a::before {
  content: '';
  background: white;
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: 0.23s ease-in-out;
}
a:hover::before {
  width: 100%;
}

/* ::::::::::::::::::::::::::::::::::::main-body::::::::::::::::::::::::::::::::::::::::::: */

.main-body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  color: white;
  background-color: #0b0e14; /* Dark background matching night theme */
  align-items: center;
}
.main-body video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.main-body .bg-poster {
  position: relative;
  width: 100%;
  max-width: 800px; /* Constrain on ultra-wide screens */
  height: auto;
  object-fit: contain;
  z-index: 0;
  opacity: 1; /* Fully visible */
  margin-bottom: 50px;
}
.main-body-objective {
  display: flex;
  width: 100%;
  flex-flow: column;
  padding: 120px 20px 40px 20px; /* Give room for navbar */
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.objective-title {
  font-family: var(--font-title);
  font-size: var(--fontSizes-8xl);
  margin: 0;
  font-weight: 800;
  color: #ffeb3b; /* Bright Yellow */
  text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
}
/* .objective-title::first-letter{
  color: #ff0000;
} */
.objective-subtitle {
  position: relative;
  font-size: var(--fontSizes-2xl);
  margin: 2.5px 0;
  font-weight: bold;
  color: #00e5ff; /* Vibrant Cyan */
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.8);
}
.objective-description {
  font-size: var(--fontSizes-lg);
  margin: 25px 0;
  color: #eeeeee;
  line-height: 1.5em;
  text-align: justify ;
}

.main-body-banner {
  justify-content: center;
  align-items: center;
}
.banner-image {
  height: 100%;
}
.banner-image img {
  height: 100%;
}

.section-divider{
  display: block;
  cursor: default;
  width: 100%;
  height: 100px;
  background-color: #0b0e14; /* Dark Navy */
  color: #e0e0e0;
  border-top: 2px solid #00e5ff; /* Cyan glowing border */
  border-bottom: 2px solid #ffeb3b; /* Yellow glowing border */
  font-size: var(--fontSizes-xl);
  line-height: 100px;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}
.section-divider span{
  padding: 0 25px;
    word-spacing: 2.5px;
  }
  .section-divider span > i{
    padding: 0 20px;
    font-size: var(--fontSizes-xl);
    color: #ffeb3b; /* Yellow Icons */
  }
  
  /* ::::::::::::::::::::::::::::::::::::events::::::::::::::::::::::::::::::::::::::::::: */
  
.events-container {
  width: 100%;
  height: fit-content;
  padding: 60px;
  color: white;
  background: linear-gradient(135deg, #0b0e14 0%, #1a233a 100%); /* Deep Navy Gradient */
  --events-container-height: 800px;
}
.events-container video {
  width: 100%;
  height: var(--events-container-height);
  position: absolute;
  object-fit: cover;
  margin-top: -90px;
  margin-left: -60px;
  z-index: 0;
}
.events-container div {
  position: relative;
  z-index: 1;
}
.events-title{
  position: relative;
  color: #eeeeee;
  font-size: var(--fontSizes-4xl);
  font-family: var(--font-heading);
  font-weight: bold;
}
.slider-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  height: 550px;
  margin: 50px auto;
  --slider-event-width: 90%;
}
.slider-container > div{
  height: 100%;
}
.slider-prev, .slider-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - var(--slider-event-width))/2);
}
.slider-prev i, .slider-next i{
  cursor: pointer;
  font-size: var(--fontSizes-3xl);
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: transparent;
  color: rgb(240, 240, 240);
  /* border: 1px solid rgb(240, 240, 240); */
}
.slider-prev i:hover, .slider-next i:hover{
  background-color: rgb(240, 240, 240);
  color: #212121;
  border: none;
}
.slider-view{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--slider-event-width);
  height: 100%;
}
.view-event-cards::-webkit-scrollbar {
  display: none;
}
.view-event-cards{
  position: relative;
  display: flex;
  width: calc(100% - 100px);
  height: 100%;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.event-card {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 25px 40px;
  flex-shrink: 0;
  scroll-snap-align: center;
  margin: 0 25px;
  backdrop-filter: blur(2px);
  color: #ffffff;
  border-radius: 25px;
}
.event-card-4{
  background: radial-gradient(
    circle at 30% 50%,
    #78398baa,
    #000000ee 40%
  );
}
.event-card-3{
  background: radial-gradient(
    circle at 30% 50%,
    #010c52aa,
    #000000ee 40%
  );
}
.event-card-2{
  background: radial-gradient(
    circle at 30% 60%,
    #00b2feaa,
    #000000ee 40%
  );
}
.event-card-1{
  background: radial-gradient(
    circle at 25% 50%,
    #1f21a8aa,
    #040411ee 40%
  );
}
.event-thumbnail{
  display: flex;
  flex-flow: column;
  max-width: 600px;
  height: 100%;
}
.event-details {
  position: relative;
  display: flex;
  flex-flow: column;
  width: -webkit-fill-available;
  height: 100%;
  padding: 25px 10px 25px 40px;
}
.event-details::-webkit-scrollbar {
  display: none;
}
.event-thumbnail img {
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  padding: 30px;
}
.event-details h3 {
  font-size: var(--fontSizes-4xl);
  font-weight: 700;
  margin: 0;
  margin-bottom: 25px;
}
.event-details p{
  margin: 0px;
  margin-bottom: 10px;
  font-size: var(--fontSizes-xl);
  font-weight: bold;
}
.event-details p:last-of-type{
  margin-bottom: 25px;
}
.event-details-desc p{
  font-size: var(--fontSizes-md);
  font-weight: normal;
  margin-bottom: 10px;
}
.event-details-desc p:last-of-type{
  margin: 0;
}
.hastags {
  cursor: pointer;
  font-size: var(--fontSizes-sm);
  padding: 2.5px 10px;
  margin-right: 2.5px;
  line-height: 2.1em;
  font-style: normal;
  border-radius: 50px;;
  border: 1px solid #ffffff;
}
.event-card .hastags:hover{
  background-color: #ffffff;
  color: #000000;
}
.event-btns{
  padding: 0;
  margin: 25px 0 0;
  z-index: 1;
}
.register-button {
  display: inline-block;
  padding: 0 25px;
  height: 50px;
  width: fit-content;
  line-height: 50px;
  font-size: var(--fontSizes-lg);
  text-decoration: none;
  border-radius: 25px;
  margin-right: 10px;
}
.events-container .register-button {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffeb3b 0%, #ff9800 100%); /* Yellow to Orange gradient */
  color: #000000; /* Dark text for contrast */
  border: none;
  box-shadow:
    0 0 14px rgba(255, 235, 59, 0.7),
    0 0 28px rgba(255, 152, 0, 0.7);
  text-transform: uppercase;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    filter 0.18s ease-out;
}
.events-container .register-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 18px rgba(255, 235, 59, 0.9),
    0 0 36px rgba(255, 152, 0, 0.9);
  filter: brightness(1.1);
}
.events-container .register-button:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 0 10px rgba(255, 235, 59, 0.6),
    0 0 20px rgba(255, 152, 0, 0.6);
  filter: brightness(0.95);
}
.register-closed{
  background-color: transparent !important;
  color: #ffffff !important;
  pointer-events: none !important;
}
.feedback-button{
  background-color: #ffffff !important;
  color: #1f22a8 !important;
}
.feedback-button i{
  padding-left: 10px;
}
.register-button i{
  padding-left: 10px;
}
.event-card-1 .feedback-button:hover{
  background-color: #1f22a8 !important;
  color: #ffffff !important;
}
.event-card-1 .register-button{
  background-color: #1f22a8;
  color: #ffffff;
  box-shadow: 0 10px 50px #1f22a89f;
}
.event-card-1 .register-button:hover {
  background-color: #ffffff;
  color: #1f22a8;
}
.event-card-4 .register-button{
  background-color: #be5bde;
  color: #ffffff;
  box-shadow: 0 10px 50px #be5bde9f;
}
.event-card-4 .register-button:hover {
  background-color: #ffffff;
  color: #000000;
}
.event-card-3 .register-button{
  background-color: #43a6ff;
  color: #ffffff;
  box-shadow: 0 10px 50px #43a6ff9f;
}
.event-card-3 .register-button:hover {
  background-color: #ffffff;
  color: #000000;
}
.event-card-2 .register-button{
  background-color: #00a5eb;
  color: #ffffff;
  left: calc(72%) !important;
  box-shadow: 0 10px 50px #00a5eb9f;
}
.event-card-2 .register-button:hover {
  background-color: #ffffff;
  color: #000000;
}
.event-card-2 .event-details{
  padding: 25px 40px 25px 0px;
}
.event-card-2 .event-details video {
  position: relative;
  object-fit: cover;
  object-position: center left;
  width: 72%;
  max-width: 700px;
  margin: 0;
  border-radius: 25px;
}

/* ::::::::::::::::::::::::::::::::::::faqs::::::::::::::::::::::::::::::::::::::::::: */

.faq-container {
  display: flex;
  flex-wrap: wrap;
  padding: 60px;
}
.faq-title{
  position: relative;
  width: 100%;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: var(--fontSizes-4xl);
  margin-bottom: 40px;
}
.faq-row {
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.faq-box {
  position: relative;
  cursor: default;
  min-height: 300px;
  height: fit-content;
  flex-basis: calc(50% - 15px);
  padding: 50px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}
.faq-box:hover .faq-box-backdrop{
  transform: scale(1.25);
}
.faq-box *{
  position: relative;
  z-index: 1;
}
.faq-box h3 {
  margin-top: 0;
  font-size: var(--fontSizes-2xl);
  word-spacing: 2.5px;
}
.faq-box h3 > i{
  font-size: var(--fontSizes-3xl);
  margin: 5px 5px 5px 0;
}
.faq-box p {
  margin-bottom: 0;
  font-size: var(--fontSizes-md);
  word-spacing: 2.5px;
  line-height: 1.5em;
  text-overflow: ellipsis;
}
.faq-box u{
  text-decoration: none;
  color: #ff0000;
}
.faq-box-backdrop{
  transition: 0.25s ease-in-out;
  position: absolute;
  bottom: -25%;
  right: -5%;
  z-index: 0;
}
.faq-box-backdrop i{
  font-size: 18em;
  color: #eaeaea;
}
/* .faq-row .faq-box:nth-of-type(1) .faq-box-backdrop i{
  color: #6e6e6e81;
} */

/* ::::::::::::::::::::::::::::::::::::carbon dao:::::::::::::::::::::::::::::::::::::: */

.carbon-neutral-dao {
  display: flex;
  min-height: 120vh;
  width: 100%;
  color: black;
  background-image: url("../res/backdrop/v986-bg-07.jpg");
  background-color: #f7f7f5;
  background-size: 60%;
  background-position: top center;
  background-repeat: no-repeat;
  }
  .carbon-neutral-dao > div{
    display: flex;
    width: 50%;
    flex-flow: column;
    padding: 60px;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
  }
  .carbon-dao-text h2 {
    position: relative;
    font-size: var(--fontSizes-4xl);
    font-family: var(--font-heading);
    margin: 0;
  }
  .carbon-dao-text p{
    font-size: var(--fontSizes-md);
    line-height: 1.5em;
  }
.carbon-dao-text .event-1{
  border-left: 5px solid #90ba89;
  height: fit-content;
  padding-left: 20px;
  margin: 25px 0;
  margin-left: 10px;
}
.carbon-dao-text .event-1 h3{
  font-size: var(--fontSizes-3xl);
  margin: 10px 0 0;
}
.carbon-dao-text .event-1 h3::before{
  content: '';
  position: absolute;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border:5px solid #75996f;
  background-color: #f7f7f5;
  left: calc(70px - 12.5px + 2.5px);
  margin-top: 5px;
}
.carbon-dao-text .event-1 h2{
  font-size: var(--fontSizes-lg);
  font-family: var(--font-body);
  /* font-weight: normal; */
  margin: 10px 0;
}
.carbon-dao-image {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.photo-stack {
  position: relative;
  display: flex;
	width:100%;
  height: 100%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.photo-stack::before{
  position: absolute;
  content: '';
  background-image: url("../res/images/logo/pin.png");
  background-size: cover;
  width: 40px;
  height: 40px;
  top: calc(12%);
  left: calc(50%);
  z-index: 999 !important;
  filter: drop-shadow(2px 2px 2.5px rgba(0,0,0,0.5));
}
.photo {
  display: flex;
	position: absolute;
}
.img-landscape{
  width: 100%;
}
.img-portrait{
  width: 60%;
}
.photo img {
  width: 100%;
  margin: auto;
  border: 8px solid #fefefe;
	border-radius: 2.5px;
	box-shadow: 0 0 2.5px rgba(0,50,50,0.45);
	background: #FFF;
  pointer-events: all;
}

/* ::::::::::::::::::::::::::::::::::::footer::::::::::::::::::::::::::::::::::::::::::: */

.footer {
  display: block;
  height: fit-content;
  width: 100%;
  color: rgb(250, 222, 222);
}
.footer-socials {
  cursor: default;
  display: flex;
  height: 80px;
  width: 100%;
  background-color: #1a1a1a;
  /* background: linear-gradient(109.6deg, rgb(12, 12, 12) 32.4%, #382e2f 98.8%); */
  color: white;
  align-items: center;
  justify-content: center;
}
.social-item {
  margin: 0 25px;
}
.social-item > a {
  position: relative;
  font-size: var(--fontSizes-sm);
  color: white;
  text-decoration: none;
}
.social-item > a::before {
  position: absolute;
  content: '';
  background: white;
  bottom: -5px;
  width: 0;
  height: 2.5px;
  transition: 0.25s ease-in-out;
}
.social-item a:hover::before {
  width: 100%
}
.social-item > i {
  padding: 0 8px;
  font-size: var(--fontSizes-xl);
  vertical-align:bottom;
}
.footer-body {
  display: flex;
  height: fit-content;
  width: 100%;
  background: black;
  overflow: hidden;
}
.footer-body > div {
  display: flex;
  width: 50%;
  flex-flow: column;
  padding: 50px 60px;
}
.foot-notes .org{
  font-size: var(--fontSizes-4xl);
  font-family: var(--font-title);
  font-weight: bold;
  color: #f7fafc;
  margin: 0 0 7.5px 0;
}
.foot-notes .org img{
  width: 100px;
}
.foot-notes .org-desc{
  font-size: var(--fontSizes-xl);
  color: #e5e5e5;
  margin: 2.5px 0;
}
.foot-notes .org-contact{
  font-size: var(--fontSizes-sm);
  color: #e5e5e5;
  margin: 5px 0;
}
.foot-notes .org-rights{
  font-size: var(--fontSizes-sm);
  margin: 50px 0 0;
  color: #cacaca;
}
.foot-notes .org-rights i{
  padding: 0 2.5px;
}
.foot-newsletter-title{
  font-size: var(--fontSizes-3xl);
  font-weight: bold;
  margin: 0;
  color: #f7fafc;
}
.foot-newsletter-desc{
  font-size: var(--fontSizes-md);
  color: #9e9e9e;
}
.foot-newsletter-form{
  display: flex;
  margin: 20px 0 0;
}
.foot-newsletter-form input{
  width: calc(100% - 60px);
  border: none;
  outline: none !important;
  padding: 20px 20px;
  font-size: var(--fontSizes-md);
  background-color: #eaeaea;
}
.foot-newsletter-form button{
  background-color: #212121;
  color: #eaeaea;
  border: none;
  height: 100%;
  width: 60px;
  cursor: pointer;
  font-size: var(--fontSizes-sm);
}
.foot-newsletter-form button:hover{
  background-color: #424242;
}
.foot-newsletter-msg{
  color: #ff7777;
}
.foot-newsletter-msg i{
  font-size: var(--fontSizes-xl);
  padding: 0 10px 0 0;
}

.highlight-text-dark::before {
  position: absolute;
  content: '';
  background: white;
  bottom: -10px;
  width: 0;
  height: 5px;
  transition: 0.25s ease-in-out;
}
.highlight-text-light::before {
  position: absolute;
  content: '';
  background: black;
  bottom: -10px;
  width: 0;
  height: 5px;
  transition: 0.25s ease-in-out;
}
.highlight-text-dark:hover::before {
  width: 100px;
}
.highlight-text-light:hover::before {
  width: 100px;
}

/* Our Partners Section */
.partners-container {
  background: linear-gradient(to bottom, #1a233a, #0b0e14);
  color: white;
  padding: 40px 60px 60px;
}
.partners-title{
  position: relative;
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: var(--fontSizes-4xl);
  margin-bottom: 60px;
}
.partner-list {
  list-style-type: none;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.partner-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 0;
  padding: 24px 20px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #1f2937 0%, #0f0f0f 100%);
  overflow: hidden;
}
.partner-info:hover .partner-logo {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.partner-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  margin: 0 0 16px 0;
  border: 4px solid white;
  border-radius: 16px;
  object-fit: contain;
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  background-color: #0f0f0f;
}
.partner-details {
  flex-grow: 1;
  z-index: 1;
}
.partner-description {
  margin-bottom: 10px;
}
.partner-description strong{
  display: block;
  font-size: var(--fontSizes-3xl);
  margin-bottom: 5px;
}
.chapter-lead {
  position: relative;
  font-size: var(--fontSizes-md);
  margin-bottom: 5px;
}
.chapter-lead > a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.chapter-lead > a::before {
  position: absolute;
  content: '';
  background: white;
  bottom: -5px;
  width: 0;
  height: 2px;
  transition: 0.25s ease-in-out;
}
.chapter-lead a:hover::before {
  width: 100%
}
.social-media {
  display: flex;
  margin-top: 10px;
}
.social-icon {
  width: 24px;
  margin-right: 10px;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
}

.modal-content {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)); /* Gradient black */
    margin: 15% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 80%; 
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

