/*--------- colors -------*/
:root {
    --gold: #ffc000;
    --gold-light: #ffe28a;
    --gold-2: #eca660;
    --white: rgb(241, 237, 237);
    --light-grey: rgb(173, 173, 173);
    --black: rgb(0, 0, 0);
    --dark-violet: #241849;
    --dark-blue: #0b002b;
    --light-violet: #612691;
    
}


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    
}

body{
    font-family: "Cormorant Upright", serif;
    background-color: var(--black);
    background-image: url(../img/pozadiii.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* SCROLLBAR */

::-webkit-scrollbar {
    display: none;
    
}

/*PRELOADER*/

.loader-container {
    width: 100%;
    height: 100vh;
    background-color: #241849;
    position: fixed;
    display: flex;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid;
    color: var(--gold-2);
    border-radius: 50%;
    border-top-color: transparent ;
    animation: loader 1.2s linear infinite;
}

@keyframes loader {
    25%{
        color: #2c1d58;
    }
    50%{
        color: #03197c;
    }
    75%{
        color: #800360;
    }
    to{
        transform: rotate(360deg);
    }
}



/*HEADER*/

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Cormorant Upright", serif;
}

a:hover {
    color: var(--gold-2);
}



.header {
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: absolute;
    z-index: 999;
}


.logo img {
    margin-top: 55px;
      width: 50px;
      height: 50px;
    }

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Cormorant Upright", serif;

    text-decoration: none;
    color: var(--white);
    cursor:context-menu;

    padding-left: 3%;
}

.navbar .links {
    display: flex;
    gap: 2rem;
    text-align: center;
    justify-content: center;
}

.navbar .toggle_btn {
    color: var(--gold-2);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    margin-right: 3%;

}

/*button*/

.action_btn {
    background-color: var(--gold-2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    margin-right:3%;
}


.action_btn:hover {
    scale: 1.05;
    color: var(--white);
}

.action_btn:active {
    scale: 0.95;
}

/*dropdown menu*/

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0px;
    width: 350px;
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 410px;
    z-index: 1;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .action_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}





/*TEXTY*/

/* LEVÁ ČÁST*/
.about-wrapper{
    height: 100vh;
    color: var(--white);
    
}

.about-left{
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    z-index: 100;
}

.about-left-content > div{
    background: var(--dark-violet);
    padding: 4rem 4rem 2.5rem 5rem;
    text-align: center;
    border-radius: 50px 50px 0px 0px ;
}


/*stín za kartičkou*/
.about-left-content{
    box-shadow: 0px 0px 18px -1px var(--light-violet);
    -webkit-box-shadow: 0px 0px 18px -1px var(--light-violet);
    -moz-box-shadow: 0px 0px 18px -1px var(--light-violet);
    border-radius: 50px 50px 50px 50px;
}

/*IMG*/
.about-img img{
    display: block;
    width: 200px;
}
.about-img{
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}

/*stín pod obrázkem*/
.shadow{
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    position: relative;
    cursor: pointer;
}
.shadow::after{
    content: "";
    position: absolute;
    background: var(--black);
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    height: 7px;
    width: 50px;
    filter: blur(3px);
    -webkit-filter: blur(3px);
    opacity: 0;
    transition: all 0.6s ease;
}
.shadow:hover .about-img{
    transform: translateY(-10px);
}
.shadow:hover::after{
    opacity: 1;
}

.about-left-content .jmeno{
    font-size: 2rem;
    margin: 2.2rem 0 0.6rem 0;
    line-height: 1.2;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-2);
    font-family: "Cormorant Upright", serif;
}
.about-left-content h3{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 5px;
    margin-top: 1.2rem;
}

/*sociální sítě*/
.icons{
    background: var(--white);
    display: flex;
    justify-content: center;
    padding: 0.8rem 0;
    border-radius: 0px 0px 50px 50px;
}
.icons li a{
    list-style-type: none;
    background:var(--dark-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.icons li a:hover{
    background: var(--gold-2);
    color: var(--dark-blue);
}


/*PRAVÁ ČÁST*/

/*  černý pozadi*/
.about-right{
    background: var(--black);
    color: var(--white);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5rem;
    text-align: center;
    box-shadow: 0px 0px 50px 50px var(--black);
    opacity: 0.85;
    z-index: 1;
}
.about-right h1{
    font-size: 7rem;
    color: var(--white);
    font-family: "Dancing Script", serif;
    opacity: 1;
}
.about-right h1 span{
    color: var(--gold-2);
    opacity: 1;
}
.about-right h2{
    font-weight: 600;
    color: var(--light-grey);
    opacity: 1;
}

/*buttny*/
.about-btns{
    display: flex;
    margin: 2rem 0;
}
.btn{
    border: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    border: 2px solid var(--gold-2);
    border-radius: 20px;
    padding: 0.55rem 0;
    width: 130px;
    font-weight: 600;
    background: transparent;
    margin: 0 0.5rem;
    cursor: pointer;
}
.btn.btn-1{
    background: var(--gold-2);
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.btn.btn-1:hover{
    background: transparent;
    color: var(--gold-2);
}
.btn.btn-2{
    background: transparent;
    border-color: var(--gold-2);
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.btn.btn-2:hover{
    background: var(--gold-2);
    color: var(--white);
    border-color: var(--gold-2);
}
.about-para p{
    font-size: 17px ;
    font-weight: 300;
    padding: 0.5rem;
    opacity: 1;
}


/*RESPONSIVITA */

/*responsivita pro stranku*/
@media screen and (min-width: 992px){

    .about-wrapper{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .about-left{
        position: relative;
    }
    .about-left-content{
        position: absolute;
        right: -50px;
    }
}


/*responsivita pro header*/
@media screen and (max-width: 768px){

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 425px) {
    .dropdown_menu{
        left: 2rem;
        width: unset;
    }
}