/* Vlozenie fontov */
@font-face {
    font-family: 'font-extraLight';
    src: url('assets/fonts/Urbanist-ExtraLight.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'font-regular';
    src: url('assets/fonts/Urbanist-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'font-bold';
    src: url('assets/fonts/Urbanist-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'font-black';
    src: url('assets/fonts/Urbanist-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*Definovanie farieb*/
:root{
    --hneda: rgb(250, 200, 130);
    --siva: rgb(100, 100, 100);
    --cierna: rgb(30, 30, 30);
    --biela: white;
}

.colorBrown{
    color: var(--hneda);
}

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

html{
    width: 100%;
    overflow-x: hidden;
}

/* Bootstrap 5.3 nastavuje :root{scroll-behavior:smooth}, čo koliduje
   s výpočtami GSAP ScrollTrigger (spôsobuje trhané/dvojité scrollovanie).
   Selektor :root má vyššiu špecifickosť než html, preto treba použiť !important. */
:root{
    scroll-behavior: auto !important;
}

body{
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    height: auto;
    background: linear-gradient(45deg, rgb(40, 40, 40) 0%, rgb(20, 20, 20) 100%);
}

#navigation{
    position: sticky;
    display: block;
    top: 0;
    z-index: 50;
}

#navigation .rowNavigation{
    height: auto;
}

#navigation .rowNavigation .navbar-brand img{
    width: auto;
    height: 4rem;
    transform: scale(3);
}

#navigation .rowNavigation .navbar{
    background-color: none;
    min-height: 10vh;
    height: auto;
}

#navigation .rowNavigation .navbar .navbar-nav{
    margin-left: 60%;
}

#navigation .rowNavigation .navbar .navbar-nav .nav-link{
    filter: blur(0px);
    transition: 1s;
    font-family: font-regular;
}

#navigation .rowNavigation .navbar .navbar-nav .nav-link:hover{
    filter: blur(1px);
    color: var(--hneda);
    transition: 1s;
}

#navigation .rowNavigation a{
    color: var(--biela);
    font-family: font-regular;
}

/*Domovská stránka*/
#homePage{
    margin: 0;
    height: auto;
    width: 100%;
}

#homePage .backgroundPhoto{
    position: absolute;
    width: 50%;
    height: auto;
    transform: translate(40%, -40vh);
    opacity: 1;
    z-index: -1;
}

#homePage .rowHomePage{
    margin-top: 20vh;
    height: auto;
}

#homePage .rowHomePage .positionName{
    font-family: font-extraLight;
    width: 90%;
    font-size: 4rem;
    color: var(--biela);
}

#homePage .rowHomePage .loader{
    position: relative;
    display: block;
    margin-top: 1rem;
    width: 75%;
    height: 5px;
    background-color: var(--siva);
}

#homePage .rowHomePage .loader .loaded{
    position: relative;
    display: block;
    width: 20%;
    height: 5px;
    background-color: var(--hneda);
}

#homePage .rowHomePage .positionInfo{
    font-family: font-extraLight;
    width: 80%;
    font-size: 1.8rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--siva);
}

#homePage .rowHomePage .positionInfo .positionActual{
    font-family: font-regular;
    color: var(--biela);
}

#homePage .rowHomePage .name{
    font-family: font-black;
    width: 90%;
    font-size: 4rem;
    color: var(--biela);
}

#homePage .rowHomePage .description{
    margin-top: 2vh;
    font-family: font-extraLight;
    color: var(--biela);
    width: 80%;
    line-height: 1.5;
    font-size: 2.4rem;
}

#homePage .rowHomeButton a{
    text-decoration: none;
}

#homePage .infoButton{
    position: relative;
    display: block;
    width: auto;
    min-width: 40%;
    height: auto;
    padding: 1rem;
    margin-top: 2rem;
    float: left;
    border: none;
    text-decoration: none;
    font-style: normal;
    color: var(--biela);
    background-color: var(--hneda);
    font-family: font-extraLight;
    font-size: 1.6rem;
    transition: 1s;
}

#homePage .infoButton:hover{
    transform: scale(0.9);
    transition: .5s;
}

#homePage .btnGallery{
    background-color: transparent;
    border: 4px solid var(--hneda);
}

#homePage .btnReserve{
    margin-left: 15%;
}

