/* Global Variables */

@import url("https://use.typekit.net/zeg7vrr.css");
body {
    font-family: 'din-2014', sans-serif;
}

:root {
    --dodocasting-h1-color: #0073aa;
}


/* Headings */

h1 {
    color: var(--dodocasting-h1-color);
    text-transform: uppercase;
    font-size: 60px;
    font-weight: bold;
}


/* Weather */

.dodocasting-weather-title {
    margin-top: 90px;
    margin-left: 80px;
}

.dodocasting-weather {
    position: absolute;
    display: inline-block;
    right: 200px;
    top: 140px;
}

.dodocasting-weather-today {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.dodocasting-weather-today h1 {
    color: #000;
    font-weight: normal;
    margin: 0;
    line-height: 190px;
    font-size: 190px;
}

.dodocasting-weather-today img {
    height: 190px;
    width: auto;
}

.dodocasting-weather-forecast {
    display: flex;
    flex-direction: row;
}

.dodocasting-weather-forecast .forecast-day {
    display: block;
    margin: 30px;
}

.dodocasting-weather-forecast .forecast-day .shortname {
    font-size: 47px;
    display: block;
    font-weight: normal;
    text-align: center;
    margin: 0 0 70px 0;
}

.dodocasting-weather-forecast .forecast-day .temp {
    font-size: 57px;
    display: block;
    font-weight: lighter;
    margin: 0;
}


/* Photo with title */

.dodocasting-photo-with-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    justify-items: center;
    justify-content: center;
}

.dodocasting-photo-with-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .15);
}

.dodocasting-photo-with-title h1 {
    color: #000;
    font-size: 70px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    z-index: 1;
}

.dodocasting-photo-with-title h2 {
    font-size: 40px;
    font-weight: normal;
    color: #fff;
    z-index: 1;
}


/* Logo */

.dodocasting-logo {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.dodocasting-logo img {
    width: 75%;
}

/* Gallery */

.dodocasting-gallery {
    max-height: 100%;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: 50%;
    grid-gap: 30px;
}

.dodocasting-gallery-item {
    overflow: hidden;
}

.dodocasting-gallery-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* 2 Images */
.item-count-2 .gallery-item-0 {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
}

.item-count-2 .gallery-item-1 {
    grid-column: 6 / 11;
    grid-row: 1 / 3;
}

/* 3 Images */
.item-count-3 .gallery-item-0 {
    grid-column: 1 / 6;
    grid-row: 1;
}

.item-count-3 .gallery-item-1 {
    grid-column: 6 / 11;
    grid-row: 1;
}

.item-count-3 .gallery-item-2 {
    grid-column: 1 / 11;
    grid-row: 2;
}

/* 4 Images */
.item-count-4 .gallery-item-0 {
    grid-column: 1 / 5;
    grid-row: 1;
}

.item-count-4 .gallery-item-1 {
    grid-column: 5 / 11;
    grid-row: 1;
}

.item-count-4 .gallery-item-2 {
    grid-column: 1 / 7;
    grid-row: 2;
}

.item-count-4 .gallery-item-3 {
    grid-column: 7 / 11;
    grid-row: 2;
}

/* 5 Images */
.item-count-5 .gallery-item-0 {
    grid-column: 1 / 3;
    grid-row: 1;
}

.item-count-5 .gallery-item-1 {
    grid-column: 3 / 7;
    grid-row: 1;
}

.item-count-5 .gallery-item-2 {
    grid-column: 7 / 11;
    grid-row: 1;
}

.item-count-5 .gallery-item-3 {
    grid-column: 1 / 6;
    grid-row: 2;
}

.item-count-5 .gallery-item-4 {
    grid-column: 6 / 11;
    grid-row: 2;
}

/* 6 Images */
.item-count-6 .gallery-item-0 {
    grid-column: 1 / 3;
    grid-row: 1;
}

.item-count-6 .gallery-item-1 {
    grid-column: 3 / 7;
    grid-row: 1;
}

.item-count-6 .gallery-item-2 {
    grid-column: 7 / 11;
    grid-row: 1;
}

.item-count-6 .gallery-item-3 {
    grid-column: 1 / 5;
    grid-row: 2;
}

.item-count-6 .gallery-item-4 {
    grid-column: 5 / 9;
    grid-row: 2;
}

.item-count-6 .gallery-item-5 {
    grid-column: 9 / 11;
    grid-row: 2;
}

/* Facebook */

.dodocasting-facebook {
    position: absolute;
    display: flex;
    flex-direction: row;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: cyan;
    margin: 40px 80px;
}

.dodocasting-facebook .left {
    position: relative;
    display: block;
    height: 100%;
    width: 60%;
}

.dodocasting-facebook .right {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 40%;
    background-color: #0073aa;
    color: #fff;
}

.dodocasting-facebook .right .container {
    display: grid;
    height: 100%;
    grid-template-columns: 100%;
    grid-template-rows: auto 100px 150px;
}

.dodocasting-facebook .right .container .inner {
    padding: 30px;
    grid-row: 1;
    overflow: hidden;
}

.dodocasting-facebook .right .container .post-likes {
    grid-row: 2;
}

.dodocasting-facebook .right .container .post-likes p {
    position: relative;
    padding-left: 80px;
    font-size: 30px;
}

.dodocasting-facebook .right .container .post-likes p::before {
    position: absolute;
    content: '';
    background-image: url('../img/icons/thumbs-up.svg');
    background-position: center;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    left: 30px;
    right: 0;
    top: -5px;
}

.dodocasting-facebook .right .footer {
    position: relative;
    grid-row: 3;
    background-color: #F07100;
}

.dodocasting-facebook .right .footer .qr {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: auto;
}

.dodocasting-facebook .right .footer .inner {
    padding: 30px;
}

.dodocasting-facebook .picture-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dodocasting-facebook .time-ago {
    text-align: right;
    font-size: 30px;
    font-weight: bold;
}

.dodocasting-facebook .message {
    font-size: 30px;
    font-weight: normal;
}

.dodocasting-facebook .page-name {
    font-size: 40px;
    font-weight: normal;
    margin: 0;
}

.dodocasting-facebook .page-likes {
    font-size: 25px;
    font-weight: normal;
    margin: 0;
}

.dodocasting-facebook video {
    height: 100%;
    width: 100%;
    background-color: #000;
}

.dodocasting-facebook .album-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50%;
}

.dodocasting-facebook .album-container .album-image {
    height: 100%;
    width: 100%;
    display: block;
    object-fit: cover;
}

.dodocasting-facebook .album-container .row-span {
    grid-row: span 2;
}

.dodocasting-facebook .album-container .column-span {
    grid-column: span 2;
}