*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif !important;
  overflow-x: hidden;
}

@font-face {
  font-family: "Marcellus";
  src: url("../fonts/Marcellus-Regular.ttf") format("truetype-variations");
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf")
    format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}

* {
  -webkit-tap-highlight-color: transparent;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "opsz" 14;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 96px;
}
a {
  text-decoration: none;
}
.heading1 {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: 62px;
  line-height: 75px;
  letter-spacing: 0%;
  color: #fff;
}
.heading2 {
  font-family: "Marcellus", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 0%;
  color: #fff;
}
.golden {
  color: #b0a634;
}

.para20 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}
.para16 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}
.eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #b0a634;
}

/* header starts */
header {
  width: 100%;
  position: fixed;
  z-index: 100;
  padding: 19.5px 0 16.5px 0;
  background: transparent;
}
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}
header.scrolled::before {
  opacity: 1;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 23px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}
.nav-links .links {
  color: #fff;
  position: relative;
  padding-bottom: 3.5px;
}
.nav-links .links.active {
  color: #b0a634;
  font-weight: 600;
}
.navigation .links::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b0a634;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.navigation .links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b0a634;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.navigation .links:hover::before,
.navigation .links:hover::after {
  transform: scaleX(1);
}

.navigation .links.active::before,
.navigation .links.active::after {
  transform: scaleX(1);
}

.navigation .explore-btn svg {
  transition: transform 0.4s ease-in-out;
}

.navigation .explore-btn:hover svg {
  transform: rotate(360deg);
}

/* mobile navigation */
.hamburger-menu {
  flex-direction: column;
  gap: 10px;
  display: none;
}
.hamburger-menu .line {
  display: block;
  height: 2px;
  width: 45px;
  background-color: #b0a634;
  transition: transform 0.3s ease;
}

.hamburger-menu.active .line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger-menu.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .line:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}
.mobile-navigation {
  position: absolute;
  background-color: #000;
  left: 0;
  top: 96px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: self-start;
  max-width: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.mobile-navigation .nav-links {
  flex-direction: column;
  padding: 20px 40px;
}
.mobile-navigation .explore-btn {
  white-space: nowrap;
  margin: 20px 0 40px 40px;
}
.header-wrapper:has(.hamburger-menu.active) .mobile-navigation {
  max-width: 100%;
  transform-origin: left;
}
html.menu-open,
body.menu-open {
  overflow: hidden;
}
/* header ends */

/* Newsletter-section starts */
.newsletter-section {
  margin-top: 103px;
  background-image:
    linear-gradient(90deg, rgba(42, 77, 138, 0.12) 0%, #0b142441 36.22%),
    url("../images/newsletter.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 260px;
}
.newsletter-section .container {
  height: 100%;
}
.join-vesna .para20 {
  color: #fff;
}
.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 38px;
  margin: 0 auto;
}
.newsletter-form {
  position: relative;
  width: 368px;
}
.newsletter-form input {
  padding: 13px 16px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 4px;
  color: #fff;
  outline: none;
}
.newsletter-form input::placeholder {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 10%;
  text-transform: capitalize;
  color: #fff;
}
.newsletter-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@keyframes slideFade {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }

  25% {
    transform: translate(15px, -15px);
    opacity: 0;
  }

  50% {
    transform: translate(-15px, 15px);
    opacity: 0;
  }

  51% {
    transform: translate(-15px, 15px);
    opacity: 1;
  }
}
.newsletter-form input:hover ~ .newsletter-btn .send-btn {
  animation: slideFade 0.3s ease-in-out;
}
/* Newsletter-section ends */

/* ===============================
  Hero section
================================ */

.hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../images/blog-hero.webp") center / cover no-repeat;
  height: 540px;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  width: min(740px, 100%);
  margin-bottom: 60px;
}

.hero-heading {
  color: #fff;
  margin-bottom: 16px;
}

.white-para {
  color: #fff;
}

.breadcrumb-navigaion {
  width: 100%;
  border-top: 1px solid rgba(255, 253, 253, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 0;
}

.navigation {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.breadcrumb2 {
  color: #b8b8b8;
}

/* ===============================
  Footer
================================ */
.footer {
  background-color: #0b1424;
  padding-top: 77px;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(38px, 1.6vw, 76px);
}
.footer-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(18px, 1vw, 24px);
  width: 100%;
  max-width: 258px;
  flex: 1;
}
.footer-logo img {
  width: 227px;
  height: 90px;
  opacity: 1;
}

.footer-para {
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
}

.footer-quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-items: start;
  gap: 70px;
  flex: 1;
}

.quick-links-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(10px, 4vw, 20px);
}

.footer-contact-wrapper {
  display: flex;
  gap: clamp(5px, 1vw, 15px);
  align-items: center;
}

.footer-contact {
  font-size: 14px;
  line-height: 150%;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  line-height: 151%;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-links p {
  font-size: 14px;
}
.footer-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
}

.footer-social-media-logo {
  display: flex;
  gap: 5px;
}
.copyright {
  margin-top: clamp(30px, 5vw, 58px);
  border-top: 1px solid #ffffff59;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding-block: clamp(12px, 3vw, 25px);
}

.copyright-text {
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
}
.copyright-text img {
  width: 86px;
  height: 12px;
  opacity: 1;
}

/* ===============================
  Footer
================================ */

/* ===============================
  Laptop
================================ */

@media (max-width: 1200px) {
  .hero-content {
    max-width: 680px;
    margin-bottom: 55px;
  }

  .tag-line {
    font-size: 18px;
    line-height: 1.5;
  }
  .footer-logo {
    max-width: 100%;
  }
}

/* ===============================
  Tablet
================================ */

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-content {
    max-width: 560px;
    margin-bottom: 40px;
  }

  .hero-heading {
    font-size: 46px;
    line-height: 1.2;
  }

  .tag-line {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
  Phone
================================ */

@media (max-width: 576px) {
  .hero-section {
    height: 500px;
  }

  .hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-heading {
    font-size: 38px;
    line-height: 1.23;
    text-align: center;
  }

  .tag-line {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
  }

  .desktop-break {
    display: none;
  }

  .breadcrumb-navigaion {
    padding: 12px 0;
  }
   .footer-quick-links {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0 75px;
  }
  .heading1 {
    font-size: 50px;
    line-height: 60px;
  }
  .heading2 {
    font-size: 38px;
    line-height: 48px;
  }
  .navigation {
    display: none;
  }
  .hamburger-menu {
  display: flex;
}
}

@media (max-width: 767px) {
  .container {
    padding: 0 30px;
  }
  .heading1 {
    font-size: 35px;
    line-height: 40px;
  }
  .heading2 {
    font-size: 28px;
    line-height: 38px;
  }
  .para20 {
    font-size: 16px;
    line-height: 25px;
  }
  .para16 {
    font-size: 12px;
    line-height: 18px;
  }
  .eyebrow {
    font-size: 16px;
    line-height: 25px;
  }

  .newsletter-wrapper {
    flex-direction: column;
  }
  .newsletter-form {
    width: 330px;
  }
}
