:root {
  --bg: #000;
  --fg: #fff;
  --card-bg: #000;
  --border: #222;
  --accent: #3b82f6;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #000;
}
a {
  text-decoration: none;
  color: inherit;
}

.btn {
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ff2b06;
  color: #fff;
}

.btn-primary:hover {
  background: #e02505;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

.section-max-width {
  max-width: 1200px;
  margin: 0 auto;
}
.countdown-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff2b06, #e02505);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  z-index: 10000;
}
@media (max-width: 480px) {
  .countdown-banner {
    flex-direction: column;
    font-size: 14px;
    padding: 10px;
  }
}

/* Countdown timer box */
.timer {
  display: flex;
  gap: 8px;
}

.time-box {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Header */
nav {
  background: #000;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 48px auto 0;
  position: relative;
}

.logo {
  font-size: 1.25rem;
  width: 200px;
  height: auto;
  z-index: 1001;
}

.logo img {
  width: 100%;
  height: auto;
}

.nav--links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1rem;
  list-style: none;
  font-weight: 500;
}
.nav--links a {
  transition: all 0.3s ease;
}
.nav--links a:hover {
  transition: 0.3s ease;
  color: #e02505;
}

.nav-toggle {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  display: none;
  z-index: 1001;
}
.nav-toggle .ri-close-line {
  display: none;
}

@media (max-width: 600px) {
  nav{
    margin-top: 80px;
  }
  .logo {
    width: 150px;
  }
  .nav-toggle {
    display: block;
  }
  .nav-toggle.active .ri-close-line {
    display: block;
  }
  .nav-toggle.active .ri-menu-line {
    display: none;
  }
  /* Style the mobile menu */
  .nav--links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    font-size: 1.25rem;

    /* Hide it by default */
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    z-index: 1000;
  }
  .nav--links.show-menu {
    transform: translateY(0);
  }
}
/* Hero Section */
.hero {
  background: #000;
  margin: 64px 0;
  padding: 4rem 2rem;
}
@media (max-width: 600px) {
  .hero {
    margin: 0 0 12px;
    padding: 2rem;
  }
}
.hero .wrapper {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  width: 50%;
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ff2b06;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  color: #ff2b06;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ccc;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  background: linear-gradient(135deg, #ff2b06 0%, #ff2b06 100%);
  border-radius: 8px;
  width: 50%;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.hero-image-inner {
  background: #000;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .hero .wrapper {
    flex-flow: row wrap;
  }
  .hero-content {
    width: 100%;
  }
  .hero-image {
    width: 100%;
  }
}

/* Marquee */
.marquee {
  background: #fff;
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

.marquee-item {
  display: inline-block;
  padding: 0 3rem;
  font-size: 0.875rem;
  color: #000;
}

.marquee-item .ted {
  color: #ff2b06;
  font-weight: 700;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Description Section */
.description {
  background: #000;
  padding: 4rem 2rem;
  text-align: center;
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
}

.description p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.description .btn {
  margin-top: 1rem;
}

/* About Section */
.about {
  background: #ffb3b3;
  padding: 4rem 2rem;
  color: #000;
}

.about-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: start;
}

.about-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #ff2b06;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #ff2b06;
  width: fit-content;
}

.about-logo h2 {
  font-size: 2.5rem;
  font-weight: 300;
}

.about-logo h2 .ted {
  color: #ff2b06;
  font-weight: 700;
}

.about-logo h2 .x {
  color: #000;
  font-weight: 700;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* Stats */
.stats {
  background: #fff;
  padding: 3rem 2rem;
  margin: 0 auto;
  max-width: 1000px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #ddd;
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: #ff2b06;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.stat-item h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}

/* Event Photo */
.event-photo {
  background: #fff;
  padding: 1rem;
  margin: 0 auto;
  max-width: 1000px;
}

.event-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* Swiper carousel Styles */
.swiper {
  width: 100%;
  max-width: 1000px;
  height: 400px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  color: #e71d38 !important;
}

.swiper-pagination-bullet {
  background: #bbb;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: #e71d38 !important;
}

/* Responsive */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-header {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
  }

  .stat-item:not(:last-child)::after {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.speakers {
  margin: 64px 0;
  padding: 0 24px;
}
.speakers h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 2.5rem;
}
.speakers .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.speakers .speaker {
  width: 30%;
  margin-bottom: 32px;
}
.speaker img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.speaker h4 {
  font-size: 20px;
}
@media (max-width: 1000px) {
  .speakers .speaker {
    width: 40%;
  }
}
@media (max-width: 600px) {
  .speakers .speaker img {
    height: 400px;
  }
  .speakers .speaker {
    width: 70%;
  }
}
@media (max-width: 480px) {
  .speakers .speaker img {
    height: 400px;
  }
  .speakers .speaker {
    width: 100%;
  }
}

/* .speakers .speaker {
  flex: 1;
  width: calc(33.3% - 24px);
} */

/* PRICING SECTION STYLING */
.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Header Section */
.pricing .header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing .header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing .header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Event Details */
.pricing .event-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.pricing .detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #555;
}

.pricing .detail-item i {
  font-size: 20px;
  color: #e74c3c;
  width: 24px;
  text-align: center;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.pricing-card {
  background-color: #1a1a1a;
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: #e74c3c;
  box-shadow: 0 0 30px rgba(231, 76, 60, 0.2);
}

.card-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-price {
  color: #e74c3c;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.card-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.card-features li {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-features li:before {
  content: "●";
  color: #e74c3c;
  font-size: 8px;
  flex-shrink: 0;
}

.card-button {
  border: 2px solid #e74c3c;
  background-color: transparent;
  color: #e74c3c;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.card-button:hover {
  background-color: #e74c3c;
  color: #fff;
}
.pricing-card a {
  display: contents;
  /* width: 100%; */
}
.card-button i {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .header h1 {
    font-size: 36px;
  }

  .event-details {
    gap: 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 30px 20px;
  }
}

/* FAQ Section */
.faq {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  padding: 24px;
  margin: 48px auto 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 1.2rem 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg);
  transition: background 0.2s ease;
}

.faq-question {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hide the answer by default with a smooth transition */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

/* Style the icon's transition */
.faq-question i {
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

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

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.open {
  padding: 1rem 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Footer */
footer {
  background: #000;
  padding: 4rem 2rem;
  text-align: center;
}

/* Footer styles */
.inner--footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.inner--footer ul {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.inner--footer a {
  text-decoration: none;
  color: #fff;
  font-size: 1.75rem;
}

@media (max-width: 700px) {
  .inner--footer {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .inner--footer ul {
    justify-content: center;
  }
}
