@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');


body {
  /*font-family: 'Open Sans', sans-serif;*/
  /*font-family: "Outfit", sans-serif;*/
  margin: 0;
}

a {
  color:black;
}

a:hover {
  /*font-weight: 700;*/
  color: grey;
}

h2 {
  font-family: "Outfit", sans-serif;
}

h4 {
  font-family: "Outfit", sans-serif;
}

#site {
  /*background-color: green;*/
  padding: 80px;
}

@media only screen and (max-width: 960px) {
  #site {
    overflow: hidden;
    padding: 50px;
  }
}

@media only screen and (max-width: 640px) {
  #site {
    padding: 30px;
  }
}

#canvas {
  max-width:1100px;
  margin: 0 auto;
}

.hero-section {
  font-family: "Outfit", sans-serif;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*height: 100vh;*/
  text-align: center;
  position: relative;
  padding: 0px 20px 30px 20px;
  margin: 0 20px;
}

@media only screen and (max-width: 450px) {
  .hero-section {
    padding: 0px 0px 30px 0px;
  }
}

.hero-section h1 {
  font-size: 4rem; /* Adjust to match Buff Drawing site */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 10px;
  /*color:black;
  text-decoration: none;*/
}

.hero-section a {
  text-decoration: none;
  color:black;
}

.hero-section a:hover {
  color:grey;
}

@media only screen and (max-width: 450px) {
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media only screen and (max-width: 400px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-transform: uppercase;
  letter-spacing: 6px;
}

@media only screen and (max-width: 400px) {
  .hero-section p {
    font-size: 1rem;
  }
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 400;
  /*color: white !important;*/
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ddd !important;
  text-decoration: none;
}

#page {
  max-width: 800px;
  margin: 0 auto;
}


/* Section Styling */
section {
  /*font-family: "Outfit", sans-serif;*/
  /*font-family: "Montserrat", sans-serif;*/
  /*padding: 0px 20px;*/
  /*margin-left: -17px;*/
  /*margin-right: -17px;*/
}

section h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size:1.6rem;
}

section h2 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
  text-align: left;
  letter-spacing: 0.4px;
}

section p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: #424242;
}

section .btn {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  transition: 0.3s;
  border-radius:0px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.square-box{
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 aspect ratio */
  overflow: hidden;
}

.square-box .square-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* crop to fit the square */
}

footer {
  /*background-color: #111;*/
  font-family: "Montserrat", sans-serif;
  color: black;
  text-align: center;
  /*padding: 40px 20px;*/
  font-size: .85rem;
}

footer a{
  text-decoration: none;
  color:black;
}

footer a:hover{
  color:grey;
}


  /* FORMS */
  form .form-control{
    background-color: #fafafa;
    border: 1px solid #ccc;      
    border-radius: 0.25rem;      
    box-shadow: none;            
  }

  form .form-control:focus {
    border-color: #999;
    box-shadow: none;
    color: black;

  }

  form .form-control:placeholder {
    font-size: 0.9rem;
    color: #6c757d;
  }

  form .form-text{
    font-size: .7em;
  }

  form .form-label{
    font-size: .9rem;
  }