/* Shared
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
  scroll-behavior: smooth;
}
.button {
  border-radius: 100px;
}
.alternate-background {
  background-color: rgb(225, 235, 235);
  padding: 1rem 0;
  position: relative;
}
.alternate-background-2 {
  background-color: rgb(20, 30, 50);
  color: rgb(255, 255, 255);
  padding: 1rem 0;
}
.alternate-background-3 {
  background-color: rgb(137, 124, 128);
  color: rgb(255, 255, 255);
  padding: 1rem 0;
}
.alternate-background-4 {
  background-color: #BA8F95;
  color: rgb(255, 255, 255);
  padding: 8rem 0 2rem;
  text-align: center;
}
.row.bump {
  margin-bottom: 5rem;
}
footer img {
  max-width: 100px;
}
footer a {
  margin-left: 1.5rem;
}
footer nav ul {
  list-style: none;
}
footer nav ul li {
  display: inline-block;
  margin-right: 1.5rem;
}
footer nav ul li:last-child {
  margin-right: 0;
}
a[href$=".pdf"]::after {
  content: ' – PDF';
}
textarea, input {
  width: 80%;
}

/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Base Styles */
.sticky-nav {
  position: sticky;
  z-index: 9001;
  top: 0;
  background: rgba(255, 255, 255, .8);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #ccc;
  box-shadow: 0 0 40px rgba(0,0,0,0.25);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: right;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Georgia', serif;
  font-weight: light;
  font-size: 2.25rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease;
  overflow: hidden;
}

.nav-links li {
  margin-bottom: 0;
}

.nav-links a {
  text-decoration: none;
  color: #BA8F95;
  font-weight: 400;
}
.nav-links a.active {
  text-decoration: underline overline;
  color: rgb(137, 124, 128);
}
.nav-links a:hover {
  text-decoration: underline;
  color: rgb(20, 30, 50);
}

.nav-toggle {
  display: none;
}

/* Modal
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.modal {
  display: none;
  position: fixed;
  z-index: 100001;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  max-width: 400px;
  position: relative;
  border-radius: 8px;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Sections
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.section {
  padding: 8rem 0 7rem;
  text-align: center;
}
.section-heading,
.section-description {
  margin-bottom: 1.2rem;
}
section.container {
  margin-top: 6rem;
  margin-bottom: 3rem;
}
footer {
  padding: 8rem 0;
  background-color: rgb(20, 30, 50);
  color: rgb(255, 255, 255);
  text-align: center;
  margin-top: 6rem;
}

/* Hero
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.phones {
  position: relative;
}
.phone {
  position: relative;
  max-width: 80%;
  margin: 3rem auto -12rem;
}
.phone + .phone {
  display: none;
}
#heroDiv.hero {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-bg,
.hero-bg-next {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  transition: opacity 0.6s ease;
}

.hero-bg {
  z-index: 1;
  opacity: 1;
}

.hero-bg-next {
  z-index: 2;
  opacity: 0;
}

/* Values
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.values {
  background-image: url('../images/Holy-Apostles-Wedding.jpg');
  background-size: cover;
  background-position: center bottom;
  color: #fff;
  position: relative;
}
.column.value {
  position: relative;
  z-index: 5001;
}
.value-multiplier {
  margin-bottom: .5rem;
  color: #33C3F0;
  font-size: 5vw;
}
.value-heading {
  margin-bottom: .3rem;
  font-size: 120%;
}
.value-description {
  opacity: .8;
  font-weight: 300;
}
.overlay {
   position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 999;
}

/* Projects
–––––––––––––––––––––––––––––––––––––––––––––––––– */
dt {
  font-size: 125%;
}
dd {
  margin-bottom: 1rem;
}
img.accent {
  max-width: 100%;
}
dl img {
  float: right;
  max-width: 150px;
  margin: 6px 0 6px 10px;
}
dl dt {
  margin-top: 2rem;
  clear:  both;
}
dl dd {
  margin-left:  10px;
}

button {
  padding: 1rem;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  border:0;
  position: relative;
  z-index: 1002;
}
.buttons {
  text-align: right;
  margin: 0;
  padding: 0 2rem 0 0;
}


/* Videos
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.videos span {
  font-weight: bold;
}
.videos span::after {
  content: " • ";
}

/* Curves
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.custom-shape-divider-top-1751734864 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1751734864 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 140px;
}

.custom-shape-divider-top-1751734864 .shape-fill {
    fill: #ffffff;
}

/* media queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Bigger than 550 */
@media (max-width: 550px) {
  .section {
    padding: 22rem 0 1rem;
  }
  /*.hero {
    padding-bottom: 12rem;
    text-align: left;
    height: 165px;
  }*/
  .phone + .phone {
    top: -6rem;
    display: block;
    max-width: 73.8%;
    right: 0;
    z-index: 2;
    max-height: 338px;
  }
  .hero-heading {
    font-size: 2.4rem;
  }
  .column.buttons {
    display: none;
  }
  .row.bump .column {
    margin-bottom: 3rem;
  }
  .nav-toggle {
    display: block;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, .95);
    position: absolute;
    top: 60px; /* Adjust to your header height */
    right: 0;
    padding: 1em;
    transition: all 0.6s ease;
    z-index: 9001;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    margin: 0.5rem 0;
  }
  .sticky-nav {
    padding: 0rem 1rem;
  }
  .sticky-nav button {
    margin-bottom: 0;
  }
}

/* nav stuff */

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, .95);
    position: absolute;
    top: 60px; /* Adjust to your header height */
    right: 0;
    padding: 1em;
    transition: all 0.6s ease;
    z-index: 9001;
    width: 100%;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    text-align: center;
    padding: 0.5rem 0;
  }
  .sticky-nav {
    padding: 0rem 1rem;
  }
  .sticky-nav button {
    margin-bottom: 0;
  }

  /* .hero {
    height: 190px;
  } */
  .hero-heading {
    font-size: 2.6rem;
  }
  .section {
    padding: 24rem 0 2rem;
  }
  /* .hero {
    padding: 16rem 0 14rem;
  } */
  .section-description {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  .phone {
    top: -14rem;
    right: 5rem;
    max-height: 510px;
  }
  .phone + .phone {
    top: -12rem;
    max-height: 472px;
  }
  .categories {
    padding: 15rem 0 8rem;
  }
  .column.buttons {
    display: block;
  }
}

/* Bigger than 1000 */
@media (min-width: 1000px) {
  .section {
    padding: 38rem 0 2rem;
  }
  /* .hero {
    padding: 22rem 0;
  } */
  .hero-heading {
    font-size: 3.0rem;
  }
  .phone {
    top: -16rem;
    max-height: 615px;
  }
  .phone + .phone {
    top: -14rem;
    max-height: 570px;
  }
}