* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
	height: 100%;
}
.wrapper {
    min-height: calc(100vh - 60px); /* 100% wysokości - wysokość stopki */
}
.company-name {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    width: auto;
    text-align: left;
}
.company-name .second-line {
    font-size: 28px;
    font-weight: normal;
    text-transform: uppercase;
    text-align: left;
}
.header {
    width: 100%;
    height: 330px;
    background: url('menupic.webp') no-repeat center center/cover;
    position: relative;
}
.navbar {
    display: flex;
    justify-content: center;
    background: #333;
    padding: 15px 0;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 18px;
}
.navbar a:hover {
    background: #575757;
    border-radius: 5px;
}
.hero {
    padding: 50px;
    font-size: 18px; 
    max-width: 60%; 
    margin: 0 auto; 
    text-align: left; 
    line-height: 1.6;
}
.hero ul {
    padding-left: 5px;
	list-style: none;
}

.hero li {
    text-indent: 30px;
    padding-left: 30px;
}
.footer {
    background: #333;
    color: white;
    padding: 15px 0;
    margin-top: 20px;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}


.popup {
  display: none; /* <- dodaj to! */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.popup button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

@media (max-width: 768px) {
    .company-name {
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }
    .company-name .second-line {
        text-align: center;
    }
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar a {
        display: block;
        padding: 10px;
    }
    .hero {
        max-width: 100%;
        margin: 0 auto;
    }
	
    .hero ul {
        padding-left: 10px;
    }

    .hero li {
        text-indent: 30px;
        padding-left: 5px;
    }
}
