@import url("root-style.css");

/* TAGS */
.tag-box {
    width: 100%;
    height: auto;
    position: relative;
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    flex-flow: wrap;
}

.tag {
    width: fit-content;
    height: auto;
    border-radius: 5px;
    padding: 1rem 2rem;
    margin: .5rem;
}

    .tag span {
        font-size: 1.8rem;
        font-family: var(--font);
        font-weight: 600;
        color: white;
    }
/* END TAGS */

/* MENU */
nav {
    width: 100vw;
    height: auto;
    position: fixed;
    top: 0;
    left: 0; 
    padding: 2rem 8rem; 
    background-color: white; 
    z-index: 150;   
}

.ellena-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    visibility: hidden;
    box-shadow: 0 0 1rem black;
}

.visible-element {
    visibility: visible;
}

.ellena-menu img {
    height: 60px;
}

.menu-items {
    display: flex;
    flex-direction: row;
}

.menu-item {
    padding: .5rem 2rem;
    text-decoration: none;
    color: var(--background-gray-color);
    text-transform: uppercase;
    font-size: 2rem;
}

.menu-items .menu-item:first-child {
    margin-right: 4rem;
}

.menu-item:hover {
    border-bottom: 1px solid black;
}

.menu-item a {
    color: black;
}

/* END MENU*/

/* NOTIFIKACE */
.contact-notifikace {
    position: fixed;
    top: 40vh;
    left: 0;
    background-color: black;
    color: #ffffffcc; 
    display: flex;
    flex-direction: column;
    z-index: 200;
    transform: translateX(-65%);
    border: 1px solid white;
    visibility: hidden;
}

.notifi-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: black;
    cursor: pointer;
    border-right: 1px solid white;
    transition: transform .8s ease-out;
}

.notifi-item:hover {
    transform: translateX(65%);
    transition: transform .8s ease-out;
    color: white;
}

.notifi-item i {
    font-size: 3rem;
}

.notifi-item span {
    font-size: 1.8rem;
}

.notifi-item i,
.notifi-item span{
    padding: 2rem;
    line-height: 2rem;
}

/* END NOTIFIKACE */

/* BANNER LOGO */
.banner-logo {
    position: relative;
    width: 100vw;
    height: 80vh;
    background-color: white;
    padding: 3rem;
    border: 1rem solid var(--font-black-classic); 
    z-index:10;
}

.banner-texture {
    background-image: url(../images/textura.jpg);
    background-size: cover;
    height: 100%;
    width: 100%;
    display:  flex;
    justify-content: center;
    align-items: center;    
}

.logo-area {
    display: flex;
    flex-direction: column;
    font-style: var(--font);    
    color: black;
    border: 2px solid var(--font-black-classic);
    background-color: white; 
    text-transform: uppercase;  
    text-align: center; 
    padding: 4rem 10rem;
}

.logo-area .main-text {
    font-size: 12rem;
    font-size: 300;
    line-height: 12rem;
}

.logo-area p {
    font-size: 4rem;
    font-size: 200;
}
/*END BANNER LOGO */

/* ABOUT ME */
.about-me-content {
    height: auto;
    margin: 1rem auto;
    background-color: white;
}

.about-me-box {
    background-color: white;
    border: 5px solid black;
    padding: 3.5rem 7rem;
    text-align: center;
    color: var(--font-light-black);
    display: flex;
    flex-direction: column;
}
.about-header {
    display: flex;
    flex-direction: row;
    justify-content:center;
    align-items: center;
    font-size: 3rem;
    line-height: 5rem;    
    width: 100%;
}
    .about-header h1 {
        padding: .5rem 2rem;
    }

    .about-header i {
        padding: .5rem 2rem;
        font-size: 4rem;
        cursor: pointer;
    }

#about-up {
    display: none;
}
#about-down {
    display: initial;
}

