body {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --color1: #ccb186;
    --bg1: #f4f2f3;
}

hr {
    margin: 1rem auto;
    border: 0;
    width: 150px;
    border-top: 3px solid var(--color1);
}

h1, h2 {
    font-family: 'Parisienne', cursive;
}

.color1 {
    color: var(--color1);
}

.box-wrap {
    max-width: 780px;
}

#bg-home {
    left: 0;
    opacity: 0.7;
}

#home {
    background: linear-gradient(to bottom, black 60%, var(--color1));
}

.home-title {
    font-size: 50px;
}

.date {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    list-style-type: none;
    display: inline-block;
}

.date li {
    display: inline-block;
    margin-top: -10px;
}

.date .day, .date .month {
    border: 1px solid white;
    border-left: none;
    border-right: none;
    font-size: 1rem;
}

.date .year {
    padding: 0 10px;
}

.date .year span {
    display: block;
    font-size: 1rem;
    margin-top: -10px;
}

.flower, .flower-rotate {
    width: 90%;
}

.flower-rotate {
    transform: rotateY('90deg');
}

@media screen and (min-width: 576px) {
    .date {
        font-size: 4rem;
    }

    .date .day, .date .month {
        font-size: 2rem;
    }
}
/* COUNTDOWN SECTION START */

.counter-container:before {
    content: "F a l t a n";
    position: absolute;
    background: white;
    text-align: center;
    font-size: 20px;
    font-family: 'Parisienne', cursive;
    font-weight: 400;
    left: 50%;
    width: 120px;
    margin-left: -60px;
    margin-top: -20px;
    z-index: 1;
}

.counter-container {
    border: 1px solid var(--color1);
    position: relative;
    margin: 40px auto;
    max-width: 600px;
}

.counter-container::after {
    content: "";
    border: 1px solid var(--color1);
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    position: absolute;
}

#counter {
    margin: 15px 0;
    font-size: 2.5rem;
}

#counter span {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
}

/* COUNTDOWN END */
/* EVENT START */
/* EVENT END */
/* ATTENDING START*/
.bg-color1 {
    background-color: var(--bg1);
}

.bg-flowers {
    background: url(../img/flowers.webp);
    background-size: contain;
}

.heart {
    background: url(../img/heart-fill.svg);
    display: block;
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
    transition: opacity 0.2s ease-in-out;
}

.btn-check:checked+.btn .heart {
    opacity: 0.9;
}

#submitSuccessful, #submitError {
    z-index: 1;
    display: none;
}

#confirmAttending {
    padding-top: 100px;
}
/* ATTENDING END*/
/* GALLERY START*/
.gallery-slider {
    height: 500px;
}

.slider-item {
    margin: 50px 0;
    position: relative;
}

.img-frame {
    width: 250px;
    cursor: pointer;
}

.slider-item img {
    height: 350px;
    border: 10px solid white;
    transition: all 1s ease;
}

.slick-active img {
    height: 390px;
    margin-top: -20px;
    margin-left: -20px;
}

.rotate-2 {
    transform: rotate(-2deg);
}

.rotate-3 {
    transform: rotate(3deg);
}

.rotate-5 {
    transform: rotate(5deg); 
}
/* GALLERY END */
/* FOOTER START */
footer {
    font-size: .8rem;
}