@font-face {
  font-family: Rubik-Normal;
  src: url(fonts/Rubik-VariableFont_wght.ttf);
}

:root {
  /*Buttons*/
  --pink-button: #fa5858;
  --blue-button: #5167de;

  /*Text Colors*/
  --grey-text-color: #6c6b71;
  --white-text-color: white;
  --black-text-color: black;

  /*Hover Colors*/
  --pink-hover-color: #fa5858;
}

body {
  font-family: Rubik-Normal;
  height: 100vh;
  padding: 2% 8%;
  font-size: 18px;
  width: 100vw;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 5vh;
  align-items: center;
}
.nav-links {
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 45%;
  align-items: center;
  color: #5f5e69;
  padding: 0px;
}
.nav-links li:hover {
  cursor: pointer;
  color: var(--pink-hover-color);
}

.login-button {
  background-color: #fa5858;
  color: white;
  border-radius: 7px;
  border: none;
  padding: 1% 2%;
  width: 25%;
}

/*Hero Section Styling*/
.hero-section {
  display: flex;
  justify-content: space-between;
  height: 70vh;
  align-items: center;
}
.hero-section__left-side {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5%;
}

.hero-section__first-row {
  font-size: 40px;
  font-weight: 500;
}

.hero-section__second-row {
  word-spacing: 5px;
  color: #6c6b71;
}

.hero-section__third-row {
  display: flex;
  gap: 5%;
}
.hero-section__right-side {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.test {
  height: 45%;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.test1 {
  height: 55%;
  justify-content: flex-start;
  /* This makes it grow from the top */
  display: flex;
  flex-direction: column;
}
.hero-section-image {
  box-shadow: -10px 20px 80px #2442a3ce;
  outline: 20px solid black;
  border-radius: 10px;
  box-sizing: border-box;
  /* shifts half the extra width left */
  width: 110%;
  max-width: none;
  display: block;
  max-height: 100%;
}
.general-button {
  padding: 2% 4%;
  border: none;
  border-radius: 7px;
}
/*Blue Colored Buttons*/
.blue-color-button {
  background-color: #5167de;
  color: white;
}
/*Grey Colored Buttons*/
.grey-color-button {
  background-color: #f7f7f7;
  box-shadow: 0 3px 4px #7595ff52;
}

/*Features Section*/
.features-section {
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 70vh;
  align-items: center;
}
.features-paragraph {
  text-align: center;
  width: 50%;
}

.tab-container {
  width: 85%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-bottom: 3%;
}

.tab-container::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #6c6b71;
  /* margin-top: 2%; */
}

.tab-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50%;
}

.tab-info-left-side {
  width: 50%;
}
.tab-image {
  max-width: 100%;
}
.tab-info-right-side {
  width: 40%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 8%;
}
.tab-info-first-row {
  letter-spacing: 1.5px;
  font-weight: bold;
  font-size: 25px;
}

/*Download Extension Section*/
.download-extension {
  margin-top: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 70vh;
  margin-bottom: 10%;
}

.download-extenstion-title {
  text-align: center;
}
.download-extension-paragraph {
  text-align: center;
  width: 50%;
}
.extension-container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  height: 60%;
}
.general-container {
  border-radius: 10px;
  height: 100%;
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0px 3px 30px #2442a360;
  box-sizing: border-box;
  padding: 2%;
}

