:root {
    --black: #101010;
    --white: #F8F8F8;
    /*--silver: #C0C0C0;*/
    --orange: #D48E30;
    --silver: #B4B4B4;
    --silver-dark: #909090;
    --gold: #FDB813;
}

@font-face {
    font-family: 'Dancing Script';
    src: url("/assets/fonts/DancingScript-VariableFont_wght.ttf") format("truetype supports variations"),
         url("/assets/fonts/DancingScript-VariableFont_wght.ttf") format("truetype-variations");
    font-weight: 100 1000;
    font-stretch: 25% 151%;
}

@font-face {
    font-family: 'Dancing Script Bold';
    src: url("/assets/fonts/DancingScript-Bold.ttf") format("truetype");
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Marck Script';
    src: url("/assets/fonts/MarckScript-regular.ttf") format("truetype");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Merienda';
    src: url("/assets/fonts/Merienda-regular.ttf") format("truetype");
    font-weight: normal;
    font-display: swap;
}

div {
    box-sizing: border-box;
}

img {
    border-radius: 4px;
}

body {
  background-color: var(--white);
  padding: 0;
  margin: 0;
  font-family: "Merienda", Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  padding-top: 64px;
}

h1, h2, h3, h4, h5, h6 {
    margin:0px;
    padding: 0px;
}

.mobile-margin {
    margin-top: 2rem;
}

a {
    color: var(--silver-dark);
    cursor: pointer;
}

/* unvisited link */
a:link {
    color: var(--silver-dark);
}

/* visited link */
a:visited {
    color: var(--silver-dark);
}

/* mouse over link */
a:hover {
    color: var(--silver);
}

