@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;460;500;700&display=swap');

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 460;
    background-color: #0f0f0f;
    color: white;
    text-align: center;
    height: 100vh;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(30px);
    background-color: rgba(6, 6, 6, 0.3);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo-link {
  display: inline-block;
}

.logo {
    width: 60px;
    height: 60px;
    background-image: url('img/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: white;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #b6b6b6;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('background.jpg') no-repeat center center/cover;
    opacity: 0.2;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 700;
    z-index: 10;
}

footer {
    background: black;
    padding: 30px 5%;
    text-align: left;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  overflow: visible;
}

.footer-links a:hover {
  color: #b6b6b6;
}

.footer-links a::before {
  content: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: none !important;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.socials {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.socials img {
    width: auto;
    height: 30px;
}

.footer-logo {
    width: 260px;
    height: 48px;
    background-image: url('img/logo-abc.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.copyright {
    text-align: center;
    margin-top: 20px;
}

::selection {
  background-color: #87BFE3;
  color: #1e1e1e;
}

::-moz-selection {
  background-color: #87BFE3;
  color: #1e1e1e;
}