

/* COLORS */

	:root {
        --white: #FFFFFF;
        --black: #1D1D1D;
        --light-grey: #EEEEEE;
        --dark-blue: #232841;
        --gold: #FFC857;
        --champagne: #C4AA70;
    }

    body {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        line-height: 150%;
        font-weight: 300;
        color: var(--black);
        margin: 0;
        position: relative;

        animation: fadeInAnimation ease 0.5s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
    }

    @keyframes fadeInAnimation {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
         }
    }

    main {
        padding-top: 64px;
    }


/* NAVIGATION */

    nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100vw;
        background: var(--light-grey);
        position: fixed;
        top: 0;
        z-index: 100;
        border-bottom: 1px solid var(--champagne);
    }

    nav a {
        color: var(--black);
        text-decoration: none;
        padding: 20px 30px;
        font-size: 16px;
        text-transform: capitalize;
        transition: 0.3s;
    }

    nav a:hover {
        background: var(--champagne);
        color: var(--black);
    }

    #nav-mobile-header {
        display: none;
    }

    @media (max-width: 960px) {
        nav {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            width: 100vw;
            height: 100vh;
            padding-top: 100px;
            background: var(--white);
            position: fixed;
            top: 0;
            z-index: 99;
            border-bottom: none;
        }

        nav a {
            width: 100%;
            text-align: center;
        }

        #nav-mobile-header {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            padding: 15px;

            width: 100vw;
            box-sizing: border-box;
            background: var(--white);
            position: fixed;
            top: 0;
            z-index: 100;
        }

        #nav-mobile-header img {
            height: 48px;
        }

        #nav-icon {
            width: 48px;
            height: 48px;
            position: relative;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            cursor: pointer;
        }

        #nav-icon span {
            display: block;
            position: absolute;
            height: 4px;
            width: 100%;
            background: var(--dark-blue);
            border-radius: 4px;
            opacity: 1;
            left: 0;
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
        }

        #nav-icon span:nth-child(1) {
            top: 6px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        #nav-icon span:nth-child(2) {
            top: 22px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        #nav-icon span:nth-child(3) {
            top: 38px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        #nav-icon.open span:nth-child(1) {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
            top: 5px;
            left: 7px;
        }

        #nav-icon.open span:nth-child(2) {
            width: 0;
            opacity: 0;
        }

        #nav-icon.open span:nth-child(3) {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
            top: 39px;
            left: 7px;
        }
    }

    .hidden {
        display: none;
    }

    .open {
        display: flex;
    }


/* HERO */

    .hero-primary {
        position: relative;
        width: 100vw;
        height: 75vh;
        display: grid;
        align-items: center;
        justify-items: center;
        overflow: hidden;
    }

    .hero-primary .image {
        display: block;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        object-fit: cover;
        grid-area: 1 / 1 / 2 / 2;
    }

    .hero-primary .image-desktop {
        display: block;
    }

    .hero-primary .image-mobile {
        display: none;
    }

    @media (max-width: 800px) {
        .hero-primary {
            height: 500px;
        }

        .hero-primary .image {
            height: 500px;
        }

        .hero-primary .image-desktop {
            display: none;
        }

        .hero-primary .image-mobile {
            display: block;
        }
    }

    .hero-overlay {
        position: absolute;
        z-index: 5;
        grid-area: 1 / 1 / 2 / 2;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-primary .hero-content {
        position: absolute;
        z-index: 10;
        grid-area: 1 / 1 / 2 / 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--white);
    }

    .hero-primary .date {
        font-size: 22px;
        line-height: 28px;
        padding: 30px 0 10px 0;
    }

    .hero-primary .venue {
        font-size: 28px;
        line-height: 40px;
        padding: 10px 0 30px 0;
    }

    .hero-secondary {
        position: relative;
        width: 100vw;
        height: 75vh;
        display: grid;
        align-items: center;
        justify-items: center;
        overflow: hidden;
    }

    .hero-secondary .image {
        display: block;
        width: 100%;
        height: 75vh;
        max-height: 100vh;
        object-fit: cover;
        grid-area: 1 / 1 / 2 / 2;
    }

    @media (max-width: 800px) {
        .hero-secondary {
            height: 500px;
        }

        .hero-secondary .image {
            height: 500px;
        }
    }

    .hero-secondary .overlay {
        position: absolute;
        z-index: 5;
        grid-area: 1 / 1 / 2 / 2;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
    }

    .hero-secondary .hero-content {
        position: absolute;
        z-index: 10;
        grid-area: 1 / 1 / 2 / 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--white);
    }

    .hero-content .location {
        display: block;
        color: var(--white);
        text-decoration: none;
        padding: 20px 30px;
        font-size: 24px;
        line-height: 32px;
        transition: 0.3s;
    }

    .hero-content .location:hover {
        color: var(--champagne);
    }