/*O mne stránka*/
#aboutPage{
    height: auto;
    width: 100%;
}

#aboutPage .rowAboutPage{
    margin-top: 10vh;
    height: auto;
}

#aboutPage .rowAboutPage .name{
    font-family: font-black;
    width: 90%;
    font-size: 4.5rem;
    color: var(--biela);
}

#aboutPage .rowAboutPage .description{
    margin-top: 2vh;
    font-family: font-extraLight;
    color: var(--biela);
    width: 80%;
    margin-top: 2rem;
    line-height: 1.3;
    font-size: 2.2rem;
}

#aboutPage .rowAboutPage .aboutPhoto{
    position: absolute;
    width: 20%;
    height: auto;
    transform: translate(160%, -75vh);
    opacity: 1;
    z-index: -1;
}

#aboutPage .rowAboutPage .loader-col{
    padding-left: 10rem;
}

#aboutPage .rowAboutPage .positionName{
    font-family: font-extraLight;
    width: 90%;
    font-size: 4rem;
    color: var(--biela);
}

#aboutPage .rowAboutPage .loader{
    position: relative;
    display: block;
    margin-top: 1rem;
    width: 75%;
    height: 5px;
    background-color: var(--siva);
}

#aboutPage .rowAboutPage .loader .loaded{
    position: relative;
    display: block;
    width: 40%;
    height: 5px;
    background-color: var(--hneda);
}

#aboutPage .rowAboutPage .positionInfo{
    font-family: font-extraLight;
    width: 80%;
    font-size: 1.8rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--siva);
}

#aboutPage .rowAboutPage .positionInfo .positionActual{
    font-family: font-regular;
    color: var(--biela);
}

/*Galeria stránka*/
#galleryPage{
    height: auto;
    width: 100%;
}

#galleryPage .rowGalleryPage{
    margin-top: 10vh;
    height: auto;
}

#galleryPage .rowGalleryPage .name{
    font-family: font-black;
    width: 90%;
    font-size: 4.5rem;
    color: var(--biela);
}

#galleryPage .rowGalleryPage .description{
    margin-top: 2vh;
    font-family: font-extraLight;
    color: var(--biela);
    width: 80%;
    margin-top: 2rem;
    line-height: 1.3;
    font-size: 2.2rem;
}

#galleryPage .rowGalleryPage .positionName{
    font-family: font-extraLight;
    width: 90%;
    font-size: 4rem;
    color: var(--biela);
}

#galleryPage .rowGalleryPage .loader{
    position: relative;
    display: block;
    margin-top: 1rem;
    width: 75%;
    height: 5px;
    background-color: var(--siva);
}

#galleryPage .rowGalleryPage .loader .loaded{
    position: relative;
    display: block;
    width: 60%;
    height: 5px;
    background-color: var(--hneda);
}

#galleryPage .rowGalleryPage .positionInfo{
    font-family: font-extraLight;
    width: 80%;
    font-size: 1.8rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--siva);
}

#galleryPage .rowGalleryPage .positionInfo .positionActual{
    font-family: font-regular;
    color: var(--biela);
}

#galleryPage .rowGalleryPageTitle .name{
    font-family: font-black;
    width: 90%;
    font-size: 4.5rem;
    color: var(--biela);
}

#galleryPage .rowGalleryPageTitle .description{
    margin-top: 2vh;
    font-family: font-extraLight;
    color: var(--biela);
    width: 80%;
    margin-top: 2rem;
    line-height: 1.3;
    font-size: 2.2rem;
}

#galleryPage .rowGalleryPageAlbums .name{
    font-family: font-black;
    width: 90%;
    font-size: 4.5rem;
    color: var(--biela);
}

#galleryPage .rowGalleryPageAlbums .albumPhoto{
    width: 100%;
}

/*Sluzby stránka*/
#servicesPage{
    height: auto;
    width: 100%;
}

#servicesPage .rowServicesPage{
    margin-top: 10vh;
    height: auto;
}

#servicesPage .rowServicesPage .name{
    font-family: font-black;
    width: 90%;
    font-size: 4.5rem;
    color: var(--biela);
}

