/*--------- 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);
    height: 100vh;
    background-size: cover;
    background-position: center;
}

html {
    scroll-behavior: smooth;
    
}

/* 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);
    }
}


#bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/*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: 15px;
    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;
}





/*KONTAKTY*/
.contact-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 9999;
}


/*levá část*/
.contact-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2 {
    font-weight: 600;
    color: var(--light-grey);
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr {
    border: none;
    width: 140px;
    height: 4px;
    background-color: var(--gold-2);
    border-radius: 10px;
    margin-bottom: 20px;
}

/*imputs*/
.contact-inputs {
    width: 550px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 550;
    font-size: 15px;
    color: var(--dark-blue);
    border-radius: 50px;
    background-color: var(--light-grey);
}

.contact-left textarea {
    min-height: 100px;
    min-width: 550px;
    max-height: 200px;
    max-width: 550px;
    padding-top: 15px;
    border-radius: 18px;
}

.contact-inputs:focus {
    border: 2px solid var(--gold-2);
}

.contact-inputs::placeholder {
    color: var(--dark-blue);
    font-size: 18px;
    font-family: "Cormorant Upright", serif;
}



.contact-left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 20px;
    color: var(--dark-blue);
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: var(--gold-2);
    cursor: pointer;
    font-family: "Cormorant Upright", serif;
    font-weight: bold;
}

.contact-left button img {
    height: 15px;
}


/*MAPA*/
.map-responsive {
    overflow: hidden;
    padding-bottom: 20%;
    position: relative;
    height: 0;
  }
  
  .map-responsive iframe {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border: 0;
  }




/*FOOTER*/

footer {
    background: #241849;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 115px;
    padding: 20px 50px;
    flex-direction: column;
    
}

footer .social-ikons, .kontakt{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    flex-wrap: wrap;
}

footer .social-ikons li, .kontakt li{
    list-style: none;
}

footer .social-ikons li a {
    font-size: 1.2em;
    color: var(--white);
    margin: 0 5px;
    display: inline-block;
    transition: 0.5s;
}

footer .kontakt li a {
    font-size: 1.2em;
    margin: 0 90px;
    text-align: center;
    cursor: context-menu;
    opacity: 0.85;
}

footer .social-ikons li a:hover {
    color: var(--gold-2);
}

footer p {
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    opacity: 0.65;
    cursor: context-menu;
}

/*footer-waves*/

footer .wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(../img/wave.png) ;
    background-size: 1000px 100px;
    
}

footer .wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWave 10s linear infinite;
}

footer .wave#wave2 {
    z-index: 999;
    opacity: 1;
    bottom: 0;
    animation: animateWave-02 10s linear infinite;
}

footer .wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWave-02 9s linear infinite;
}

footer .wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animateWave-02 9s linear infinite;
}

/*animace footer-waves*/
@keyframes animateWave {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-position-x: 0px;
    }
}

@keyframes animateWave-02 {
    0% {
        background-position-x: 0px;
    }
    100% {
        background-position-x: 1000px;
    }
}



/* SCROLL BAR */
::-webkit-scrollbar {
    display:none ;
  }
  
  /* SCROLL UP */
  .scrollup {
    position: fixed;
    right: 1rem;
    bottom: -50%;
    background-color: hsla(0, 0%, 100%, .1);
    border-radius: 25px;
    padding: 6px;
    display: inline-flex;
    color: var(--title-color);
    font-size: 1.25rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); 
    z-index: var(--z-tooltip);
    transition: bottom .4s, transform .4s;
  }
  
  .scrollup:hover {
    transform: translateY(-.25rem);
  }
  
  /* Show Scroll Up */
  .show-scroll {
    bottom: 3rem;
  }
  
  





/*RESPONSIVITA*/

@media (max-width: 1381px) {
    footer .kontakt li a {
        font-size: 1.1em;
        margin: 0 30px;
        text-align: center;
        cursor: context-menu;
        opacity: 0.85;
    }

}

@media (max-width: 992px) {
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }

    footer .kontakt li a {
        font-size: 1.1em;
        margin: 0 30px;
        text-align: center;
        cursor: context-menu;
        opacity: 0.85;
    }

}

@media (max-width: 960px) {
    footer .kontakt li a {
        font-size: 1.1em;
        margin: 0 10px;
        text-align: center;
        cursor: context-menu;
        opacity: 1;
        display: block;
    }

    footer p {
        display: none;
    }
}
@media (max-width: 576px) {
    footer .kontakt li a {
        font-size: 1.1em;
        margin: 0 10px;
        text-align: center;
        cursor: context-menu;
        opacity: 1;
        display: block;
    }

    footer p {
        display: none;
    }

    .map-responsive {
        display: none;
    }

    .contact-left-title h2 {
        font-weight: 600;
        font-size: 30px;
        margin-bottom: 5px;
    }
    
    .contact-left-title hr {
        border: none;
        width: 100px;
        height: 4px;
    }
    
    /*imputs*/
    .contact-inputs {
        width: 500px;
        height: 50px;
        outline: none;
        padding-left: 25px;
        font-weight: 550;
        font-size: 15px;
    }
    
    .contact-left textarea {
        min-height: 100px;
        min-width: 500px;
        max-height: 200px;
        max-width: 500px;
        padding-top: 15px;
    }
    
    .contact-left button {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        font-size: 16px;
        gap: 10px;
        font-weight: bold;
    }

    .dropdown_menu{
        left: 2rem;
        width: unset;
    }

}

@media (max-width: 525px) {
    
    /*imputs*/
    .contact-inputs {
        width: 350px;
        height: 50px;
        outline: none;
        padding-left: 25px;
        font-weight: 550;
        font-size: 15px;
    }
    
    .contact-left textarea {
        min-height: 100px;
        min-width: 350px;
        max-height: 200px;
        max-width: 350px;
        padding-top: 15px;
    }

}

@media (max-width: 415px) {
    
    footer .kontakt li a {
        font-size: 1em;
        margin: 0 10px;
        text-align: center;
        cursor: context-menu;
        opacity: 1;
        display: block;
    }

    footer p {
        display: none;
    }

}

@media (max-width: 385px) {
    
    .contact-inputs {
        width: 250px;
        height: 30px;
        outline: none;
        padding-left: 25px;
        font-weight: 550;
        font-size: 15px;
    }
    
    .contact-left textarea {
        min-height: 80px;
        min-width: 250px;
        max-height: 100px;
        max-width: 250px;
        padding-top: 15px;
    }

    footer .kontakt li a {
        font-size: 0.8em;
        margin: 0 10px;
        text-align: center;
        cursor: context-menu;
        opacity: 1;
        display: block;
    }

    footer p {
        display: none;
    }

}


