@import url('https://fonts.googleapis.com/css2?family=BBH+Hegarty&family=Comfortaa:wght@300..700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&family=Imperial+Script&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Kedebideri:wght@400;500;600;700;800;900&family=Licorice&family=Monsieur+La+Doulaise&family=Mr+Dafoe&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+CZ:wght@100..400&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik+Moonrocks&family=Stack+Sans+Text:wght@200..700&family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');

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

body {
    font-family: "Roboto", sans-serif;
    background-color: #e7e7e7;
    background-image:
    url("../img/body.png"),
    linear-gradient(to bottom, transparent 70%, #e7e7e7 100%);
    background-position: bottom center, bottom center;
    background-repeat: no-repeat, no-repeat;
    background-size: 100% auto, 100% 100%;
    min-height: 100vh;
}

/*================= Header =================*/

/* Header */

header {
    background-color: #e7e7e7;
    background-image: 
    linear-gradient(to bottom, transparent 70%, #e7e7e7 100%),
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
    url("../img/Header.png");
    background-size: cover;      
    background-position: top;  
    background-repeat: no-repeat; 
    width: 100%;
    height: 90vh; 
    padding: 1% 3%;
}

/*** Logo a Nav ***/

.logo-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
}

/* Logo */

.logo {
    flex: 1;
}

.logo img {
    position: relative ;
    display: block;
    max-width: 80%;
    min-width: 70%;
    width: 65%;
}

/* Nav */

.logo-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: right;
    flex: 2;
    margin-top: 2%;
    margin-right: 2%;
}

.logo-nav li {
    list-style: none;
    margin: 0 3%;
}

.logo-nav li a {
    text-decoration: none;
    font-weight: bold;
    color: rgb(48, 80, 124);
    font-size: 1.65rem;
} 

.click-nav {
    background-color: rgb(51, 116, 51);
}

.click-nav a {
    display: block;
    padding: 2%;
}

/* Hamburger menu */

#menu-toggle {
    position: absolute;
    opacity: 0;
}


#menu-toggle:checked + .hamburger-menu span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

#menu-toggle:checked + .hamburger-menu span:nth-child(2) {
    display: none;
}

#menu-toggle:checked + .hamburger-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger-menu span {
    transition: 400ms;
}


.hamburger-menu {
    margin-top: 2.3%;
    margin-right: 0.7%;
    display: none;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 50px;
    height: 7px;
    background: white;
    margin: 8px 0;
}

.nav-menu {
    display: flex;
    justify-content: right;
    list-style: none;
}



/*** Header other ***/

.other-header {
    margin-top: 7%;
    padding-left: 2%;
}

.other-header h1 {
    color: white;
    font-weight: bold;
    font-size: 4rem;
}

.other-header p {
    margin-top: 1.2%;
    color: white;
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 5%;
}

.otherHeader-link {
    display: inline-block;
    background-color: rgb(51, 116, 51);
    padding: 1%;
    letter-spacing: 2px;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    border-radius: 6px;
    transition: 250ms;
}

.otherHeader-link:hover {
    transform: scale(1.3);
    margin-left: 2%;
    background-color: rgb(39, 89, 39);
    border-radius: 10px;
}

/*================= Main =================*/

main {
    padding: 1% 5%;
}

main a {
    text-decoration: none;
}

.nejblizsi-akce h2,
.aktuality h2 {
    position: relative;
    padding-top: 15px;
}

.nejblizsi-akce h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: rgb(51, 116, 51);
    border-radius: 2px;
}

.aktuality h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: rgb(51, 116, 51);
    border-radius: 2px;
}


/*** Nejbližší akce a Aktuality ***/

.akce-aktuality{
    display: flex;
    flex-direction: row;
    margin-top: 1.5%;
}

/* Nejbližší akce */

.nejblizsi-akce {
    display: flex;
    flex-direction: column;
    flex: 5;
    padding: 0 1%;
}

.akce-article {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2%;
}

.akce-article article {
    padding: 1% 2%;
    background-color: white;
    box-shadow: 0.4px 0.4px 5px rgb(104, 97, 97);
    border-radius: 5px;
    flex: 1;
    margin: 0 1%;
}


