@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;
  font-family: "Poppins", sans-serif;

  font-display: swap;
  font-style: normal;
}

h3 {
  font-weight: 500;
}
body {
  /* background: radial-gradient(circle at left, #1a1a1a 0%, #0b0b0b 60%); */
}

:root {
  --bg-main: #05060a;
  --bg-card: rgba(255, 255, 255, 0.06);
  --border-glass: rgba(255, 255, 255, 0.15);
  --text-main: #f5f7fa;
  --text-muted: #a1a1aa;
  --accent: #6cf2ff;
  --accent-2: #7c7cff;
}

.hero_section {
  min-height: 100vh;
  padding: 3rem 0;
  background: radial-gradient(circle at top, #0b1020, #05060a, #000066);
  color: #f5f7fa;

  padding-top: 0;
}

.hero_container {
  width: 85rem;
  max-width: 92%;
  margin: auto;
}

/* NAV */
.hero_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;

  padding: 2rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  color: #f59e0b;
  cursor: pointer;
}

.logo img {
  width: 5rem;
  cursor: pointer;
}

.hero_nav nav a {
  margin: 0 1.5rem;
  text-decoration: none;
  color: #a1a1aa;
  font-size: 0.95rem;
}

.hero_nav nav a:hover {
  color: #f5f7fa;
}

.nav_btn {
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  border: 0.1rem solid #f59e0b;
  background: transparent;
  color: #f59e0b;
  cursor: pointer;
}

/* CONTENT */
.hero_content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero_tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background: rgba(108, 242, 255, 0.1);
  color: #f59e0b;
  font-size: 0.75rem;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}

