/*
* Background Images - Practice
* CSS Styles
*
*/

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #eee;
    background-image: url(../img/bg.png);
    background-color: #383838;
}

.container {
    width: 100%;
    max-width: 965px;
    margin-left: auto;
    margin-right: auto;
}

a {
    text-decoration: none;
    color: #fff;
}

h1,
h2,
h3 {
    text-transform: uppercase;
}

h2 {
    margin-top: 45px;
    font-size: 32px;
    text-align: center;
    margin-bottom: 45px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.button,
button {
    background-image: linear-gradient(145deg, #dd0000, #ff3670);
    text-transform: uppercase;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
    display: inline-block;
}

#topbar {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    z-index: 1;
}

.menu li {
    display: inline-block;
    text-transform: uppercase;
}

.menu li a {
    padding: 20px;
    display: block;
}

.menu li a:hover {
    background-color: rgba(243, 36, 74, 0.7);
}

header {
    background: url(../img/bg-01.jpg) center / cover no-repeat #666;
    min-height: 285px;
    padding-top: 155px;
    padding-bottom: 55px;
}

header h1 {
    font-family: 'Metal Mania', cursive;
    text-align: center;
    font-size: 90px;
    margin-top: 0;
}

header .button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    width: 100%;
    max-width: 325px;
    text-align: center;
    padding: 20px 0;
}

.tour-card {
    width: 220px;
    height: 245px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    float: left;
    box-sizing: border-box;
    padding: 40px 10px 20px;
    box-shadow: 0px 3px 3px 0px #212121;
    background-blend-mode: multiply;
}

#tour:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.tour-town {
    font-size: 19px;
    margin-bottom: 10px;
}

.tour-place {
    margin-bottom: 10px;
}

.tour-date {
    font-style: italic;
    font-size: 15px;
}

.tour-card .button {
    padding: 10px;
    display: block;
    max-width: 135px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.tour-card.madrid {
    background: url(../img/tour/madrid.jpg) center / cover no-repeat #666;
}

.tour-card.turin {
    background: url(../img/tour/turin.jpg) center / cover no-repeat #666;
}

.tour-card.hamburg {
    background: url(../img/tour/hamburg.jpg) center / cover no-repeat #666;
}

.tour-card.krakow {
    background: url(../img/tour/krakow.jpg) center / cover no-repeat #666;
}

#gallery .photo {
    width: 33.33%;
    float: left;
    padding: 10px;
    box-sizing: border-box;
}

#gallery .photo:hover {
    opacity: 0.6;
}

#gallery:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

#gallery .photo img {
    box-shadow: 0px 3px 3px 0px #212121;
}

#subscribe {
    background: url(../img/bg-02.jpg) center / cover no-repeat #666;
    background-blend-mode: multiply;
    padding-top: 45px;
    padding-bottom: 85px;
    margin-top: 45px;
    text-align: center;
}

#subscribe button {
    color: white;
    font-family: 'Open Sans', sans-serif;
}

#subscribe button:hover {
    cursor: pointer;
}

#subscribe .pitch {
    margin-bottom: 20px;
}

#subscribe input {
    border: 0;
    height: 40px;
    background-color: #fafafa;
    padding-left: 10px;
    font-size: 1.2em;
    font-family: 'Open Sans', sans-serif;
}

#subscribe button {
    margin: 0;
    height: 44px;
    padding-left: 20px;
    padding-right: 20px;
}

footer {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #222;
    background-image: url(../img/bg.png);
    text-align: center;
}

footer .social {
    margin-bottom: 20px;
}

footer .social a {
    padding-left: 5px;
    padding-right: 5px;
}

footer .copyright {
    font-size: 13px;
}