@font-face {
  font-family: "domine-regular";
  src: url("../fonts/domine/domine-regular-webfont.woff2") format("woff2"),
       url("../fonts/domine/domine-regular-webfont.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "domine-bold";
  src: url("../fonts/domine/domine-bold-webfont.woff2") format("woff2"),
       url("../fonts/domine/domine-bold-webfont.woff") format("woff");
  font-style: normal;
  font-weight: normal;
}

@import url("https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap");

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}

.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-sans);
}
@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  height: 30rem;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.card:nth-child(1):before {
  background-image: url("../images/services/trades.jpg");
}
.card:nth-child(2):before {
  background-image: url("../images/services/ideas.jpg");
}
.card:nth-child(3):before {
  background-image: url("../images/services/hand.jpg");
}
.card:nth-child(4):before {
  background-image: url("../images/services/results.jpg");
}

.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.content > * + * {
  margin-top: 1rem;
}

.title {
  font-family: "domine-bold", sans-serif;
  color: #fff;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
}

.copy {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1.35;
}

.btn-u {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
}
.btn-u:hover {
  background-color: #0d0d0d;
}
.btn-u:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .card:after {
    transform: translateY(0);
  }

  .content {
    transform: translateY(calc(100% - 4.5rem));
  }
  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
.card:focus-within {
    align-items: center;
  }
  .card:hover:before,
.card:focus-within:before {
    transform: translateY(-4%);
  }
  .card:hover:after,
.card:focus-within:after {
    transform: translateY(-50%);
  }
  .card:hover .content,
.card:focus-within .content {
    transform: translateY(0);
  }
  .card:hover .content > *:not(.title),
.card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within:before, .card:focus-within:after,
.card:focus-within .content,
.card:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}

.getstarted{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top:6rem;
}

.getstarted > a > button{
    color: #ffffff;
    background: #f95169;
    border-color: #f95169;
    padding: 0 15px;
}

.contact-form {
  background: #f1f1f1;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 500px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 20px;
  font-size: 1.8rem;
  color: #333;
  display: flex;
  align-items: center; 
  justify-content: center;
  column-gap: 5px;
}

.form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group i {
  position: absolute;
  top: 22px;
  left: 12px;
  color: #f95169;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"],
.contact-form input[type="search"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="password"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 12px 12px 35px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.5rem;
  box-sizing: border-box; /* avoids sizing issues */
}
.contact-div{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-div > .contact-button{
    color: #ffffff;
    background: #f95169;
    border:none;
    padding: 0 15px;
}

.contact-div > .contact-button:hover{
    color: #ffffff;
    background: #c03c50;
    padding: 0 15px;
}
/* Unique button styles */
#contact-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #f95169;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

#contact-submit-btn:hover {
  background: #0056b3;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 20px;
  }
  .quick-links-list li a{
    font-size: 15px;
}
}

.newsletter-title{
    font-family: "domine-bold", sans-serif;
    color: #fff;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 20px;
}
.newsletter-t form{
    margin: 0;
}
.quick-links-list{
    list-style: none;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 2rem;
}

/* Hidden by default */
.popup {
  display: none; 
  position: fixed; 
  inset: 0;
  background: rgba(0,0,0,0.5); 
  justify-content: center; 
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: #fff;
  padding: 30px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-width: 400px;
  position: absolute;
  top: 50%;          /* move to middle of screen */
  left: 50%;         
  transform: translate(-50%, -50%); /* shift back half of its size */
}

.popup-content p {
  margin: 0 0 20px;
  font-size: 16px;
  color: #000;
  font-family: monospace;
}

.popup-content button {
  border: none;
  background: #f95169;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.popup-content button:hover {
  background: #b63447;
  color: #fff;
}
.navbar-contact{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  margin: 0;
  font-size: 15px;
}
.navbar-contact span{
    color: #fff;
    text-transform: uppercase;   
}
.navbar-contact li a{
    color: #fff;
}
.navbar-contact button{
    color: #ffffff;
    background: #f95169;
    border: none;
    padding: 0 15px;
}
.bounce2 {
  animation: bounce2 3s ease infinite;
}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}