
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    height: 100%;
    font-family: sans-serif;
    font-size: 18px;
    letter-spacing: 0.04em;
}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #AE7060;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
.brand {
    font-size: 1.5rem;

    #logo{
        width: auto;
        height: 30px;
    }
}
.header-right a {
    margin-left: 1rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}
.instagram-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    fill: white;
}
.slider {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;

}

.slide:nth-child(1){background-image: url('images/slide-01-mob.jpg');}
.slide:nth-child(2){background-image: url('images/slide-02-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-03-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-04-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-05-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-06-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-07-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-08-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-09-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-10-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-11-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-12-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-13-mob.jpg');}
.slide:nth-child(3){background-image: url('images/slide-14-mob.jpg');}

.slide.active {
    opacity: 1;
    z-index: 1;
}
.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 2;
}
.arrow {
    font-size: 2rem;
    color: #AE7060;
    cursor: pointer;
    user-select: none;
    background-color:  transparent;
    padding: 20px;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.5;
}
.arrow:hover{
    /*background-color: #AE7060;*/
    opacity: 1;
}

.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}
.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}
.dot.active {
    background-color: white;
}

@media (orientation: landscape) {
    .slide:nth-child(1){background-image: url('images/slide-01.jpg');}
    .slide:nth-child(2){background-image: url('images/slide-02.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-03.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-04.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-05.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-06.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-07.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-08.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-09.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-10.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-11.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-12.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-13.jpg');}
    .slide:nth-child(3){background-image: url('images/slide-14.jpg');}
    /* Your portrait styles here */
}