* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

p { padding: 0; margin: 0; }

body {
    background: #07191a url(../img/bg.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    text-align: center;
    font-family: 'Cormorant', serif;
    color: #f9ac5b;
    font-weight: 500;
    min-height: 100vh;
}

a {
    color: #f9ac5b;
    text-decoration: none;
    display: block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    color: #ffdbaa;
}

.landing-page {
    position: relative;
    padding: 10rem 0;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.container {
    text-align: center;
}

.names { 
    width: 36%;
}

.date {
    font-size: 5.5rem;
    margin-bottom: 3rem;
}

.desc {
    font-size: 2rem;
    line-height: 1.4;
}

.components {
   display: flex;
}

.components .component {
    flex-basis: 0;
    flex-grow: 1;
    padding: 2rem;
    background-color: rgba(2, 21, 23, .5);
    border-radius: 1rem;
}

.components .component .component-title {
    font-weight: 700;
    font-size: 2.4rem;
}

.components .component p {
    font-size: 1.8rem;
    line-height: 1.3;
}

.icon {
    width: 3rem;
}

.flower {
    width: 16vw;
    position: absolute;
}

.flower.upside-down {
    transform: rotate(180deg);
}

.flower.top-right {
    top: 2rem;
    right: 2rem;
}

.flower.bottom-left {
    bottom: 2rem;
    left: 2rem;
}

.button {
    display: inline-block;
    font-family: 'Roboto', serif;
    background-color: #f9bd6e;
    background-image: linear-gradient(135deg, #f9bd6e 0%, #d89f3b 100%);
    color: #021517; /* #193A37 */
    padding: 1.6rem 3.8rem;
    border: 2px solid #f9bd6e;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 .5rem;
    border-radius: 5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
    .button:hover {
        background-color: #ffca83;
        background-image: none;
        border: 2px solid #ffca83;
        color: #021517;
    }

.button.btn-outline {
    background-color: transparent;
    background-image: none;
    color: #f9bd6e;
}

    .button.btn-outline:hover {
        background-color: #ffca83;
        background-image: none;
        border: 2px solid #ffca83;
        color: #021517;
    }

h2 {
    font-size: 3rem;
}

p {
    font-size: 1.8rem;
}

.form label {
    display: block;
    font-size: 1.8rem;
    text-align: left;
}

.form .form-control {
    padding: 1.6rem;
    font-size: 1.6rem
}

.modal-content {
    background-color: transparent;
    background: #07191a url(../img/bg.jpg) no-repeat center center;
}

.modal-header {
    padding: 2rem 3rem;
    background-color: #f9bd6e;
    background-image: linear-gradient(135deg, #f9bd6e 0%, #d89f3b 100%);
    border-bottom: none;
}

.modal-header .modal-title {
    color: #021517;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.modal-header .btn-close {
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    opacity: 1;
    background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'><path d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/></svg>") center/2rem auto no-repeat;
}

/* Responsive styles */
@media (max-width: 1450px) {
    html {
        font-size: 60%;
    }

    .landing-page {
        padding: 6rem 0;
        min-height: 100vh;
    }

    .names { 
        width: 30%;
    }

    .date {
        margin-bottom: 1rem;
    }

    .icon {
        width: 2rem;
    }

    .components .component .component-title {
        font-size: 2.2rem;
        margin: 0;
    }

    .desc {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 1000px) {
    html {
        font-size: 62.5%;
    }

    .names {
        width: 60%;
    }
}


@media (max-width: 790px) {
    .container {
        max-width: 100%;
    }

    .components {
        display: block;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 60%;
    }

    .landing-page {
        padding: 10rem 0;
    }

    .names {
        width: 70%;
    }
    
    .date {
        font-size: 4.5rem;
        line-height: 1;
        margin-bottom: 3rem;
    }

    .flower {
        width: 25vw;
    }

    .components {
        width: 90vw;
        margin: 0 auto;
    }

    .components .component {
        margin-bottom: 2rem;
    }

    .button {
        margin: 0 0.5rem 1.5rem 0;
    }

    .form {
        width: 90vw;
        margin: 0 auto;
    }
}