/* selected link */
a:active {
    color: var(--silver);
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expand_more {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-left: 4px
}

.expand_less {
    display:none;
    width: 32px;
    height: 32px;
    margin-left: 4px
}

.active > .expand_less {
    display: inline-block;
}

.active > .expand_more {
    display: none;
}

.divider {
  margin: 0.5rem 0;
  border: 1px solid #3f6e49;
}

.header {
    z-index: 103;
    position: fixed;
    left:0;
    right: 0;
    top: 0px;
    height: 72px;
    background: linear-gradient(to bottom, #F8F8F8F8, #F8F8F899);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-left {
    flex: 1;
}

.header-right {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.spacer {
    height: 8px;
}

.logo {
    width: 140px;
    height: 64px;
}

.icon {
    height: 24px;
    width: 24px;
    margin: 4px;
    cursor: pointer;
}

.icon.instagramClick {
    height: 20px;
    width: 20px;
}

.menu-icon {
    position: absolute;
    left: 16px;
    top: 12px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.hidden {
    opacity: 0  !important;;
    pointer-events: none  !important;
}

.hidden.menu-cover {
    transition-delay: 250ms;
}

.hidden > .drawer-container {
    left: -300px;
    transition-delay: 0ms;
}

.menu-cover {
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition-duration: 500ms;
    transition-delay: 0ms;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.25);
}

.drawer-container {
    width: 100%;
    top: 80px;
    bottom: 0;
    left: 0;
    padding: 24px 16px;
    position: fixed;
    z-index: 102;
    transition-duration: 500ms;
    transition-delay: 250ms;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: scroll;
}

.menu-link{
    font-size: 28px;
    margin-bottom: 16px;
    display: flex;
}

.prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px 24px;
}

.price-row {
    font-size: 20px;
    line-height: 36px;
    display: flex;
    flex-direction: row;
    max-width: 400px;
    justify-content: space-between;
    width: 100%;
}

.collapsible {
    margin-left: 32px;
    cursor: pointer;
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.collapsible-content.active {
    margin-bottom: 24px;
}

.menu-link.menu-link-small{
    font-size: 24px;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.introduction{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 42px;
}


.brides{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px 42px;
}

.divider-image {
    width: 100%;
    height: 56px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: flex-end;
}

.divider-image img {
    object-fit: contain;
    text-align: center;
    max-height: 400px;
    max-width: 100%;
    width:100%;
}

.text {
    font-size: 18px;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 8px;
}

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

.signature {
    font-size: 32px;
    line-height: 36px;
    text-align: justify;
    padding-bottom: 8px;
    font-family: "Dancing Script", Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
}

.contact {
    padding: 24px 16px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-button {
    padding: 8px 16px;
    background-color: var(--white);
    cursor: pointer;
    color: var(--orange);
    font-size: 24px;
    line-height: 28px;
    border: 1px solid var(--orange);
    border-radius: 4px;
    text-align: center;
    width: 328px;
    max-width: 100%;
    margin: 12px 0px 16px;
}

.link-button span{
    color: var(--orange);
}

.small-gallery {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 50%;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 18px 0 24px;
}

.small-gallery img {
    padding: 4px;
    border-radius: 8px;
    width: 50%;
    cursor: pointer;
    box-sizing: border-box;
    height: 200px;
    object-fit: cover;
}


@media (min-width: 992px) {
    .small-gallery img  {
        height: 400px;
        width: 25%;
    }

    .hero-slideshow {
        height: 600px;
    }
}

.desktop {
    display: none;
}

@media (min-width: 768px) {
    .desktop {
        display: block;
    }
    .small-gallery img  {
        height: 300px;
        width: 25%;
    }

    .hero-slideshow {
        height: 600px;
    }
}

.directions {
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.directions .text {
    font-size: 20px;
    line-height: 24px;
    padding: 0 16px 8px;
}

.directions .link {
    color:  var(--orange);
}

.directions-map {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.directions-map img {
    max-width: 960px;
    width: 100%;
    cursor: pointer;
}

.main-header {
    text-align: center;
    font-size: 62px;
    line-height: 72px;
    font-weight: bold;
    font-family: "Dancing Script Bold", "Dancing Script", Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    margin: 0;
    margin-bottom: 8px;
    color: var(--orange);
}


.main-header-sub {
    text-align: center;
    font-size: 42px;
    line-height: 48px;
    font-weight: bold;
    font-family: "Dancing Script", Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    padding-bottom: 24px;
    margin: 0;
    color: var(--orange);
}

.sub-header {
    text-align: center;
    font-size: 56px;
    line-height: 64px;
    font-family: "Marck Script", Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
    padding-bottom: 24px;
    color: var(--orange);
}

.dialog {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 64px 32px;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #FFFFFF66;
    z-index: 200;
}

.dialog .content {
    padding: 24px;
    background-color: white;
    width: 100%;
    height: 100%;
    max-height: 600px;
    max-width: 500px;
    overflow: scroll;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid var(--silver-dark);
    align-items: flex-start;
}

.dialog .content h3 {
    padding-bottom: 18px;
}

.dialog .content .section {
    padding-bottom: 12px;
}

.footer {
    border-top: 2px solid var(--silver-dark);
    background-color: #F8F8F8;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footer > .footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 992px;
    width: 100%;
}

.footer >.footer-content > .footer-additional,.footer >.footer-content > .footer-address,.footer >.footer-content > .footer-sites   {
    display: flex;
    flex-direction: column;
    margin: 0 2rem;
    color: var(--silver-dark);
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    width: 100%;
    max-width: 992px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 1rem;
}

.portrait {
    margin-right: 2rem;
    position: relative;
    height: 120px;
}

.portrait > img {
    height: 120px;
    border-radius: 6px;
}

.portrait::after {
    box-shadow: inset 0 0 3px 2px var(--white);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.directions-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.directions-info {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {

    .icon {
        height: 32px;
        width: 32px;
        margin: 8px;
    }

    .icon.instagramClick {
        height: 28px;
        width: 28px;
    }

    .drawer-container {
        width: 300px;
    }

    .directions-content {
        flex-direction: row;
    }
}



