*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 80px; 
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background-color: #ffdd55;
  color: #18191f;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  background: #000000;
  border-radius: 0 0 36px 36px;
  
}

.nav__logo-mark {
  position: relative;
  width: 64px;
  height: 64px;
}

.nav__logo-circle {
  position: absolute;
  inset: 0;
  border-radius: 18px;
}

.nav__logo-circle--shadow {
  background: #ffffff;
  transform: translate(4px, 4px);
}

.nav__logo-circle--front {
  background: #ffffff;
}

.nav__logo-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 32px;
  color: #18191f;
}

.nav__links {
  display: flex; 
  flex-direction: row; 
  gap: 16px;
  opacity: 1; 
  max-height: none; 
}

.nav__links a {
  color: #ffffff;
  text-decoration: none;
}

.nav__links a:hover {
  text-decoration: underline;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav__hamburger span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  border-radius: 5px;
}

/* LAYOUT HELPERS */

main {
  padding: 64px 64px 0;
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 0.9fr 0.8fr; 
  gap: 20px;                       
  align-items: center;
  margin: 0 auto;                  
  max-width: 1000px;                
  padding: 40px 0;  
}


.hero__text {
  max-width: 580px;
}

.hero__hello {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 8px;
}

.hero__title {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 16px;
}

.hero__roles {
  font-size: 22px;
  font-weight: 600;
  color: #474a57;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
}

.hero__actions {
  display: flex;
  gap: 16px;
}

.hero__avatar-card {
  position: relative;
  justify-self: end;
}

.hero__avatar-card-shadow {
  width: 320px;
  height: 400px;
  background: #000000;
  border-radius: 10px;
  box-shadow: 9px 4px 4px rgba(0, 0, 0, 0.25);
  transform: translate(11px, 13px);
}

.hero__avatar-card-inner {
  position: absolute;
  inset: 0;
  width: 320px;
  height: 400px;
  background: #00c6ae;
  border-radius: 10px;
  border: 2px solid #000000;
  overflow: hidden;
}

.hero__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SECTIONS */

.section {
  margin-bottom: 120px;
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.section__title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
}

.section__title--light {
  color: #ffffff;
}

.section__title--md {
  font-size: 40px;
}

.section__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 24px;
}

.section__text--light {
  color: #ffffff;
}

.section__text--center {
  text-align: center;
}

/* ABOUT */

.section--about {
  background: #106ee8;
  border-radius: 20px;
  padding: 64px 32px;
}

.about__avatar-card {
  position: relative;
  justify-self: start;
}

.about__avatar-shadow {
  width: 280px;
  height: 360px;
  background: #000000;
  border-radius: 10px;
  box-shadow: 9px 4px 4px rgba(0, 0, 0, 0.25);
}

.about__avatar-inner {
  position: absolute;
  inset: 0;
  width: 280px;
  height: 360px;
  background: #00c6ae;
  border-radius: 10px;
  border: 2px solid #000000;
  overflow: hidden;
}

.about__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  color: #ffffff;
}

.about__tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.about__tag {
  font-size: 24px;
  font-weight: 700;
  color: #ffdd55;
}

.about__actions {
  display: flex;
  gap: 16px;
}

/* BUTTONS */

.btn-stack {
  position: relative;
  display: inline-block;
}

/* teal back layer */
.btn-bg {
  position: absolute;
  top: 10px;    /* offset */
  left: 10px;
  width: 100%;
  height: 100%;
  background: #00c6ae;
  border-radius: 15px;
  opacity: 0.85;
  z-index: 0;
}

/* black front button */
.btn-main {
  position: relative;
  background: #000000;
  color: white;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 42px;
  border-radius: 15px;
  border: 1px solid #000;
  z-index: 1;
  cursor: pointer;
}


.btn--secondary {
  position: relative;
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn--secondary::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 3%;
  background: #00c6ae;
  border-radius: inherit;
  z-index: -1;
}

.btn--secondary-light::before {
  background: #ffdd55;
}

.btn--yellow {
  background: #ffdd55;
  color: #000000;
}

/* SERVICES */

.section--services {
  background: #eb7711;
  padding: 64px 32px 80px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, 360px);
  justify-content: center; /* keeps them centered */
  gap: 32px;
  margin-top: 32px;
}

.service-card {
  position: relative;   
}

.service-card__badge {
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: #0acf83;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__badge span {
  font-size: 72px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.service-card__inner {
  margin-top: 40px;
  background: #a259ff;
  border-radius: 20px;
  border: 3px solid #000000;
  padding: 96px 32px 32px;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.service-card__inner h3 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 24px;
}

.service-card__inner p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 32px;
}

/* CONTACT CTA */
.contact_section__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  gap: 32px;

}
.section--contact-cta {
  background: #0acf83;
  padding: 80px 32px;
}
.section-contact__inner {
  font-size: 22px;
  margin-top: 40px;
  background: #a259ff;
  border-radius: 20px;
  border: 3px solid #000000;
  padding: 96px 32px 32px;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.section__inner--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.contact-cta__pill {
  background: #ffdd55;
  border-radius: 47px;
  padding: 28px 80px;
  box-shadow: -25px 33px 4px rgba(0, 0, 0, 1);
  font-size: 40px;
  font-weight: 700;
}

/* FOOTER */

.footer {
  padding: 80px 32px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
}

.footer__logo-shape {
  position: absolute;
  inset: 0;
  border-radius: 24px;
}

.footer__logo-shape--back {
  background: #ffffff;
  transform: translate(6px, 6px);
}

.footer__logo-shape--front {
  background: #ffffff;
}

.footer__logo-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 40px;
  color: #18191f;
}

.footer__name {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin: 8px 0 16px;
}

.footer__text {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 32px;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.social {
  width: 64px;
  height: 64px;
  border-radius: 100px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.social img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 18px;
}

.footer__location {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__location img {
  width: 24px;
  height: 24px;
}

.footer__links {
  display: flex;
  gap: 16px;
}

.footer__links a {
  color: #3b5999;
  text-decoration: none;
}

.footer__links a:hover {
  text-decoration: underline;
}

.logo {
    width: 28px;
    height: auto;
    vertical-align: middle;
    margin-left: 6px;
  }
  .comp_logo {
    width: 120px;
    align-items: center;
    margin-top: -90px;
  }
  .wbd_logo {
    width: 100px;
    align-items: center;
    margin-top: -90px;
  }

/* RESPONSIVE */

@media (max-width: 900px) {
  .nav {
    padding-inline: 24px;
  }

  .nav__links {
    display: none; 
  }

  .nav__links.active {
    display: flex; 
    flex-direction: column;
  }

  .nav__hamburger {
    display: flex;
  }
  main {
    padding: 32px 16px 0;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__avatar-card {
    justify-self: center;
  }

  .section--about {
    padding: 40px 16px;
  }

  .section__inner--split {
    grid-template-columns: 1fr;
  }

  .about__avatar-card {
    justify-self: center;
  }

  .section--services,
  .section--contact-cta {
    padding-inline: 16px;
  }

  .footer {
    padding-inline: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
