@font-face {
  font-family: "Montserratarm-Regular";
  src:
    url("fonts/Montserratarm-Regular.woff2") format("woff2"),
    url("fonts/Montserratarm-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat-Regular";
  src:
    url("fonts/Montserrat-SemiBold.woff2") format("woff2"),
    url("fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

* {
  font-family: "Montserratarm-Regular", Arial, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

:root {
  --bg: #f7efe6;
  --accent: #eacbcb;
  --gold: #c9a66b;
  --text: #4a4a4a;
}

body {
  margin: 0;
  background: white;
  color: var(--text);
  text-align: center;
}

.hero {
  padding: 60px 20px;
  background: white;
}

.brand {
  width: 30%;
}

.tagline {
  margin: 20px 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: var(--gold);
  color: #fff;
}

.btn:hover {
  background: #866f47;
  transition: 0.3s;
}

.main {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.main a {
  text-decoration: none;
  color: #866f47;
}

.cat {
  width: 20rem;
  height: 25rem;
  margin: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 8px;

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: center;
}

.wedding {
  background-image: url("images/wedding2.jpg");
}

.baptism {
  background-image: url("images/baptism.jpg");
}

.bday {
  background-image: url("images/bday.webp");
}

.grad {
  background-image: url("images/grad.jpg");
}

.cat h1 {
  background-color: white;
  width: 100%;
  padding: 5px;
}

.about,
.contacts {
  padding: 40px 20px;
}

.about h2,
.contacts h2 {
  margin-bottom: 12px;
}

.contacts ul {
  list-style: none;
  padding: 0;
}

.contacts li {
  margin: 8px 0;
}

.contacts a {
  /* color: #c9a66b; */
  color: #4a4a4a;
  text-decoration: none;
}

footer {
  background: #fff;
  padding: 20px;
  font-size: 14px;
  color: #777;
}

.text1 {
  margin: auto;
  text-align: center;
  width: 70%;
  line-height: 1.5;
}

.social {
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.how-it-works {
  display: flex;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.left {
  flex: 2;
  background-image: url("images/wedding3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0px 200px 200px 0px;
}

.right {
  flex: 3;
  padding-bottom: 50px;
  padding-top: 50px;
  margin-left: 50px;
}

.sparkle {
  height: 2rem;
  margin-left: 25px;
}

.adv {
  display: flex;
  align-items: center;
  gap: 15px;
}

.adv-text {
  width: 50%;
  margin-bottom: 25px;
}

.about-text {
  height: 2.8rem;
  margin-bottom: 2rem;
}

.step {
  width: 50%;
  margin: auto;
  text-align: left;
  display: flex;
  align-items: center;
}

.step-num {
  height: 5rem;
  margin-right: 2.5rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  html {
    font-size: 12px;
  }

  .cat {
    width: 12rem;
    height: 17.5rem;
    font-size: 0.8rem;
  }

  .right {
    margin-left: 10px;
  }

  .adv-text {
    width: 80%;
  }

  .text1 {
    width: 90%;
  }
  .step {
    width: 80%;
  }
  .brand {
    width: 75%;
  }
}