.nejblizsi-akce h2 {
    color: rgb(51, 116, 51);
    font-size: 2rem;
}

.akce-article article p, .akce-article article a{
    margin: 5% 0;
}

.date {
    color: rgb(51, 116, 51);
    font-size: 1.3rem;
    font-weight: 500;
}

.walk {
    font-size: 1.5rem;
    color: rgb(48, 80, 124);
    font-weight: 450;
}

.where {
    font-size: 1.5rem;
    color: rgb(48, 80, 124);
    font-weight: 600;
}

.leader {
    font-size: 1.1rem;
    color: rgb(48, 80, 124);
    font-weight: 400;
}

.link-moreInfo {
    display: flex;
    justify-content: center;
}

.akce-article article p:nth-child(4) {
    margin-bottom: 7%;
}

.akce-article article a {
    display: inline-block;
    text-decoration: none;
    color: white;
    text-align: center;
    padding: 4% 8%;
    background-color: rgb(51, 116, 51);
    font-size: 1.3rem;
    letter-spacing: 3px;
    border-radius: 5px;
    transition: 350ms;
}

.akce-article article a:hover {
    transform: scale(1.1);
    letter-spacing: 3.5px;
}


/* Aktuality */

.aktuality {
    display: flex;
    flex-direction: column;
    flex: 2.5;
    padding: 0 2%;
}

.aktuality h2 {
    color: rgb(51, 116, 51);
    font-size: 2rem;
}

.aktuality article {
    background-color: white;
    box-shadow: 0.4px 0.4px 5px rgb(104, 97, 97);
    padding: 2% 4%;
    border-radius: 7px;
}

.aktuality article p {
    color: rgb(48, 80, 124);
    letter-spacing: 1px;
    font-size: 1.2rem;
}

.aktuality-article {
    margin-top: 4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1; 
}

.aktuality a {
    display: block;
    text-decoration: none;
    color: rgb(48, 80, 124);
    margin: 1.5% 0;
}

.aktuality-article article p span {
    font-weight: bold;
}

.aktuality-article article {
    transition: 300ms;
}

.aktuality-article article:hover {
   transform: scale(1.035);
   box-shadow: 2px 2px 10px rgb(104, 97, 97);
   background-color: rgb(48, 80, 124);
}

.aktuality-article article:hover p {
    color: white;
}

/*** Ohlédnutí ***/

/* Section ohlédnutí */

.section-ohlednuti {
    display: flex;
    flex-direction: row;
    padding: 1%;
}

.ohlednuti-h2 {
    position: relative;
    padding-top: 15px;
    color: rgb(51, 116, 51);
    font-size: 2rem;
    margin-top: 4%;
    margin-left: 1%;
}

.ohlednuti-h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: rgb(51, 116, 51);
    border-radius: 2px;
}

/* Large article */

.large-article {
    display: flex;
    flex-direction: column;
    flex: 3;
    transition: 300ms;
}

.large-article:hover {
    transform: scale(1.015);
    box-shadow: 3px 3px 15px rgb(104, 97, 97);
    border-radius: 10px;
}

.large-article article {
    background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.2),rgba(0,0,0,0)),
    url("../img/snezka.png");
    background-size: cover;
    background-position: center;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 65vh;
    padding: 4%;
    color: white;
    box-shadow: 2px 2px 10px rgb(104, 97, 97);
}


.large-article article p:nth-child(1) {
    font-weight: bold;
    font-size: 2.2rem;
    letter-spacing: 1.5px;
}

.large-article article p:nth-child(2) {
    margin-top: 2%;
    letter-spacing: 2.5px;
    font-size: 1.1rem;
}

.large-article-link {
    background-color: white;
    padding: 4%;
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 2px 10px rgb(104, 97, 97);
}

.large-article-link a {
    display: inline-block;
    background-color: rgb(51, 116, 51);
    color: white;
    padding: 1.5% 3%;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 5px;
    transition: 300ms;
}

.large-article-link a:hover {
    transform: scale(1.08);
}

/* Smal articles */

.smal-articles {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex: 2;
    padding-left: 2%;
}

.smal-articles article {
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 26vh;
    box-shadow: 2px 2px 10px rgb(104, 97, 97);
    margin-top: 1%;
}


