* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #fff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("/fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* ====== NAVBAR ====== */
.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}

/* ====== LOGO ====== */
.site-logo {
  font-size: 40px;
  font-family: "Bebas Neue", sans-serif;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.site-logo:hover {
  transform: scale(1.05);
  color: orange;
}

/* ====== MENU ====== */
.nav-menu {
  display: flex;
  list-style: none;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
}

.nav-menu li {
  margin-left: 30px;
  position: relative;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* ====== ANIMATED UNDERLINE ====== */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: orange;
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: orange;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  padding: 80px 40px;
  text-align: center;
}

.pricing-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4.5rem;
  font-weight: normal;
  margin-bottom: 80px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pricing-title .orange-text {
  color: orange;
}

.pricing-plans {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 95%;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.pricing-plan {
  background: rgba(40, 40, 40, 0.9);
  border-radius: 20px;
  padding: 20px 30px;
  max-width: 350px;
  width: 100%;
  position: relative;
  border: 2px solid rgba(80, 80, 80, 0.5);
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255, 165, 0, 0.2);
  border-color: orange;
}

.pricing-plan.popular {
  background: orange;
}

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: capitalize;
}

.plan-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 56px;
  margin-bottom: 30px;
  text-align: left;
  line-height: 1;
  color: #fff;
}

.price .currency {
  font-size: 56px;
}

.price .period {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.choose-btn {
  background: orange;
  color: black;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 30px;
  width: 100%;
  transition: all 0.3s;
  text-transform: capitalize;
}

.pricing-plan.popular .choose-btn {
  background: #000;
  color: orange;
}

.choose-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.features li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: white;
  font-weight: bold;
}

.pricing-plan.popular .features li {
  color: #000;
}

.pricing-plan.popular .features li::before {
  color: #000;
}

.pricing-plan.popular .plan-name,
.pricing-plan.popular .price {
  color: #000;
}

.pricing-plan.popular .price .period {
  color: rgba(0, 0, 0, 0.7);
}

.widget-image {
  position: absolute;
  z-index: 10;
  top: 115%;
  max-width: 15%;
  height: auto;
  left: -5%;
}

.scribble-image {
  position: absolute;
  z-index: 10;
  top: 15%;
  max-width: 15%;
  height: auto;
  right: 0%;
}

@media (max-width: 768px) {
  .pricing-plans {
    flex-direction: column;
    align-items: center;
  }

  .pricing-plan {
    width: 100%;
    max-width: 350px;
    margin-bottom: 30px;
  }

  .pricing-title {
    font-size: 48px;
  }

  .main-content {
    padding: 60px 20px;
  }
}

/* Activity Section */
.activity-section {
  background-color: #0a0a0a;
  color: #fff;
  padding: 0px 30px;
  font-family: Arial, sans-serif;
}

.activity-section h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
}

.activity-section h2 span {
  color: orange;
}

.activity-box {
  font-family: "Gilroy", sans-serif;
  font-weight: 300;
  background-color: #1e1e1e;
  border-radius: 30px;
  padding: 15px 25px;
  text-align: center;
  width: 100%;
  margin: 0 auto 60px;
  color: #ccc;
  font-size: 15px;
  box-sizing: border-box;
}

/* Footer Section */
.site-footer {
  background-color: #0a0a0a;
  color: #fff;
  padding: 60px 30px 30px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: orange;
  flex: 1 1 200px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 50px;
}

.footer-column h4 {
  font-family: "Gilroy", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  margin-bottom: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.footer-column ul li:hover {
  color: orange;
  transform: translateX(5px);
}
/* Bottom Footer Bar */
.footer-bottom-bar {
  background-color: #1e1e1e;
  border-radius: 50px 50px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
  margin-left: -60px;
  margin-right: -60px;
  margin-bottom: -30px;
  width: calc(100% + 120px);
}

.footer-bottom-bar p {
  font-family: "Gilroy", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding: 10px;
  display: flex;
  align-items: center;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials img {
  width: 50px;
  height: 50px;
  padding: 8px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.footer-socials img:hover {
  transform: scale(1.1);
  border-color: orange;
  box-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
}
