@import url('https://fonts.googleapis.com/css?family=Cormorant+SC&display=swap');
@font-face {
    font-family: 'Shorelines Script';
    src: url(./fonts/Shorelines\ Script\ Bold.otf);
}
@font-face {
    font-family: 'England';
    src: url(./fonts/England_PL.ttf);
}
@font-face {
    font-family: 'Monotype';
    src: url(./fonts/MonotypeCorsiva_Regular.ttf);
}
:root {
    --heightMenu: 50px;
    --backgroudMain: #fff;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
    font-family: 'Cormorant SC', serif;
}
body {
    position: relative;
    min-height: 100%;
    padding-bottom: 69px;
    background-color: var(--backgroudMain);
}
a {
    text-decoration: none;
    color: black;
}
ul {
    list-style-type: none;
}
nav .hamburger-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--heightMenu);
    border-bottom: 2px solid rgba(0, 0, 0, .1);
    background-color: var(--backgroudMain);
    z-index: 2;
}
button.hamburger {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    transition: transform 0.3s 0.1s ease-in-out, visibility 0s 0.4s;
}
button.hamburger:focus{
	outline-color: transparent;
}
.hamburger__box {
    width: 35px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger__inner {
    width: 100%;
    height: 1px;
    background-color: black;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.1s 0.2s ease-in-out;
}
.hamburger__inner::before, .hamburger__inner::after {
    width: 100%;
    height: 1px;
    background-color: black;
    position: absolute;
    content: '';
    left: 0;
    transition: transform 0.2s 0.2s ease-in-out;
}
.hamburger__inner::before {
    top: -10px;
}
.hamburger__inner::after {
    top: 10px;
}
.hamburger--active .hamburger__inner {
    background-color: transparent;
}
.hamburger--active .hamburger__inner:before {
    transform: translateY(10px) rotate(45deg);
}
.hamburger--active .hamburger__inner:after {
    transform: translateY(-10px) rotate(-45deg);
}
nav .menu-mobile {
	position: fixed;
    left: 0;
    top: var(--heightMenu);
	width: 100%;
    height: calc(100% - var(--heightMenu));
	transition: .5s;
	transform: translateX(-100%);
	background-color: #fff;
	z-index: 1;
}
nav .menu-mobile--active {
    transform: translateX(0);
}
nav .menu-mobile .menu-mobile-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
nav .menu-mobile .menu-mobile-container ul.menu-mobile-list {
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-evenly;
    align-items: center;
}
nav .menu-mobile .menu-mobile-container ul.menu-mobile-list li {
    transform: translate3d(0, 200vh, 0);
	transition: transform .5s ease-out;
}
nav .menu-mobile .menu-mobile-container ul.menu-mobile-list li a {
    font-size: 25px;
    transition: all .5s ease-out;
}
nav .menu-mobile--active .menu-mobile-container ul.menu-mobile-list li {
    transform: translateZ(0);
}
nav .menu-mobile--active .menu-mobile-container ul.menu-mobile-list li:first-child {
	transition-delay: .15s
}
nav .menu-mobile--active .menu-mobile-container ul.menu-mobile-list li:nth-child(2) {
	transition-delay: .3s
}
nav .menu-mobile--active .menu-mobile-container ul.menu-mobile-list li:nth-child(3) {
	transition-delay: .45s
}
nav .menu-mobile--active .menu-mobile-container ul.menu-mobile-list li:nth-child(4) {
	transition-delay: .6s
}
nav .menu-mobile--active .menu-mobile-container ul.menu-mobile-list li:last-child {
	transition-delay: .75s
}
.menu-desktop {
    display: none;
}
header {
    position: relative;
    margin-top: var(--heightMenu);
    width: 100%;
    height: auto;
    text-align: center;
    padding: ;
}
header figure {
    margin-left: 15px;
    width: 80%;
    height: auto;
}
header figure img {
    width: 100%;
    height: auto;
}
header h1 {
    margin-top: -15px;
    width: 100%;
    font-size: 70px;
    font-family: 'England';
    font-weight: normal;
}
#guests-table {
    display: none;
}
main.column-wrapper {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding-top: 20px;
}

main.column-wrapper h2 {
    font-size: 18px;
    font-weight: normal;
}
main.column-wrapper .row-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}  
main.column-wrapper .row-container ul#timer {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width: 100%;
    list-style: none;    
}
main.column-wrapper .row-container ul#timer li {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 32px;
    background: linear-gradient(225deg, #ffffff, #e2e2e2);
    box-shadow:  -12px 12px 14px #c6c6c6, 
                 12px -12px 14px #ffffff;
}
main.column-wrapper .row-container ul#timer li span {
    font-size: 26px;
}
main.column-wrapper .row-container ul#timer li p {
    font-size: 10px;
    text-transform: uppercase;
}

main.column-wrapper .row-container ul#timer li.timer-secs {
    display: none;;
}
article {
    padding: 35px 15px 80px 15px;
    text-align: center;
}
article h3 {
    font-family: 'Monotype', serif;
    font-size: 14px;
    padding-bottom: 13px;
}
article p {
    font-family: 'Cormorant SC', serif;
    font-size: 14px;
}
.fwrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    height: auto;
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, .1);;
}
footer {
    margin: 0 auto;
    padding: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}
footer h3, footer p {
    text-align: left;
}

footer h3 {
    font-size: 16px;
}

footer p {
    font-size: 12px;
}

@media (min-width: 425px) {
    header h1 {
        font-size: 83px;
    }
    main.column-wrapper h2 {
        font-size: 21px;
    }
    main.column-wrapper .row-container ul#timer li.timer-secs {
        display: flex;
    }
}
@media (min-width: 550px) {
    body {
        padding-bottom: 78px;
    }
    header h1 {
        font-size: 98px;
    }
    main.column-wrapper h2 {
        font-size: 25px;
    }
    main.column-wrapper .row-container ul#timer {
        width: 550px;
    }
    article {
        padding-top:50px;
    }
    article h3 {
        padding-bottom: 16px;
    }
    article h3, article p {
        font-size: 17px;
    }
    footer h3 {
        font-size: 19px;
    }
    footer p {
        font-size: 14px;
    }
}
@media (min-width: 800px) {
    header figure {
        margin: 0 auto;
        transform: translateX(-25px);
        height: 265px;
        width: 544px;
    }
    header figure img {
        height: 100%;
        width: 100%;
    }
}
@media (min-width: 1024px) {
    nav {
        position: sticky;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        background-color: var(--backgroudMain);
        z-index: 2;
    }
    nav .hamburger-wrapper, nav .menu-mobile {
        display: none;
    }
    nav .menu-desktop {
        display: flex;
        justify-content: center;
        align-items: center;
        height: var(--heightMenu);
    }
    nav .menu-desktop ul.menu-desktop-list {
        display: flex;
        justify-content: space-around;
        width: 1024px;
    }
    nav .menu-desktop ul.menu-desktop-list li{
        position: relative;
        overflow: hidden;
    }
    nav .menu-desktop ul.menu-desktop-list li a {
        line-height: 30px;
    }
    nav .menu-desktop ul.menu-desktop-list li::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 1px;
        background-color: rgba(0, 0, 0, .3);
        transform: translateX(-100%);
        transition: .2s .1s linear;
    }
    nav .menu-desktop ul.menu-desktop-list li:hover::before{
        transform: translate(0);
    }
    header {
        margin-top: 0;
    }
}
@media (max-width: 1440px) {}
