@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, html {
  height: 100%;
  background-color: black;
  font-family: sans-serif;
}

.hero {
  height: 80vh;
  width: 100%;
/*
  background: url("assets/Cattle Photo.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
*/
  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 {
  position: relative;
  z-index: 1;
}

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

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

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

.cta-button:hover {
  background-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: 100px;
  height: auto;
}

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

.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;
}

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

.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;
  }
}







































