/* Globální styly */

*, *::before, *::after {
box-sizing: border-box;
}

body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
scroll-behavior: smooth;
}

/* Navigace */

.navbar {
width: 100%;
background-color: #333;
overflow: hidden;
position: fixed;
top: 0;
z-index: 1000;

display:flex;
align-items:center;
}

/* HAMBURGER IKONA */

.menu-toggle{
display:none;
font-size:30px;
color:white;
padding:14px 20px;
cursor:pointer;
margin-left:auto;
}

/* MENU */

.navbar ul {
list-style: none;
padding: 0;
margin: 0;
}

/* desktop menu */

.nav-menu{
display:flex;
justify-content:center;
flex-wrap:wrap;
width:100%;
}

.navbar ul li {
display: block;
}

.navbar ul li a {
color: white;
text-decoration: none;
padding: 14px 20px;
display: block;
white-space: nowrap;
}

.navbar ul li a:hover {
background-color: orange;
color: black;
}

/* Header */

header {
padding-top: 80px;
text-align: center;
margin-bottom: 25px;
}

.header-content {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding-top: 10px;
}

.responsive-logo {
max-width: 10%;
height: auto;
margin: 0 auto;
}

.highlight {
color: black;
display: inline-block;
border-bottom: 3px solid orange;
padding-bottom: 0px;
}

/* Obrázky */

img {
max-width: 100%;
height: auto;
border-radius: 12px;
object-fit: cover;
display: block;
}

.responsive-inside {
max-width: 50%;
margin: 0 auto;
}

/* Hlavní obsah */

section {
padding: 20px;
max-width: 1400px;
margin: auto;
scroll-margin-top: 110px;
}

/* Nové podstránky */

.page {
max-width: 900px;
margin: auto;
padding: 100px 20px 40px 20px;
}

/* Text */

h1 {
text-align: center;
margin-bottom: 20px;
color: black;
}

h2 {
text-align: center;
margin-bottom: 20px;
}

p {
text-align: justify;
text-align-last: center;
}

/* Intro text */

.intro-text {
margin: 20px auto;
padding: 20px;
line-height: 2;
font-size: 18px;
max-width: 750px;
text-align: left;
}

.orange-text {
color: orange;
font-weight: bold;
}

.arrow {
font-size: 1.2em;
font-weight: bold;
color: #ff6600;
margin: 0 5px;
}

/* Provozovna obrázek */

#barber-shop {
text-align: center;
margin-bottom: 20px;
}

.responsive-image {
width: 100%;
height: auto;
}

/* Služby */

.services-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}

.service {
width: calc(50% - 20px);
margin-bottom: 20px;
text-align: center;
}

.service img {
width: 100%;
height: auto;
}

.service p {
margin-top: 10px;
}

/* Otevírací doba */

.opening-day {
color: orange;
}

/* Kontakt */

.contact-info i {
color: orange;
margin-right: 5px;
}

/* Mapa */

.map-container {
width: 100%;
margin: 20px 0;
}

.map-container iframe {
width: 100%;
height: 400px;
}

/* Footer */

footer {
background-color: #333;
color: white;
text-align: center;
padding: 15px 0;
margin-top: 40px;
}

footer a {
color: orange;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}

/* Mobil */

@media (max-width: 768px) {

/* navbar struktura */

.navbar{
flex-direction:column;
align-items:stretch;
}

/* hamburger */

.menu-toggle{
display:block;
text-align:right;
}

/* menu skryté */

.nav-menu{
display:none;
flex-direction:column;
width:100%;
background:#333;
}

/* otevřené menu */

.nav-menu.active{
display:flex;
}

/* položky menu */

.nav-menu li{
text-align:center;
width:100%;
}

.nav-menu li a{
padding:15px;
border-top:1px solid rgba(255,255,255,0.2);
}

/* ostatní mobilní úpravy */

.service {
width: 100%;
}

.responsive-logo {
max-width: 30%;
}

.page {
padding-top: 120px;
}

}

@media (max-width: 480px) {

.intro-text {
font-size: 16px;
line-height: 1.8;
}

}