@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(""),
}

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

/* Header */

header {
    background-color: #e7e7e7;
    background-image: 
    url("");
    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: 50%;
    min-width: 30%;
}

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

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

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


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


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

main {
    padding: 1% 5%;
}

/* Kontakty */

/* ================= Nadpis Kontakty ================= */

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

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


.section-kontakty {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    padding: 4% 2%;
}

.section-kontakty article {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 300ms, box-shadow 300ms;
}

.section-kontakty article:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.section-kontakty article img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid rgb(51, 116, 51);
}

.section-kontakty article h3 {
    font-size: 1.4rem;
    color: rgb(48, 80, 124);
    margin-bottom: 0.6%;
}

.section-kontakty article p {
    color: rgb(48, 80, 124);
    font-size: 1.05rem;
    margin: 0.3rem 0;
}

.section-kontakty article p:last-child {
    margin-top: 0.8%;
    font-weight: bold;
    color: rgb(51, 116, 51);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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