* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.navbar {
  height: 10vh;
  width: 100%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  font-family: 'Raleway', sans-serif;
}

.logo {
  height: 180%;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 1000;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #dd4e69;
}

.pushable {
  position: relative;
  background: transparent;
  padding: 0px;
  border: none;
  cursor: pointer;
  outline-offset: 4px;
  outline-color: #dd4e69;
  transition: filter 250ms;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #a23a4f;
  border-radius: 8px;
  filter: blur(2px);
  transform: translateY(2px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.edge {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  background: linear-gradient(
    to right,
    #b84057 0%,
    #dd4e69 8%,
    #b84057 92%,
    #9c3044 100%
  );
}

.front {
  display: block;
  position: relative;
  border-radius: 8px;
  background: #dd4e69;
  padding: 16px 32px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  transform: translateY(-4px);
  transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.pushable:hover {
  filter: brightness(110%);
}

.pushable:hover .front {
  transform: translateY(-6px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
  transform: translateY(-2px);
  transition: transform 34ms;
}

.pushable:hover .shadow {
  transform: translateY(4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
  transform: translateY(1px);
  transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
  outline: none;
}

.calendly-section {
  padding: 80px 5vw;
  background-color: #0f0f0f;
  color: #ffffff;
  text-align: center;
}

.calendly-section h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 800;
  color: #dd4e69;
}

.site-footer {
  background-color: #0f0f0f;
  color: #ffffff;
  padding: 60px 5vw 30px;
  font-size: 1.33rem;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 80px;
}

.footer-logo img {
  width: 13rem;
  height: auto;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  text-align: left;
}

.footer-column {
  min-width: 220px;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 2rem;
}

.footer-column ul li:last-child {
  margin-bottom: 0;
}

.footer-column a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #dd4e69;
}

.subscribe-icon {
  font-weight: 700;
  margin-left: 10px;
}

.subtext {
  opacity: 0.7;
  margin: 10px 0;
  font-size: 1.19rem;
}

.contact-icons {
  margin-top: 10px;
}

.contact-icons a {
  color: #ffffff;
  font-size: 1.68rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.contact-icons a:hover {
  color: #dd4e69;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
  font-size: 1.1rem;
}

.footer-links a {
  margin: 0 15px;
  color: #ffffff;
}

.footer-links a:hover {
  color: #dd4e69;
}
