/*index*/

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #92a1a6;
    color: white;
    padding: 1em;
    text-align: center;
    position: relative;
}

header .logo {
    position: absolute;
    top: 10px;
    left: 10px;
    height: 50px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 2em;
}

footer {
    background-color: #92a1a6;
    color: White;
    text-align: center;
    padding: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
}


/*contacts*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #92a1a6;
    color: white;
    padding: 1em;
    text-align: center;
}

main {
    padding: 2em;
}

section {
    margin-bottom: 2em;
}

.team {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.team-member {
    flex: 1 1 calc(25% - 1em);
    background-color: #92a4a6;
    padding: 1em;
    border-radius: 5px;
}

.team-member p {
    margin: 0.5em 0;
}

footer {
    background-color: #92a1a6;
    color: white;
    text-align: center;
    padding: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
}





/*services*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #92a1a6;
    color: white;
    padding: 1em;
    text-align: center;
}

main {
    padding: 2em;
    flex: 1;
}

section {
    margin-bottom: 2em;
}

.gallery {
    margin-top: 2em;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.pricing table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2em;
}

.pricing th, .pricing td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.pricing th {
    background-color: #f4f4f4;
}

footer {
    background-color: #92a1a6;
    color: white;
    text-align: center;
    padding: 1em;
    width: 100%;
	bottom: 0;
}


/* Lightbox pozadie */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Otvorenie pomocou :target */
.lightbox:target {
    display: flex;
}

/* Obrázok */
.lightbox img {
    max-width: 95%;
    max-height: 95%;
    box-shadow: 0 0 20px black;
}

/* Zavretie (X) */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}