/* HEADINGS */

    h1 {
        color: var(--white);
        font-family: Montaga, serif;
        font-size: 80px;
        font-style: normal;
        font-weight: 400;
        line-height: 120%;
        text-align: center;
    }

    h2 {
        font-family: Montaga, serif;
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 115%;
        text-align: center;
    }

    h3 {
        font-family: Montaga, serif;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
    }

    h4 {
        font-family: Montaga, serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
        text-align: center;
    }

    @media (max-width: 800px) {
        h1 {
            font-size: 48px;
        }
        h2 {
            font-size: 36px;
        }
        h3 {
            font-size: 24px;
        }
        h4 {
            font-size: 24px;
        }
    }


    a {
		text-decoration: underline;
		color: var(--dark-blue);
        transition: 0.3s;
	}

    a:hover {
        color: var(--champagne);
    }

    p {
        display: block;
        padding: 15px 0;
    }

    p.narrow {
        padding: 15px max(calc((100% - 600px) / 2), 15px);
    }

    .spacer-50 {
        height: 50px;
    }

     ul {
        padding: 15px 0 15px 40px;
        list-style-type: disc;
        list-style-position: outside;
    }

    li:not(:last-child) {
        padding-bottom: 10px;
    }

    strong {
        font-weight: 600;
    }

    .subtitle {
        font-weight: 600;
        padding-top: 10px;
    }


/* BUTTONS */

    .btn-grey {
        display: inline-block;
        border: 1px solid #000;
        background: var(--light-grey);
        padding: 18px 26px;

        font-family: Montaga;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        color: var(--black);

        cursor: pointer;
        transition: 0.3s;
    }

    a.btn-grey {
        color: var(--black);
        text-decoration: none;
    }

    a.btn-grey:hover {
        color: var(--black);
    }

    .btn-grey:hover {
        background: var(--champagne);
    }



