:root {
  --font-proxima-nova: "proxima-nova", sans-serif;
  --color-white: #fff;
  --color-black: #000;
  --color-primary: #ff004f;
  --color-primary-dark: #7a0032;
  --color-tertiary-dark: #0e0e0e;
  --color-dark-gray: #3a3a3a;
  --color-gray: #a7a7a7;
}
html {
  scroll-behavior: smooth;
}

.marked {
  color: var(--color-primary);
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(50%);
  transition: all 1s;
  z-index: -1;
}

.shown {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  z-index: -1;
}

body {
  font-family: var(--font-proxima-nova);
  width: 100%;
  cursor: none;
}

a, button {
  cursor: none !important;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 20em;
  padding: 1.5em 10em;
  position: fixed;
  color: white;
  font-size: 1.5rem;
  font-weight: 300;
  transition: background-color 500ms ease-in-out, padding 500ms ease-in-out,
    font-size 100ms ease-in-out;
}

header.scroll {
  padding: 0.7em 1em;
  font-size: 1.1em;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
  z-index: +1;
}

header.scroll img {
  width: 80%;
}

.header--buttons li a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header--buttons li a:hover {
  color: var(--color-primary);
}

.header--logo {
  width: 100%;
  transition: 500ms ease-in-out;
}

.header--logo--button {
  width: 20rem;
}

.header--logo--button :hover {
  width: 21rem;
}

.header--buttons {
  display: flex;
  gap: 2em;
}

.contact-section {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 25rem 10rem;
  font-size: 1rem;
  height: 100vh;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.contact-column {
  flex: 1 1 300px;
  margin-right: 2rem;
}

.contact-column h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 600;
}

.contact-column p {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  line-height: 1.4;
  color: var(--color-gray);
}

.contact-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 10rem;
}

.contact-links a {
  margin-right: 1rem;
}

.contact-social a {
  margin-right: 1rem;
}

.contact-section a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-section a:hover {
  color: var(--color-primary);
}

.contact-bottom p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
    gap: 1em;
    padding: 1em 2em;
    font-size: 1.2rem;
  }

  .header--logo--button {
    width: 12rem;
  }

  .header--buttons {
    flex-direction: column;
    gap: 1em;
  }

  .contact-section {
    height: 110vh;  
    padding: 10rem 2rem; 
  }

  .contact-container {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .contact-column {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .contact-column h2 {
    font-size: 2rem;
  }

  .contact-column p {
    font-size: 1.4rem;
  }

  .contact-bottom {
    flex-direction: row;
    margin-top: 3rem;
    gap: 2rem;
  }
  
}

