/* THEME ------------------------------------------------------------------ */

body {
    border: 0;
    margin: 0;
    padding: 0;

    background-image: linear-gradient(to right, rgb(243, 243, 243), rgb(255, 255, 255), rgb(243, 243, 243));
    font-family: 'Dosis', sans-serif;
    font-size: 12pt;
    min-width: 600px;
}

a { text-decoration: none; }

header {
    background-image: url(luminoso-entertainment.png);
    background-position: bottom;
    background-repeat: no-repeat;
    height: calc(48px + 165px);
}

header .facebook {
    align-items: center;
    background-color: rgb(250, 250, 250);
    background-image: linear-gradient(to right, rgb(237, 237, 237), rgb(255, 255, 255), rgb(237, 237, 237));
    border-bottom: 1px solid rgb(255, 255, 255);
    color: rgb(128, 128, 128);
    display: flex;
    flex-direction: row;
    font-style: italic;
    height: 48px;
    justify-content: flex-end;
}

header .facebook a {
    background-image: url('facebook.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
    height: 1.5em;
    margin: 0 1em 0 0.5em;
    transition: all 0.15s ease-out;
    width: 1.5em;
}

header .facebook a::after {
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    content: '';
    height: 1.5em;
    opacity: 0;
    position: absolute;
    transition: opacity 0.15s ease-out;
    width: 1.5em;
    z-index: -1;
}

header .facebook a:hover {
    transform: scale(1.1, 1.1);
}

header .facebook a:hover::after {
    opacity: 1;
}

nav {
    border-top: 1px solid rgb(224, 224, 224);
    margin: 50px auto 50px auto;
    width: 600px;
}

nav ul {
    box-sizing: border-box;
    display: flex;
    font-size: 1.2em;
    font-variant-caps: all-small-caps;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 0 125px 0 125px;
}

nav li {
    display: inline;
}

nav a {
    border-top: 1px solid rgba(64, 64, 64, 0);
    box-sizing: border-box;
    color: #A2A095;
    display: inline-block;
    padding: 10px;
}

nav a.is-selected,
nav a:hover {
    border-top: 1px solid rgb(64, 64, 64);
    color: rgb(64, 64, 64);
}

nav a:hover {
    cursor: pointer;
}

nav a.is-selected:hover {
    cursor: inherit;
}

/* HOME PAGE -------------------------------------------------------------- */

.home {
    font-size: 1.9em;
    color: #f57c1c;
    text-align: center;
}

.home a {
    font-size: 0.5em;
    color: #5f9839;
}

.home div:first-child {
    margin-bottom: 50px;
}

.home a:hover {
    color: #0099cc;;
}

/* EXPERIENCE PAGE -------------------------------------------------------- */

.experience {
    width: 600px;
    margin: 0 auto 0 auto;
}

.experience > section {
    box-sizing: border-box;
    clear: both;
}

.experience > section > img {
    border-radius: 2px;
    box-shadow: 0 1px 1px rgb(32, 32, 32);
    float: left;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    margin-right: 20px;
    margin-top: 10px;
}

.experience > section > h2 {
    color: #f57c1c;
    font-size: 1.9em;
    margin: 0;
}

.experience > section > p {
    color: rgb(128, 128, 128);
    margin-left: 170px;
}

/* PREVIOUS EVENTS PAGE --------------------------------------------------- */

.carousel {
    background-color: rgb(255, 255, 255);
    background-image: linear-gradient(to right, rgba(235, 235, 235), white 20%, white 80%, rgba(235, 235, 235));
    height: 350px;
    padding: 30px 0 0 0;
    border-top: 1px solid rgb(224, 224, 224);
    border-bottom: 1px solid rgb(224, 224, 224);
    margin-bottom: 50px;
}

.carousel > div:first-child {
    width: 600px;
    margin: 0 auto 0 auto;
}

.carousel .slick-list {
    border-radius: 3px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .25);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgb(32, 32, 32);
}

.carousel .slick-arrow::before {
    color: rgba(128, 128, 128);
}

.quote {
    width: 600px;
    margin: 0 auto 0 auto;
}
.quote > div:first-child {
    color: rgb(64, 64, 64);
}

.quote > div:last-child {
    margin: 10px 40px 50px 40px;
    color: rgb(128, 128, 128);
}