#servicesPage .rowServicesPage .description{
    margin-top: 2vh;
    font-family: font-extraLight;
    color: var(--biela);
    width: 80%;
    margin-top: 2rem;
    line-height: 1.3;
    font-size: 2.2rem;
}

#servicesPage .rowServicesPage .aboutPhoto{
    position: absolute;
    width: 20%;
    height: auto;
    transform: translate(160%, -75vh);
    opacity: 1;
    z-index: -1;
}

#servicesPage .rowServicesPage .loader-col{
    padding-left: 10rem;
}

#servicesPage .rowServicesPage .positionName{
    font-family: font-extraLight;
    width: 90%;
    font-size: 4rem;
    color: var(--biela);
}

#servicesPage .rowServicesPage .loader{
    position: relative;
    display: block;
    margin-top: 1rem;
    width: 75%;
    height: 5px;
    background-color: var(--siva);
}

#servicesPage .rowServicesPage .loader .loaded{
    position: relative;
    display: block;
    width: 80%;
    height: 5px;
    background-color: var(--hneda);
}

#servicesPage .rowServicesPage .positionInfo{
    font-family: font-extraLight;
    width: 80%;
    font-size: 1.8rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--siva);
}

#servicesPage .rowServicesPage .positionInfo .positionActual{
    font-family: font-regular;
    color: var(--biela);
}

#servicesPage .rowServicesPageServices{
    margin-top: 10vh;
}

#servicesPage .rowServicesPageServices .name{
    font-family: font-black;
    width: 100%;
    font-size: 2.4rem;
    color: var(--biela);
}

#servicesPage .rowServicesPageServices .description{
    font-family: font-extraLight;
    width: 80%;
    font-size: 1.2rem;
    color: var(--biela);
    margin-top: 2rem;
}


/*Kontakt stránka*/
#contactPage{
    height: auto;
    width: 100%;
}

#contactPage .rowContactPage{
    margin-top: 10vh;
    height: auto;
}

#contactPage .rowContactPage .name{
    font-family: font-black;
    width: 90%;
    font-size: 4.5rem;
    color: var(--biela);
}

#contactPage .rowContactPage .description{
    margin-top: 2vh;
    font-family: font-bold;
    color: var(--biela);
    width: 80%;
    margin-top: 2rem;
    line-height: 1.3;
    font-size: 2.2rem;
}

#contactPage .rowContactPage .contactList{
    margin-top: 2rem;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
}

#contactPage .rowContactPage .contactElement{
    margin-top: 1rem;
}

#contactPage .rowContactPage .contactElement img{
    width: 10%;
    height: auto;
}

#contactPage .rowContactPage .contactElement {
    font-family: font-extraLight;
    color: var(--biela);
    width: 80%;
    font-size: 1.5rem;
}

#contactPage .rowContactPage .positionName{
    font-family: font-extraLight;
    width: 90%;
    font-size: 4rem;
    color: var(--biela);
}

#contactPage .rowContactPage .loader{
    position: relative;
    display: block;
    margin-top: 1rem;
    width: 75%;
    height: 5px;
    background-color: var(--siva);
}

#contactPage .rowContactPage .loader .loaded{
    position: relative;
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--hneda);
}

#contactPage .rowContactPage .positionInfo{
    font-family: font-extraLight;
    width: 80%;
    font-size: 1.8rem;
    margin-top: 2rem;
    line-height: 1.8;
    color: var(--siva);
}

#contactPage .rowContactPage .positionInfo .positionActual{
    font-family: font-regular;
    color: var(--biela);
}

footer{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    min-height: 20vh;
    padding-bottom: 2rem;
    background-color: var(--cierna);
    margin-top: 10vh;
}

footer .rowFooterPage{
}

footer .rowFooterPage .name{
    font-family: font-black;
    width: 100%;
    font-size: 2rem;
    color: var(--biela);
    margin-top: 3rem;
}

footer .rowFooterPage .name a{
    text-decoration: none;
    color: var(--biela);
}

footer .rowFooterPage .footerCredit{
    font-family: font-extraLight;
    width: 100%;
    font-size: 1rem;
    color: var(--siva);
    margin-top: 0.75rem;
}

footer .rowFooterPage .footerCredit a{
    color: var(--hneda);
    text-decoration: none;
}

footer .rowFooterPage .footerCredit a:hover{
    text-decoration: underline;
}