.extension-button {
  width: 100%;
}
.extension-second-row {
  font-weight: bold;
}
.extension-fourth-row {
  width: calc(100% + 20%);
  background-image: url(images/bg-dots.svg);
  height: 20px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.container-two {
  margin-top: 4%;
}

.container-three {
  margin-top: 8%;
}

.download-extenstion-title {
  font-size: 25px;
  font-weight: bold;
}

/*Frequently Asked Questions*/
.frequently-asked-questions {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.frequently-asekd-questions-holding-box {
  height: 70%;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.frequently-asked-questions-title {
  text-align: center;
}

.frequently-asked-questions-paragraph {
  text-align: center;
  width: 100%;
}

.faq-display-flex {
  display: flex;
  justify-content: space-between;
  border-bottom: 1.5px solid rgb(187, 174, 174);
  padding: 2%;
  flex-wrap: wrap;
}
.faq-display-flex span {
  display: flex;
  align-items: center;
}
.frequently-asked-questions-first-row {
  border-top: 1.5px solid rgb(187, 174, 174);
}
.faq-button {
  padding: 1% 3%;
  width: 20%;
  margin: 0 auto;
}
.faq-answers {
  display: none;
  width: 100%;
  padding: 2% 0px;
}

/*Newsletter Section */
.newsletter {
  width: 100vw;
  height: 40vh;
  /* full viewport width */
  margin-left: calc(-1 * 8vw);
  /* negates the body's left padding */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  background-color: #5266df;
}

.newsletter-first-row {
  color: white;
  letter-spacing: 7px;
  font-size: 15px;
  text-align: center;
}
.newsletter-second-row {
  color: white;
  font-size: 35px;
  text-align: center;
  width: 36%;
}

.newsletter-third-row {
  width: 33%;
  display: flex;
  gap: 10%;
}
.newsletter-third-row input {
  width: 60%;
  padding: 2% 4%;
  border: none;
  border-radius: 7px;
  box-sizing: border-box;
}
.newsletter-third-row button {
  width: 40%;
  padding: 2% 4%;
  border: none;
  border-radius: 7px;
  box-sizing: border-box;
  background-color: var(--pink-button);
  color: white;
}
.hamburgerImage{
  display: none;
}
.hambugerIcon{
  display: none;
}
.get-it-on-firefox:hover {
  background-color: white;
  color: var(--black-text-color);
  cursor: pointer;
  border: 2px solid black;
}

.pink-color:hover {
  background-color: white;
  color: var(--pink-hover-color);
  cursor: pointer;
  border: 2px solid var(--pink-button);
}
.pink-color-text-hover:hover,
.pink-color-text-hover path:hover {
  color: var(--pink-button);
  cursor: pointer;
  fill: var(--pink-button);
  stroke: var(--pink-button);
}
.pink-color-arrow-hover path:hover {
  color: var(--pink-button);
  cursor: pointer;
  fill: none;
  stroke: var(--pink-button);
}
.blue-color:hover {
  background-color: white;
  color: var(--blue-button);
  cursor: pointer;
  border: 2px solid var(--blue-button);
}
.footer-section {
  width: 100vw;
  height: 10vh;
  background-color: #242946;

  display: flex;
  justify-content: space-between;
  margin-left: calc(-1 * 8vw);
  align-items: center;
  padding: 0px 10%;
}

.footer-section-left-side {
  display: flex;
  width: 60%;
}
.footer-section-links {
  display: flex;
  list-style: none;
  justify-content: space-between;
  padding: 0px;
  width: 45%;
  color: #ddddde;
}
.footer-section-logo {
  width: 30%;
}
.footer-section-right-side {
  display: flex;
  width: 7%;
  justify-content: space-between;
}

.grey-text-color {
  color: var(--grey-text-color);
}

.tab-container {
  position: relative;
  /* enable absolute children */
  display: flex;
  /* … */
}

.tab-container::after {
  content: "";
  position: absolute;
  /* take out of normal flow */
  left: 0;
  top: 100%;
  /* sit at the very bottom of the container */
  width: 100%;
  height: 1px;
  background-color: #6c6b71b1;
}

.features-hover {
  position: relative;
  /* if you ever want its own ::after underline too */
  padding: 1em 0;
  /* give vertical breathing room */
  padding-bottom: 0.6em;
  /* enough so the border lands even with the container line */
}

.features-hover:hover {
  cursor: pointer;
  color: #eb5e60;
  /* no need for extra positioning here—it will sit at the element’s bottom edge */
}
.features-hover-1st {
  border-bottom: 5px solid #eb5e60;
}

.active-tab {
  border-bottom: 5px solid #eb5e60;
}

@media screen and (max-width: 1146px) {
  body {
    padding: 2% 2%;
  }

  .hero-section__left-side {
    width: 50%;
  }

  .hero-section__right-side {
    width: 40%;
  }

  .hero-section-image {
    width: 95%;
  }

  .newsletter {
    margin-left: calc(-1 * 2vw);
  }

  .footer-section {
    margin-left: calc(-1 * 2vw);
    padding: 0 3%;
  }

  .footer-section-left-side {
    width: 80%;
  }

  .footer-section-right-side {
    width: 12%;
  }
}

/* ≤ 900px */
@media screen and (max-width: 900px) {
  body {
    padding: 2% 4%;
  }

  /* NAV → hamburger */
  .nav-links {
    display: none;
  }

  /* .nav-bar::after {
    content: url(images/icon-hamburger.svg);
  } */
.nav-title{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.hamburgerIcon{
  width: 8%;
}
.hamburgerImage{
  display: flex;
  align-items: center;
}
.hambugerIcon {
  display: block;
}
  /* HERO → stacked vertically */
  .hero-section {
    display: flex;
    flex-direction: column;
    height: 80vh;
  }

  .hero-section-image {
    display: none;
  }

  .hero-section__left-side {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .hero-section__left-side::before {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: url(images/illustration-hero.svg) center/contain no-repeat;
    border-radius: 10px;
  }

  .hero-section__right-side {
    display: none;
  }

  .hero-section__first-row,
  .hero-section__second-row {
    text-align: center;
  }

  .hero-section__third-row {
    justify-content: center;
    gap: 20%;
  }

  /* TABS → vertical & centered */
  .tab-container {
    display: flex;
    flex-direction: column;
    width: 85%;
    text-align: center;
    margin-bottom: 10%;
    align-items: center;
  }
  .tab-image {
    width: 100%;
  }
  .tab-info {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .features-hover {
    width: 50%;
  }

  /* FEATURES / DOWNLOAD / FAQ → taller & stacked */
  .features-section,
  .download-extension {
    display: flex;
    flex-direction: column;
    height: auto;
    /* let its children decide its height */
    margin: 40% 0 0%;
    margin-top: 6%;
    /* download-extension override */
  }
  .general-container {
    border-radius: 10px;
    height: 100%;
    min-height: 400px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 3px 30px #2442a360;
    box-sizing: border-box;
    padding: 2%;
  }
  .extension-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    min-height: 100%;
  }
  /* NEWSLETTER → vertical form */
  .newsletter {
    display: flex;
    flex-direction: column;
    margin-left: calc(-1 * 2vw);
  }

  .newsletter-third-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10%;
    align-items: center;
  }
  #emailInput {
    margin-bottom: 3%;
  }
  .newsletter-third-row input,
  .newsletter-third-row button {
    width: 60%;
  }

  /* FOOTER → stacked links */
  .footer-section {
    display: flex;
    flex-direction: column;
    height: 30vh;
    align-items: center;
  }

  .footer-section-left-side {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 70%;
    align-items: center;
    justify-content: space-between;
  }

  .footer-section-right-side {
    display: flex;
    flex-direction: row;
    width: 12%;
    margin-bottom: 3%;
  }

  .footer-section-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 60%;
  }

  .footer-section-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 30%;
  }

  /* Hiding extras */
  .more-info-button {
    display: none;
  }

  .tab-info-first-row {
    text-align: center;
  }
  .frequently-asked-questions {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .tab-info-right-side {
    width: 40%;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 8%;
    margin-top: 4%;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f354fee;
  display: flex;
  flex-direction: column;

  padding: 5%;
  justify-content: space-between;
  display: none;
}
.top-half {
  display: flex;
  height: 60%;
  gap: 10%;
  flex-direction: column;
}
.mobile-menu-1st-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10%;
}
.mobile-menu-1st-row img {
  width: 4%;
}
.nav-links-mobile {
  padding: 0px;
  list-style: none;
  color: white;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.nav-links-mobile li {
  padding: 2% 0;
  border-top: 1px solid rgb(136, 136, 136);
  width: 100%;
  text-align: center;
  font-size: 20px;
}
.nav-links-mobile li:nth-last-child(2) {
  border-bottom: 1px solid rgb(136, 136, 136);
}
.login-button-mobile {
  margin-top: 4%;
  width: 100%;
  border-radius: 4px;
  border: none;
  padding: 1.2% 5%;
  font-size: 20px;
}
.login-button-mobile:hover {
  border: 2px solid white;
  background-color: transparent;
  color: white;
}
.mobile-menu-2nd-row {
  height: 70%;
}
.bottom-half {
  display: flex;
  justify-content: center;
  gap: 10%;
  margin-bottom: 20%;
}
