@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans&display=swap');


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

body {
overflow-x: hidden;
}

body, html {
  height: 100%;
  background-color: black;
  font-family: sans-serif;
}

.hero {
  height: 80vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  -webkit-mask-image: url("assets/Hero Image Mask.svg");
  -webkit-mask-size: auto 100%;
  -webkit-mask-position: bottom;
  -webkit-mask-repeat: no-repeat;

  mask-image: url("assets/Hero Image Mask.svg");
  mask-size: auto 100%;
  mask-position: bottom;
  mask-repeat: no-repeat;

}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-button,
.logo {
  z-index: 2;
}

.logo {
  width: 500px;
  max-width: 80%;
}

.cta-button {
  position: absolute;
  top: 2rem;
  right: 5rem;

  padding: .75rem 1.5rem;
  background-color: #151414;
  color: #8e7556;
  border: 3px, solid, rgba(0,0,0,0);
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  border-color: #b88e5f;
}

.intro-section {
  background-color: black;
  color: #a98b65;
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.intro-section h2 span {
  display: block;
  font-size: 4rem;
}

.content-wrapper {
  font-family: 'Inter', sans-serif;
  max-width: 700px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: center;
  color: #cdcccb;
}

.social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.brush-left,
.brush-right {
  width: 200px;
  height: 8px;
}

.linkedin-icon {
  width: 54px;
  height: 54px;
}

.footer {
  background: url("assets/Footer.png");
  background-position: center;
  background-size: cover;
}

.footer-content {
  min-height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 200px;
  width: 200px;
  margin-right: 1.5rem;
}

.slogan {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  display: flex;
  flex-direction: column;
}

.slogan h2 span {
  font-size: 2.25rem;
}

.footer-cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  margin: 1.5rem;
}

.footer-cta-wrapper p {
  font-family: 'DM Sans', sans-serif;
  padding: .75rem;
  font-size: x-large;
  font-weight: lighter;
}

.footer-cta-button {
  padding: .75rem 1.5rem;
  background-color: #151414;
  color: #8e7556;
  border: none;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.modal-content {
  background-color: black;
  border: 3px solid #a98b65;
  color: #a98b65;
  margin: 10% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.modal-content textarea#message {
  display: block;
  width: 90%;
  margin: 15px auto;
  padding: 10px;
  border: 2px solid #a98b65;
  border-radius: 8px;
  background-color: #151414;
  color: #a98b65;
  font-size: 1.1rem;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}

.modal-logo {
  width: 200px;
  margin-bottom: 20px;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #a98b65;
}

.modal-content input {
  display: block;
  width: 90%;
  margin: 15px auto;
  padding: 10px;
  border: 2px solid #a98b65;
  border-radius: 8px;
  background-color: #151414;
  color: #a98b65;
  font-size: 1.1rem;
}

.submit-button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #151414;
  border: 2px solid #a98b65;
  border-radius: 999px;
  color: #a98b65;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3 ease;
}

.submit-button:hover {
  background-color: #b88e5f;
  color: black;
}

@media (max-width: 768px) {
  .intro-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .cta-button {
    border: none;
  }
  .intro-section h2 span {
    display: block;
    font-size: 3rem;
  }

  .footer-logo {
    width: 120px;
    height: 120px
  }
  
  .slogan h2 {
    font-size: 1.5rem;
  }

  .slogan h2 span {
    font-size: 1.25rem;
  }
  
  .brush-left,
  .brush-right {
    width: 100px;
    height: auto;
  }

  .linkedin-icon {
    width: 32px;
    height: 32px;
  }

}






