.smal-article-1 {
    background-image:
    url("../img/Ohlednuti-article1.png");
    background-size: cover;
    background-position: center;
}

.smal-article-2 {
    background-image:
    url("../img/Ohlednuti-article2.png");
    background-size: cover;
    background-position: center;
}

.smal-articles-div {
    background-color: white;
    padding: 2.5%;
}

.div-smal-articles {
    transition: 300ms;
}

.div-smal-articles:hover {
    transform: scale(1.015);
    box-shadow: 3px 3px 15px rgb(104, 97, 97);
    border-radius: 10px;
}

.smal-articles-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 0 0 10px 10px;
    box-shadow: 2px 2px 10px rgb(104, 97, 97);
    padding: 3.5%;
}

.smal-articles-div-text {
    flex: 3;
}

.smal-articles-div-text p:nth-child(1){
    font-size: 1.3rem;
    color: rgb(48, 80, 124);
    font-weight: 700;
    margin-bottom: 3%;
}

.smal-articles-div-text p:nth-child(2){
    color: rgb(48, 80, 124);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.smal-articles-div-link {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.smal-articles-div-link a {
    display: inline-block;
    text-decoration: none;
    font-weight: 450;
    font-size: 1.1rem;
    padding: 6% 14%;
    color: white;
    background-color: rgb(51, 116, 51);
    border-radius: 5px;
    transition: 250ms;
}

.smal-articles-div-link a:hover {
    transform: scale(1.15);
    padding: 5% 14%;
}

/*** Sponsor ***/

.sponsor {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 2% 5%; 
    margin: 5% 0.5% 3% 0.5%; 
    background-color: white;
    border-radius: 15px;
}

.sponsor article {
    flex: 1;
}


.sponsor article:nth-child(1) {
    display: flex;
    justify-content: right;
    margin-right: 5%;
}

.sponsor article:nth-child(2) {
    display: flex;
    justify-content: left;
}

.sponsor article img {
    display: block;
    max-width: max-content;
    width: 55%;
    transition: 300ms;
}

.sponsor article img:hover {
    transform: scale(1.17);
}

/*** Kontakty a Dokumenty ***/

/* Section */

.section-kontakty-dokumenty {
    padding: 0 1%;
    margin-top: 2%;
}

.kontakty-dokumenty {
    display: flex;
    flex-direction: row;
    padding: 2% 2% 7% 2%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    border-radius: 15px;
}

.section-kontakty-dokumenty h3 {
    color: rgb(51, 116, 51);
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 2.5%;
    flex: 0.6;
}

.more-contacts {
    margin-top: 4%;
    text-align: center;
    color: rgb(48, 80, 124);
}

/* Kontakty */

.artilce-kontakty {
    flex: 2;
}

.artilce-kontakty div {
    display: flex;
    flex-direction: row;
}

.artilce-kontakty div article {
    flex: 1;
    color: rgb(48, 80, 124);
    line-height: 38px;
}

.artilce-kontakty div article p:nth-child(1) {
    font-size: 1.2rem;
    font-weight: bold;
}


/* Dokumenty */

.article-dokumenty {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-left: 2%;
}

.article-dokumenty div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 2;
}


.article-dokumenty div a{
    font-size: 1.05rem;
    padding: 2% 1%;
    font-weight: 450;
    text-decoration: none;
    color: rgb(48, 80, 124);
}

/*================= Footer =================*/

/* Footer text */

.footer {
    position: absolute ;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(48, 80, 124);
}

/* Info */

.section-info {
    display: flex;
    flex-direction: row;
    gap: 4%;
    margin: 4% 0;
    padding: 3% 4%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(5px);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    color: rgb(48, 80, 124);
}

.info-content {
    flex: 1.2;
}

.section-info h2 {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(51, 116, 51);
    margin-bottom: 2%;
    padding-top: 1%;
}

.section-info h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: rgb(51, 116, 51);
    border-radius: 3px;
}

.section-info p {
    font-size: 1.1rem;
    line-height: 3;
}

.section-info strong {
    color: rgb(51, 116, 51);
    font-weight: 600;
}

.info-map {
    flex: 1;
}

.info-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