/* SECTIONS */

    .section-1 {
        display: grid;
        grid-template-columns: 1fr;
        padding: 90px max(calc((100vw - 1000px) / 2), 15px);
    }

    .section-1-1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 90px max(calc((100vw - 1000px) / 2), 15px);
    }

    .section-1-2 {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 30px;
        padding: 90px max(calc((100vw - 1000px) / 2), 15px);
    }

    .section-auto-2 {
        display: grid;
        grid-template-columns: auto 2fr;
        gap: 120px;
        padding: 90px max(calc((100vw - 1000px) / 2), 15px);
    }

    .section-1-1-1 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
        padding: 90px max(calc((100vw - 1000px) / 2), 15px);
    }
    
    @media (max-width: 800px) {

        .section-auto-2 {
            grid-template-columns: 1fr;
            gap: 30px;
        }

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

    .section-center {
        justify-items: center;
    }

    .section-v-center {
        align-items: center;
    }

    .bg-blue {
        background: var(--dark-blue);
        color: var(--white);
    }

    .bg-blue h3 {
        color: var(--champagne);
    }

    .bg-light-grey {
        background: var(--light-grey);
    }

    .bg-champagne {
        background: var(--champagne);
    }

    .memories-title {
        margin: 0 auto;
    }

    .icon-diamond-left {
        text-align: left;
        padding-bottom: 15px;
    }

    .icon-diamond-left img {
        width: 50%;
    }

    .icon-diamond-right {
        text-align: right;
        padding-top: 15px;
    }

    .icon-diamond-right img {
        width: 50%;
    }

    .icon-diamond-short {
        width: 35px;
        padding-top: 5px;
    }

    .icon-swirl {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: nowrap;
        padding: 10px 0;
    }

    .icon-swirl img {
        width: 40%;
        max-width: 150px;
    }

    .icon-hanger {
        height: 16px;
    }

    .center {
        text-align: center;
    }



/* SCHEDULE */

    .schedule-title {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding-bottom: 20px;
    }

    .schedule-block {
        text-align: center;
        padding-bottom: 60px;
    }

    .schedule-block .date {
        font-family: Montaga, serif;
        font-size: 22px;
        line-height: 28px;
        padding: 10px 0;
    }

    .schedule-block .dress-code {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        background: var(--white);
        border: 1px solid var(--champagne);
        padding: 10px 20px;
        margin: 10px 0 30px 0;
        color: var(--champagne);
        font-size: 16px;
    }

    .schedule-item {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        font-size: 20px;
        line-height: 24px;
        padding: 20px 0;
    }

    .schedule-item .time {
        text-align: center;
        font-size: 16px;
        color: #999999;
    }

    .schedule-item .divider {
        height: 1px;
        width: 50px;
        background: #CCCCCC;
        margin: 5px auto;
    }

    .schedule-item .title {
        text-align: center;
    }

    .schedule-item .description {
        font-size: 18px;
        line-height: 24px;
        padding: 5px 0;
    }


/* FOOTER */

    footer {
        display: grid;
        grid-template-columns: 1fr 2fr 3fr;
        gap: 30px;
        padding: 90px calc((100vw - 1000px) / 2);
        font-family: Montaga, serif;
    }

    @media (max-width: 800px) {
        footer {
            grid-template-columns: 1fr;
        }

        footer div {
            text-align: center;
        }
    }

    footer .logo {
        width: 120px;
        margin: 0 auto 30px auto;
    }

    footer .links {
        display: flex;
        flex-direction: column;
    }

    footer .links a {
        line-height: 160%;
        text-decoration: none;
        color: var(--black);
        padding: 10px 0;
        transition: 0.3s;
    }

    footer .links a:hover {
        color: var(--champagne);
    }

    footer .address {
        padding: 10px 0;
    }

    footer .legal {
        padding: 10px 0;
    }

    footer .map {
        position: relative;
        overflow:hidden;
        position:relative;
        height: 300px;
    }

    footer .map iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }




/* TRAVEL COMPONENTS */

    .travel-links {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
        padding: 30px 0 90px 0;
    }

    @media (max-width: 800px) {
        .travel-links {
            grid-template-columns: 1fr 1fr;
        }
    }

    .travel-link {
        text-align: center;
        padding: 25px 15px;
        transition: 0.3s;
        cursor: pointer;
        color: var(--black);
        text-decoration: none;
    }

    .travel-link:hover {
        background: var(--light-grey);
    }

    .travel-link img {
        height: 40px;
        padding: 10px;
    }

    .disclaimer-block {
        background: var(--light-grey);
        border: 1px solid var(--black);
        padding: 30px 50px;
    }

    .travel-block {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 100px;
        border-bottom: 1px solid var(--black);
        padding: 30px 0;
    }

    .travel-block:last-child {
        border-bottom: none;
    }

    .travel-block .heading {
        text-align: center;
    }

    .travel-block img {
        padding: 15px;
    }

    .travel-block h4 {
        color: var(--champagne);
    }

    .travel-block ul {
        padding: 15px 0 15px 40px;
        list-style-type: disc;
        list-style-position: outside;
    }

    .travel-block li:not(:last-child) {
        padding-bottom: 10px;
    }

    @media (max-width: 800px) {
        .travel-block {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

    .travel-hotel-block {
        padding: 15px 0 15px 30px;
    }

    .travel-hotels-grid .divider {
        background: var(--black);
        height: 100%;
    }

/* ATTRACTIONS COMPONENTS */

    .attraction-block {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .attraction-block:not(:last-child) {
        padding-bottom: 70px;
    }

    .attraction-block img {
        height: 40px;
    }

    .attraction-block .description {
        text-align: center;
        padding: 15px max(calc((100% - 500px) / 2), 15px);
    }

    .attraction-extra {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .attraction-extra p {
        max-width: 500px;
    }

    .attraction-extra .flourish {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 600px;
    }

    .attraction-extra .flourish img {
        height: 25px;
    }