.hero_text h2 {
  font-size: 2.7rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero_text h2 span {
  background: linear-gradient(90deg, #f59e0b, #7c7cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero_text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 36rem;
}

.hero_actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
}

.primary_btn {
  padding: 0.9rem 2.2rem;
  border-radius: 3rem;
  border: none;
  background: linear-gradient(135deg, #f59e0b, #7c7cff);
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

.secondary_btn {
  padding: 0.9rem 2.2rem;
  border-radius: 3rem;
  background: transparent;
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
  color: #f5f7fa;
  cursor: pointer;
}

/* VISUAL */
.hero_visual {
  position: relative;
  height: 28rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 1rem;
}

.glow_orb {
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, #f59e0b, transparent 70%);
  border-radius: 50%;
  position: absolute;
  bottom: 2rem;
  right: 0rem;
  filter: blur(3rem);
  z-index: 21;
}

.hero_img {
  width: 25vw;
  height: 50vh;
  z-index: 22;
  object-fit: cover;
  border-radius: 50%;

  position: sticky;
  right: 1rem;
}

.info_card {
  /* position: absolute;
  bottom: 2rem; */
  right: 0;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(1.2rem);
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
}

.info_card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.info_card p {
  font-size: 0.85rem;
  color: #a1a1aa;
}

@media (max-width: 1250px) {
  .hero_img {
    width: 30vw;
  }
  .hero_text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1080px) {
  .hero_img {
    width: 35vw;
  }

  .hero_text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 970px) {
  .hero_img {
    height: 40vh;
  }
  .glow_orb {
    display: none;
  }

  .hero_content {
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: center;
  }

  .hero_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
  }

  .info_card {
    position: unset;
  }
}

.navbar_end {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.mobile_nav_toggler {
  display: none;
}

.mobile_nav_toggler ion-icon {
  font-size: 2rem;
}

.hide {
  display: none !important;
}

.show {
  display: flex !important;
}

.mobile_nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0b1020;

  width: 100%;
  height: 100vh;
  z-index: 1000000;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile_nav_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.mobile_nav_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile_nav_list a {
  line-height: 2;
  text-decoration: none;
  color: white;
  text-align: center;
}

.mobile_nav_list button {
  padding: 0.6rem 1.6rem;
  border-radius: 2rem;
  border: 0.1rem solid #f59e0b;
  background: transparent;
  color: #f59e0b;
  cursor: pointer;
}

.mobile_nav_closer {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile_nav_closer ion-icon {
  font-size: 2rem;
}

@media (max-width: 880px) {
  .nav_list,
  .nav_btn {
    display: none;
  }

  .mobile_nav_toggler {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 820px) {
  .hero_text p,
  .hero_text h2 {
    width: 85%;
    max-width: 100%;
  }

  .hero_img {
    width: 40vw;
  }
}

@media (max-width: 720px) {
  .hero_content {
    padding-bottom: 4rem;
  }
  .hero_text h2 {
    /* font-size: 1.7rem; */
  }
  .hero_text p {
    width: 90%;
  }

  .hero_img {
    width: 50vw;
  }
}

@media (max-width: 600px) {
  .hero_content {
    gap: 3.5rem;
  }
  .hero_actions {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  .hero_img {
    width: 60vw;
    height: 45vh;
    margin-bottom: 1rem;
  }
}

@media (max-width: 500px) {
  .hero_img {
    width: 70vw;
  }
}

@media (max-width: 550px) {
  .hero_text h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .hero_text p {
    width: 90vw;
  }
  .hero_actions {
    margin-top: 0.8rem;
  }

  .info_card {
    width: 80%;
    padding: 1rem;
  }

  .hero_nav {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 500px) {
  .hero_img {
    width: 80vw;
    height: 45vh;
  }

  .primary_btn,
  .secondary_btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .hero_text h2 {
    font-size: 1.3rem;
  }
  .hero_text p {
    font-size: 0.9rem;
  }

  .info_card {
    width: 90%;
  }
}

@media (max-width: 380px) {
  .hero_content {
    gap: 2rem;
  }
  .hero_img {
    width: 90vw;
    height: 40vh;
    margin-bottom: 0.5rem;
  }
}

/* overview */
.overview_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 3rem;

  width: 80vw;

  margin: 4rem auto;
}

.overview_txt_content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

.overview_txt_content > p {
  line-height: 1.9;
}

.buy_ticket_btn {
  color: white;
  font-size: 0.9rem;
  background: #0b0b0b;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;

  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.buy_ticket_btn ion-icon {
  font-size: 1.2rem;
}

.overview_img_wrapper {
  width: 100%;
  height: 90vh;
  border-radius: 0.4rem;
  overflow: hidden;
}
.overview_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top ;
}

@media (max-width: 1250px) {
  .overview_container {
    width: 90vw;
  }
}

@media (max-width: 1100px) {
  .overview_container {
    gap: 1.5rem;
  }
  .overview_txt_content > p {
    line-height: 1.7;
  }
}

@media (max-width: 1000px) {
  .overview_container {
    display: flex;
    flex-direction: column;
    width: 60vw;
  }
  .first_overview {
    flex-direction: column-reverse;
  }

  .overview_img_wrapper {
    height: 80vh;
  }
}

@media (max-width: 930px) {
  .overview_container {
    width: 70vw;
  }
}

@media (max-width: 800px) {
  .overview_container {
    width: 75vw;
    gap: 1rem;
  }
  .overview_img_wrapper {
    height: 75vh;
  }

  
}

@media (max-width: 700px) {
  .overview_container {
    width: 80vw;
  }
  .overview_img_wrapper {
    height: 75vh;
  }
}

@media (max-width: 600px) {
  .overview_container {
    width: 90vw;
  }
  .overview_txt_content h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 500px) {
  .overview_img_wrapper {
    height: 70vh;
  }
}

@media (max-width: 450px) {
  .overview_img_wrapper {
    height: 55vh;
  }

  .overview_txt_content > p {
    font-size: 0.9rem;
  }

  .overview_txt_content h2 {
    font-size: 1.1rem;
  }

  .hero_tag {
    margin-bottom: 1rem;
  }
}


@media (max-width: 370px) {
  .overview_img_wrapper {
    height: 45vh;
  }
}


/* ticket */
.ticket_section {
  background-color: #0f0f0f;
  color: #f5f5f5;
  padding: 4rem 0;
}
.ticket_sec_container {
  width: 70vw;
  max-width: 90%;
  margin: 1rem auto;
  text-align: center;
}

.ticket_header {
  margin-bottom: 2rem;
}

.ticket_header p {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.ticket_header h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

.ticket_card_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.ticket_card {
  background-color: #1a1a1a;
  padding: 2.5rem 2rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ticket_card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  color: #f59e0b;
}

.ticket_card span {
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0;
}

.ticket_card p {
  font-size: 0.95rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ticket_card button {
  padding: 0.75rem 2rem;
  font-size: 0.9rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #f59e0b;
  background-color: transparent;
  color: #f59e0b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ticket_card button:hover {
  background-color: #f59e0b;
  color: #000;
}

.countdown_container {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.countdown_item {
  text-align: center;
}

.countdown_item span {
  font-size: 3rem;
  font-weight: 600;
  display: block;
}

.countdown_item p {
  font-size: 0.9rem;
  color: #a1a1aa;
  margin-top: 0.5rem;
}

@media (max-width: 1300px) {
  .ticket_sec_container {
    width: 80vw;
  }
}

@media (max-width: 1120px) {
  .ticket_sec_container {
    width: 85vw;
  }
  .ticket_card_wrapper {
    gap: 1rem;
  }
}

@media (max-width: 1050px) {
  .ticket_sec_container {
    width: 90vw;
  }
}

@media (max-width: 980px) {
  .ticket_header h2 {
    font-size: 2rem;
  }
  .ticket_card_wrapper {
    width: 80%;
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
    margin-bottom: 3rem;
  }
}

@media (max-width: 860px) {
  .ticket_header h2 {
    font-size: 1.8rem;
  }

  .ticket_card_wrapper {
    width: 90%;
  }
}

@media (max-width: 750px) {
  .ticket_card_wrapper {
    width: 50%;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 700px) {
  .ticket_header h2 {
    font-size: 1.5rem;
  }

  .ticket_card_wrapper {
    width: 60%;
  }
}

@media (max-width: 620px) {
  .ticket_card_wrapper {
    width: 70%;
  }

  .countdown_container {
    gap: 2.5rem;
  }
  .countdown_item span {
    font-size: 2.5rem;
  }
}

@media (max-width: 500px) {
  .ticket_card_wrapper {
    width: 80%;
  }
}

@media (max-width: 440px) {
  .ticket_card_wrapper {
    width: 90%;
  }
  .countdown_item span {
    font-size: 2.2rem;
  }
  .countdown_container {
    gap: 1.5rem;
  }
}

@media (max-width: 400px) {
  .ticket_header h2 {
    font-size: 1.2rem;
  }
  .ticket_header p {
    font-size: 0.9rem;
  }

  .ticket_card_wrapper {
    width: 100%;
  }
}

/* founders */
.founders {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 1.5rem;

  padding-top: 4rem;
  margin-bottom: 2rem;
}

.founders_header {
  text-align: center;

  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.founder_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 65vw;
  gap: 1rem;
  margin: auto;
}

.founder_card {
  background-color: rgb(244, 244, 244);
}

.founder_card_img_wrapper {
  width: 100%;
  height: 40vh;
}
.founder_card_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.founder_details {
  padding: 0.5rem 1rem;
}

.founder_details small {
  font-size: 14px;
}

@media (max-width: 1300px) {
  .founder_cards_wrapper {
    width: 75vw;
  }
}

@media (max-width: 1170px) {
  .founder_cards_wrapper {
    width: 90vw;
  }
}

@media (max-width: 1050px) {
  .founder_cards_wrapper {
    width: 70vw;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .founder_cards_wrapper {
    width: 80vw;
  }
}

@media (max-width: 800px) {
  .founder_cards_wrapper {
    width: 90vw;
  }
}

@media (max-width: 700px) {
  .founder_cards_wrapper {
    width: 55vw;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  .founder_cards_wrapper {
    width: 65vw;
  }
}

@media (max-width: 500px) {
  .founder_cards_wrapper {
    width: 70vw;
  }
}

@media (max-width: 460px) {
  .founder_cards_wrapper {
    width: 80vw;
  }
}

@media (max-width: 400px) {
  .founder_cards_wrapper {
    width: 85vw;
  }
}

@media (max-width: 380px) {
  .founder_cards_wrapper {
    width: 90vw;
  }
}

/* our goal */
.goal_section {
  min-height: 100vh;
  background-image: url("./YOUTUBE\ BANNER\ \(1\).png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* 👈 THIS */
  position: relative;
  font-family: "Poppins", sans-serif;

  position: relative;

  display: flex;

  margin-top: 5rem;
}

.goal_overlay {
  background-color: rgba(0, 0, 0, 0.35);

  width: 100%;
  height: 100%;

  position: absolute;
}

/* GLOBAL DARK OVERLAY */
.goal_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* HEAVY RIGHT DARKNESS */
.goal_section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0)
  );
  z-index: 2;
}

.goal_container {
  /* position: relative; */
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  width: 70vw;
  margin: 0 auto;

  align-items: center;
}

/* IMAGE CARD */
.goal_image {
  width: 100%;
  height: 80vh;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.85);
}

.goal_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15);
}

/* TEXT PANEL (SUBTLE CENTER SHADE) */
.goal_content {
  max-width: 520px;
  padding: 60px 50px;
  /* background: rgba(0, 0, 0, 0.35); */
  backdrop-filter: blur(1px);
}

/* ORANGE TAG */
.goal_tag {
  display: block;
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 18px;
}

/* HEADING */
.goal_content h2 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 22px;
}

/* PARAGRAPH */
.goal_content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 40px;
}

/* BUTTON */
.goal_btn {
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid #f5a623;
  color: #f5a623;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.goal_btn:hover {
  background: #f5a623;
  color: #000;
}

@media (max-width: 1300px) {
  .goal_container {
    width: 80vw;
    gap: 2rem;
  }
}

@media (max-width: 1160px) {
  .goal_content {
    padding: 2rem 1rem;
  }
}

@media (max-width: 1100px) {
  .goal_container {
    width: 90vw;
  }
}

@media (max-width: 960px) {
  .goal_container {
    grid-template-columns: repeat(1, 1fr);
    width: 60vw;
    padding: 3rem 0;
  }

  .goal_image {
    height: 60vh;
  }

  .goal_content {
    padding: 0;
  }
}

@media (max-width: 780px) {
  .goal_container {
    width: 70vw;
  }

  .goal_image {
    height: 50vh;
  }
}

@media (max-width: 570px) {
  .goal_container {
    width: 80vw;
  }

  .goal_image {
    height: 40vh;
  }

  .goal_content p,
  .goal_content h2 {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 430px) {
  .goal_container {
    width: 90vw;
  }

  .goal_image {
    height: 37vh;
  }
}

@media (max-width: 380px) {
  .goal_container {
    width: 95vw;
  }

  .goal_image {
    height: 32vh;
  }
}

/* blog */
.blogs_section {
  padding: 4rem 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.blogs_section h2 {
  font-weight: 600;
}

.blog_cards_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 70vw;
  margin: auto;
  gap: 1.5rem;
}

.blog_card {
  border: 1px solid rgba(0, 0, 0, 0.349);
}

.blog_img_wrapper {
  width: 100%;
  height: 28vh;

  margin-bottom: 0.5rem;
  overflow: hidden;
}

.blog_img_wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.3);
}

.blog_txt_content {
  display: flex;
  flex-direction: column;
  gap: 0rem;
  align-items: flex-start;

  padding: 0 0.5rem;
  padding-bottom: 0.9rem;
}

.blog_txt_content > h3 {
  font-weight: 600;
  font-size: 1.1rem;
}

.blog_txt_content > p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.blog_txt_content a {
  text-decoration: none;
}

.tiket_cta {
  text-decoration: none !important;
}

.blog_btn {
  color: white;
  font-size: 0.9rem;
  background: #0b0b0b;
  padding: 0.6rem 1.2rem;
  border-radius: 0.3rem;

  border: none;
  outline: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog_btn ion-icon {
  font-size: 1rem;
}

@media (max-width: 1300px) {
  .blog_cards_wrapper {
    width: 80vw;
  }
}

@media (max-width: 1170px) {
  .blog_cards_wrapper {
    width: 90vw;
  }
}

@media (max-width: 1050px) {
  .blog_cards_wrapper {
    width: 70vw;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .blog_cards_wrapper {
    width: 80vw;
  }
}

@media (max-width: 800px) {
  .blog_cards_wrapper {
    width: 90vw;
  }
}

@media (max-width: 700px) {
  .blog_cards_wrapper {
    width: 55vw;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  .blog_cards_wrapper {
    width: 65vw;
  }
}

@media (max-width: 500px) {
  .blog_cards_wrapper {
    width: 70vw;
  }
}

@media (max-width: 460px) {
  .blog_cards_wrapper {
    width: 80vw;
  }
}

@media (max-width: 400px) {
  .blog_cards_wrapper {
    width: 85vw;
  }
}

@media (max-width: 380px) {
  .blog_cards_wrapper {
    width: 90vw;
  }
}

/* footer */
.footer {
  background: radial-gradient(circle at left, #1a1a1a 0%, #0b0b0b 60%);
  color: #cfcfcf;
  font-family: Arial, sans-serif;
}

.footer_container {
  width: 80vw;
  margin: 0 auto;
  padding: 60px 0 20px;
}

.footer_top {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footer_col {
  width: 33.33%;
}

.footer_logo {
  width: 10rem;
  margin-bottom: 1rem;
}

.footer_col h3 {
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 20px;
}

.footer_col p {
  font-size: 14px;
  line-height: 1.8;
  color: #bdbdbd;
}

/* Social Icons */
.socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bdbdbd;
  font-size: 16px;
  cursor: pointer;
}

/* Pages links */
.footer_links {
  display: flex;
  gap: 60px;
}

.footer_links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_links li {
  margin-bottom: 12px;
}

.footer_links a {
  text-decoration: none;
  color: #bdbdbd;
  font-size: 14px;
}

.footer_links a:hover {
  color: #ffffff;
}

/* Newsletter */
.newsletter {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.newsletter input {
  flex: 1;
  padding: 12px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  outline: none;
}

.newsletter button {
  padding: 12px 20px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

/* Footer bottom */
.footer_bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #8f8f8f;
}

@media (max-width: 1200px) {
  .footer_container {
    width: 90vw;
  }

  .footer_top {
    gap: 30px;
  }
}

@media (max-width: 970px) {
  .footer_top {
    flex-direction: column;

    justify-content: center;
    align-items: center;
  }

  .footer_col {
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 60%;
  }

  .newsletter {
    /* width: 70%; */
    margin: 2rem auto;
  }

  .socials,
  .footer_links {
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 650px) {
  .footer_col {
    width: 80%;
  }
}

@media (max-width: 440px) {
  .footer_col {
    width: 90%;
  }

  .newsletter {
    flex-direction: column;
    gap: 0.6rem;
  }
}
