/*
 * Wedding Colors:
 * -Peach: #FFDAB9 (#FFECDC pale peach for gradient)
 * -Light blue: #6DBAFF
 * -Sapphire blue: #333399
 *
 */

body {
    background-color: #6DBAFF;
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    padding-top: 5px;
}
h1 {
    font-size: 300%;
}
h2 {
    font-size: 200%;
}
h3 {
    font-size: 150%;
}
h4 {
    font-size: 120%;
    font-family: 'Quicksand', sans-serif;
}
p {
    font-size: 70%;
    font-family: 'Quicksand', sans-serif;
}
img {
    width: 100%;
}

/* No background gradient on the carousel controls */
.carousel-control.left {
    background-image: none;
}
.carousel-control.right {
    background-image: none;
}

#rsvpForm {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
}

@media (min-width: 768px) {
  .container {
    max-width: 900px;
  }
}

/* Default font sizes for small and large screens*/
@media screen and (min-width: 768px) {
    body{font-size: 24px;}
}
@media (max-width: @screen-xs) {
    body{font-size: 10px;}
}
@media (max-width: @screen-sm) {
    body{font-size: 14px;}
}

/* Navbar */
@media(min-width:768px) {
    .navbar-fixed-top {
        padding: 10px 0;
    }
    .navbar-fixed-top .navbar-brand {
        font-size: 1.5em;
    }
}
.navbar {
    background-image: linear-gradient(to bottom,#FFECDC 0,#FFDAB9 100%);
    opacity: 0.9;
}
.navbar-nav>li>a {
    font-family: 'Oswald', sans-serif;
}

/* Header Section */
header {
    margin-bottom: 0px;
}
header h1 {
    font-size: 500%;
}

/* Content containers */
.ctr-a {
    background-color: #FFF;
}
.ctr-b {
    background-color: #EEE;
}
.ctr-a, .ctr-b {
    padding-top: 50px;
    padding-bottom: 50px;
}

.text-danger {
    color: #a94442;
}

/* Footer Section */
.footer {
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 19px;
    color: #777;
    border-top: 1px solid #e5e5e5;
    background-color: #FFF;
}

/* Countdown Styling */
.simply-countdown {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Quicksand', sans-serif;
}
.simply-countdown > .simply-section {
    width: 100px;
    height: 100px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    float: left;
    margin: 15px;
    background: rgba(51,51,153,1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 50%;
}
.simply-countdown > .simply-section > div {
    /* countdown block inner div */
}
.simply-countdown > .simply-section .simply-amount,
.simply-countdown > .simply-section .simply-word {
    display: block;
    text-align: center;
    color: white;
}
.simply-countdown > .simply-section .simply-amount {
    font-size: 30px;
}
.simply-countdown > .simply-section .simply-word {
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    font-size: 12px;
}