.about-context {
    display: none;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.about-context-image,
.about-context-info {
    width: 50%;
}
.about-context img {
    width: 100%;
    object-fit: cover;
}

.about-context-info {
    padding: 1rem 3rem;
}
.about-context-info h1 {
    font-size: 3rem;
}
.about-context-info p {
    font-size: 1.6rem;
    white-space: pre-wrap;
}
/* ABOUT ME END */

/* DOPIS sekce */
.section-dopis {
    width: 100%;
    background-color: black;
    padding: 2rem 0;

}
.dopis-section {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: row;
    background-image: url('../images/ozdoby.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

.dopis-img,
.dopis-text {
    width: 50%;
    text-align:center;
}

    .dopis-img img {
        height: 100%;
        object-fit: cover;
        margin-top: 10rem;
        box-shadow: 0 0 1.5rem 1.5rem black;
    }

.dopis-text {
    height: 100%;
    display:flex;
    justify-content:center;
    align-items:center;
}
.dopis-info {
    position: relative;    
    width: 60%;
    height: auto;
    background-color: black;
    color: white;
    margin-top: 25rem;
    padding: 2rem 5rem;
    box-shadow: 0 0 2rem black;
    border-radius: 5px;
    z-index: 50;
}
    .dopis-info h1 {
        font-size: 2.4rem;
        line-height: 4rem;
    }
    .dopis-info p {
        font-size: 1.6rem;
        white-space: normal;
    }

.dopis-info a {
    border: 1px solid rgba(255,255,255,.4);
    line-height: 8rem;
    padding: 1rem 2rem;
    color: white;
    cursor: pointer;
    font-size: 1.6rem;
}
/* DOPIS sekce END*/

/* Email client - footer */
.content-items {
    width: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.section-item {
    display: flex;
    position: relative;
    flex-direction: row;
    width: 100%;
}

.right {
    flex-direction: row-reverse;
}

.section-item:nth-child(even) {
    background-color: black;
    color:white;
}

.section-item-info {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    width: 30%;
    height: auto;
    background-color: black;
    color: white;
    padding: 2rem 5rem;
    box-shadow: 0 0 2rem black;
    border-radius: 5px;
}

.section-item-info h1 {
    font-size: 3rem; 
    line-height: 7rem; 
    letter-spacing: .8rem;  
}

.section-item-info p {
    font-size: 1.4rem;
    text-align: justify;    
}

.section-item:nth-child(even) .section-item-info {
    left: 2rem;
    background-color: white;
    color: black;
    box-shadow: 0 0 2rem white;
}

.section-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    cursor: pointer;
}

.section-item-info a {
    border: 1px solid rgba(0,0,0,.4);
    line-height: 8rem;
    padding: 1rem 2rem;
    color: black;
    cursor: pointer;
    font-size: 1.6rem;
}

.section-item:nth-child(odd) .section-item-info a{
    color: white;
    border: 1px solid rgba(255,255,255,.4);
}

/* END Email client - footer */


/* Footer */

footer {
    background-color: black;
    width: 100vw;
    height: auto;
    padding: 5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: auto;
    width: 80%;
    margin: auto;
    font-family: var(--font);
    margin-bottom: 2rem;
}

.email-client {
    width: 50%;
    height: auto;    
    color: white;    
}

.email-client h1,
.newsletter h1 {
    color: white;
    letter-spacing: .4rem;
    margin-bottom: 2rem;
}

.email-client form {
    width: 100%;
}

form .form-row {
    width: 100%;          
}

.form-row input,
.form-row textarea {
    width: 80%;
    margin: .5rem;
    background-color: transparent;    
    padding: .3rem .8rem;
    border: none;
    border-bottom: 1px solid #ffffff55;    
    color: white;  
    font-size: 1.8rem; 
    font-family: var(--font);   
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-bottom: 1px solid white;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    text-transform: uppercase;
}

.form-row textarea {
    resize: none;
    margin: .5rem;
    height: 150px;
}

form button {
    position: relative;    
    border: 1px solid #ffffff55;
    background-color: black;
    color: white;
    padding: .5rem 1.5rem;
    font-family: var(--font);
    font-size: 2rem;
    cursor: pointer;
    justify-self: right;
}

form button:hover {
    border-color: white;
}

.newsletter form {
    display: flex;
    flex-direction: row;
    margin: 1rem 0;
}

.social-icons {
    color: #ffffff99;
    cursor: pointer;    
    font-size: 4rem;
    text-align: center;
}

.social-icons i:hover {
    color: white;
}

.footer-devel-info {
    font-size: 1.2rem;
    font-family: var(--font);
    font-weight: 300;
    color: white;    
}

.footer-content-info {
    text-align: right;
    color: white;
    font-size: 1.8rem;
    font-weight: 200;
    width: 80%;            
}

.footer-content-info p,
.footer-content-info address {
    line-height: 2;
}

.footer-devel-info a {
    text-decoration: none;
    color: white;
}
/*Footer end*/

/* SHOPPING CARD */

.shopping-card-form {
    border-radius: 5px;
    box-shadow: 0px 0px 5px 5px var(--background-gray-color);
    width: 70%;
    padding: 3rem;
    margin-top: 2rem;
}

.shopping-card-container {
    display:flex;
    justify-content: center;
    align-items: center;
    margin: 5rem auto;
    flex-direction: column;    
}

.form-row .dark {
    color: var(--font-paragraph-gray-color);
}
input.dark,
textarea.dark {
    border-bottom: 1px solid var(--background-gray-color);
    margin: 1rem;
}
.shoopping-items-box {
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    width: 70%;
}

.shopping-item {
    margin: 2rem 0;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    width: 80%;
}
    .shopping-item span {
        font-size: 2rem;
    }

/* END SHOOPING CARD*/
.button-menu {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}

.btn {
    border-radius: 5px;
    padding: 1rem 2rem;
    box-shadow: 0 0 2px 2px var(--background-gray-color);
    margin: .6rem;
}
    .btn a {
        color: white;
        font-size: 2rem;
    }
    .btn.bg-blue {
        background-color: darkblue;
    }

    .btn.bg-red {
        background-color: red;
    }

    .btn.bg-green {
        background-color: forestgreen;
    }
.description-item-info {
    display: flex;
    flex-direction: column;
    margin-top: 1rem;
    margin-left: .5rem;
}

    .description-item-info span {
        margin: .2rem 0;
        font-size: 1.4rem;
    }

.alert {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: auto;
    height: auto;
    padding: 1.5rem 4rem;    
    z-index: 200;
    border-radius: 5px;
    display: none;
    flex-direction: column;
}

.alert-close {
    width: 100%;
    font-size: 1.6rem;
    color: lawngreen;
}

    .alert-close i {
        float:right;
        cursor: pointer;
    }

.alert-box {
    width: 100%;    
}

    .alert-box h1 {
        font-size: 2rem;
        color: white;
    }
    .alert-box p {
        font-size: 1.6rem;
        color: white;
    }

.language-box {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 32px;  
    height: 32px;
    z-index: 200;
    overflow: hidden;  
}
    .language-box:hover {
        height: auto;
    }

    .language-box img {
        width: 32px;
        height: 32px;
        cursor: pointer;
    }

.mySlide-decoration,
.mySlide-pictures,
.mySlide-interiers {
    display: none;
}

.section-decoration-queen-detail {
    width: 100vw;
    height: auto;
    min-height: 80vh;
    padding-top: 25rem;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

.decoration-queen-detail {    
    height: auto;
    display: flex;     
}

    .decoration-queen-detail.info {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 60%;
        padding: 2rem;
    }

.info p,
.info h1 {
    padding: 1rem;
    text-align: justify;
}

.info h1 {
    font-size: 2.8rem;
}
.info p {
    font-size: 1.4rem;
    font-family: var(--font);
    width: 100%;
    white-space: pre-wrap;
}

.decoration-queen-detail.gallerie {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content:center;
    align-items:center;
}

.gallerie {
    width: 100%;
    height: auto;
}

.gallerie img {
    width: 33%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    margin: .5rem;
}

#cookie-notice {
    position: fixed;
    padding: 2rem;
    bottom: 5rem;
    right: 2rem;
    width: 20vw;
    height: auto;
    font-family: var(--font);
    font-size: 1.4rem;
    color: white;
    background-color: black;
    border-radius: 5px;
    z-index: 200;
}

    #cookie-notice button {
        margin: 1rem 0;
        padding: .5rem 1rem;
        font-size: 1.2rem;
        font-family: var(--font);
        background-color:transparent;
        color: white;
        border: 1px solid white;
        border-radius: 5px;
        cursor: pointer;
    }
/********************************************/
/********************************************/
/*********** R E S P O N S I V E ************/
/********************************************/
/********************************************/
@media screen and (max-width: 1000px) {
    .section-decoration-queen-detail {
        padding-top: 5rem;
    }

    .dopis-info {
        margin-top: 5rem;
    }

    .dopis-img img {
        margin-top: 4rem;
    }

    .about-me-box {
        padding: 3.5rem 2rem;
    }
    .about-context {        
        flex-direction: column;        
    }

    .about-context-info {
        width: 90%;
        margin-top: 4rem;
    }

    .about-context-info p {
        font-size: 1.8rem;
    }
    .about-context-info h1 {
        font-size: 3rem;
        line-height: 5rem;
    }

    #cookie-notice {
        width: 90vw;
    }
}

@media screen and (max-width: 800px) {

    .ellena-menu img {
        visibility: hidden;
    }

    .section-item-info {
        width: 45%;
    }

        .section-item-info h1 {
            font-size: 2rem;
            line-height: 7rem;
            letter-spacing: .8rem;
        }

        .section-item-info p {
            font-size: 1.2rem;
            text-align: justify;
        }

        .section-item-info a {
            padding: 1rem 2rem;
            font-size: 1.2rem;
        }

    footer {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
    }

        .footer-content > div {
            margin: 2rem 0;
        }

    .email-client {
        width: 100%;
    }

    .dopis-section {
        flex-direction: column;
        height: auto;
    }

    .dopis-img,
    .dopis-text {
        width: 100%;     
    }

    .dopis-img img {
        width: 100%;
        object-fit: cover;
    }

    .dopis-text {
        padding: 5rem 0;
    }
}

@media screen and (max-width: 600px) {
    nav {
        padding: .5rem 2rem;
    }

    .banner-logo {
        height: 50vh;
    }

    .logo-area {
        padding: 2rem 6rem;
    }

    .logo-area .main-text {
        font-size: 6rem;
        font-size: 300;
        line-height: 12rem;
    }

    .logo-area p {
        font-size: 2.4rem;
        font-size: 200;
    }

    .section-item img {
        height: 60vh;
    }

    .section-item-info {
        width: 60%;
    }

    .section-item-info h1 {
        font-size: 2rem;
        line-height: 7rem;
        letter-spacing: .8rem;
    }

    .section-item-info p {
        font-size: 1.2rem;
        text-align: justify;
    }

    .section-item-info a {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }

    .contact-notifikace {
        visibility: hidden !important;
    }

    .about-header h1 {
        font-size: 3rem;
    }
    .about-header i {
        font-size: 2rem;
    }

    .about-context-info h1 {
        font-size: 3rem;
        line-height: 5rem;
    }

    .about-context-info p {
        font-size: 1.6rem;
    }

    .decoration-queen-detail.info {
        width: 80%;       
    }
}

@media screen and (max-width: 500px) {
    .menu-item {
        font-size: 1.6rem;
        padding: .5rem 1rem;
    }
}

@media screen and (max-width: 400px) {
}