@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap'); /*font-family: 'Inter', sans-serif;*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --main-font: 'Inter', sans-serif;
  --background-color: #fbf2fd;
  --navbar-color: #ffffff;
  --main-color: #cf4acf;
  --nav-default: #3d3d3d;

  --scroll-bar: rgba(8, 8, 8, 0.5);
  --scroll-bar-hover: #555555FF
}

body {
  background: var(--background-color);
  font-family: 'Inter', sans-serif;
}

/*Navbar*/
.navbar-global {
  font-family: 'Barlow', 'Trebuchet MS', sans-serif;
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 52px;
  padding-right: 450px;
  padding-left: 300px;
  background: var(--navbar-color);
  transition: 0.3s ease-in-out;
}


.navbar-global a {
  color: var(--nav-default);
  text-decoration: none;
}

.navbar-global .menu-mobile {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navbar-global .menu-mobile .logo {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 10px;
}

.navbar-global .menu-mobile .logo img {
  max-width: 75px;
  height: auto;
}

.navbar-global .menu-mobile .logo h3 {
  margin: auto 0 auto 0;
  color: var(--nav-default);
  font-weight: 700;
  font-size: 22px;
}

.navbar-global .links {
  display: flex;
  flex-direction: row;
  gap: 25px;
  transition: 0.3s ease-in-out;
}

.navbar-global .links .link {
  color: var(-nav-default);
  font-size: 16.5px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.navbar-global .links .link.active {
  color: var(--main-color);
}

.navbar-global .links .link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}

.navbar-global .links .link:not(.active):hover {
  color: var(--main-color);
  transform: scale(1.05); 
  transition: transform 0.2s ease-in-out; 
}

.navbar-global .menu-mobile .hamburger {
  border-radius: 7px;
  height: 33px;
  width: 33px;
  color: var(--nav-default);
  font-size: 20px;
  cursor: pointer;
  transition: 0.5s;
  display: none;
  align-items: center;
  justify-content: center;
}

.navbar-global .menu-mobile .hamburger:hover {
  opacity: 0.8;
}

.navbar-global.active {
  max-height: 1000px;
}

.navbar-global.active .links {
  opacity: 1;
  z-index: 2;
}

.section-title {
    font-size: 27px;
    font-weight: 700;
    color: var(--white-color);
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 150px;
    height: 1px;
    border-radius: 5px;

    background: var(--description-color);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    border-radius: 5px;
    background: var(--main-color);
}

/*Footer*/
#footer {
  padding: 2px 290px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#footer p {
  color: var(--description-color);
  font-size: 17px;
}

#footer p span {
  color: var(--white-color);
}

#footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

#footer .social-links .link {
  color: var(--nav-default);
  text-decoration: none;
  font-size: 20px;
  transition: 0.2s;
}
.author {
  color: #a53d94;
  font-size: 17px;
  text-decoration: none;
}
.author:hover {
  color: var(--main-color);
}

#footer .social-links .link:hover {
  color: var(--white-color);
}
/*Scrollbar*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--scroll-bar);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scroll-bar-hover);
}

/*Other*/
section:not(#header-default) .content {
  padding: 90px 150px;
  width: 100%;
}

/*Responsive*/
@media screen and (max-width: 1625px) {
  .navbar-global {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 819px) {
  .navbar-global {
    flex-direction: column;
    gap: 30px;
    max-height: 90px;
  }

  .navbar-global .menu-mobile {
    width: 100%;
  }

  .navbar-global .menu-mobile .hamburger {
    display: flex;
  }

  .navbar-global .links {
    flex-direction: column;
    order: 2;
    width: 100%;
    opacity: 0;
    z-index: -1;
  }

  /* turning of styles from wiki link */
  .navbar-global .links a {
    margin-left: 0px !important;
    padding-left: 0 !important;
    padding: 0, 0, 0, 0 !important;
    border-radius: 0px !important;
    border-width: 0px !important;
    border-style: none !important;
  }
}

@media screen and (max-width: 600px) {
  .navbar-global {
    flex-direction: column;
    gap: 30px;
    max-height: 90px;
  }

  .navbar-global .menu-mobile {
    width: 100%;
  }

  .navbar-global .menu-mobile .hamburger {
    display: flex;
  }

  .navbar-global .links {
    flex-direction: column;
    order: 2;
    width: 100%;
    opacity: 0;
    z-index: -1;
  }

}

@media screen and (max-width: 1625px) {
  section:not(#header-default) .content {
    padding: 90px;
  }

  #footer {
    padding: 20px 90px;
  }
}

@media screen and (max-width: 819px) {
  section:not(#header-default) .content {
    padding: 50px 30px;
  }

  #footer {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 564px) {
  #footer {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .offer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offer-container {
    grid-template-columns: 1fr;
  }
}

