* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
}

@media (max-width: 1050px){
    .nav{
        display: none;
    }
}
/*inne nagłówki */
:root {
      --c-accent: #04d2e1;
      --c-bg:#0d0d0d; 
      --c-bg-grad:#1a1a1a;
      --c-text:#ffffff;
}
h2{
    color:var(--c-text);
    font-family:Bebas Neue;
    letter-spacing:1px;
    font-size:40px;
    text-transform:uppercase;
    position:relative;
    display: inline-block;
    text-align: center;
}
h2::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:50px;
    transform: translateX(-50%);
    width:120px;
    height:3px;
    background:var(--c-accent);
} 
h3{
    font-family: Bebas Neue;
    font-size: 40px;
}
.container {
  display: inline-block;
  cursor: pointer;
}
.bar1, .bar2, .bar3 {
  width: 35px;
  height: 5px;
  background-color: #ffffff;
  margin: 6px 0;
  transition: 0.4s;
}
@media (min-width: 1050px){
    .container{
        display: none;
    }
}

.dropdown-menu{
    position: absolute;
    right: 0%;
    top: 73px;
    display: none;
    background: rgba(33, 33, 33, 0.5);
    width: 250px;
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.dropdown-menu div{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu.show{
    display:inline-block;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--c-bg);
    padding: 10px 20px;
    top: 0;
    position: sticky;
    z-index: 1000;
    height: 73px;
}

.logo img{
    max-width: 150px;
    padding-top: 5px;
}

.logo h1{
    padding: 5px 10px;
}

nav {
    display: flex;
    justify-content: right;
}

.nav-item{
    padding-right: 30px;
}

.interval{
    padding-right: 30px;
}

.interval a{
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
}

.interval a:hover {
    background-color: var(--c-bg);
    border-radius: 5px;
}

.nav-item a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
    position:relative;
}

.nav-item a:hover::after {
    content:"";
    position:absolute;
    left:50%;
    bottom:0px;
    transform: translateX(-50%);
    width:120px;
    height:3px;
    background:var(--c-accent);
}

.picture {
    background-image: url('spawacz.jpg');
    background-size: cover;
    background-position: 100% 40%;
    height: 450px;
    position: relative;
}

.picture-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    font-family: Bebas Neue;
}
.picture-content img{
    max-width: 350px;
}
    
.picture-content h1 {
    text-align: center;
}

.about h2, .offer h2, .contact h2{
    padding-bottom: 50px;
}

main > div{
    padding-top: 73px;
    padding-bottom: 73px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
}

main h2{
    padding-bottom: 50px;
}
/*-------------------------about-------------------------*/
.about{
    padding-top: 73px;
    padding-bottom: 73px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
    background: linear-gradient(135deg,var(--c-bg),var(--c-bg-grad));
    background-color: var(--c-bg-grad);
    font-size: large;
}
/*-------------------------offer-------------------------*/
.offer{
    padding-top: 73px;
    padding-bottom: 73px;
    padding-left: 20%;
    padding-right: 20%;
    font-size: large;
    background-color: var(--c-bg-grad);
}

.offer h2{
    text-align: center;
}
.offer h3{
    font-size: 30px;
}
.offer ul{
    list-style-type: square;
    text-align: left;
}

.offer li{
    margin: 20px;
    font-size: large;
}
li::marker{
    color:var(--c-accent);
}
.offer-columns{
  display:flex;
  flex-wrap:wrap;
  gap:40px;               
  justify-content:space-between;
}
.offer-column{
  flex:1 1 45%;
  min-width:260px;
}
.offer-column ul{
  list-style:none;
  padding:0;
  margin:0;
  text-align:left;
}
.offer-column:nth-child(2) ul{
  text-align:right;
}


.offer-column li{
  position:relative;
  padding:6px 0 6px 20px;
}
.offer-column:nth-child(2) li{
  padding:6px 20px 6px 0;
}
.offer-column li::before{
  content:"";
  position:absolute;
  top:calc(50% - 1px);
  width:14px;
  height:2px;
  background:var(--c-accent,#04d2e1);
}
.offer-column:first-child li::before{ 
    left:0; 
}
.offer-column:nth-child(2) li::before{ 
    right:0; 
}
/*-------------------------gallery-------------------------*/
.gallery{
    background: linear-gradient(135deg,var(--c-bg),var(--c-bg-grad));
}

.gallery-container {
    display: flex;
    gap: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: auto;
    
}
.swiper{
    display: flex;
    height: 500px;
    width: auto;
}

.swiper-slide{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;   
}


.gallery img{
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.gallery-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: var(--c-bg);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.gallery-button:hover {
    background-color: #0056b3;
}
@media (max-width: 1050px){
    .swiper{
        height: 400px;
    }
}
/*-------------------------contact-------------------------*/
.contact{
    padding-top: 73px;
    padding-bottom: 73px;
    padding-left: 20%;
    padding-right: 20%;
    text-align: center;
    font-size: large;
    width: 100%;
    background-color: var(--c-bg-grad);
    color: white;
}

.wform {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wform input{
    margin-bottom: 10px;
}

.form{
    padding: 20px;
}

.contact input, textarea{
    width:300px;
    height: 25px;
    border: 0px;
    border-radius: 5px;
    background-color: ghostwhite;

}

.contact textarea{
    resize: vertical;
    min-height: 70px;
}

.contact button{
    width: 100%;
    height: 45px;
    background-color: var(--c-bg);
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact button:hover {
    background-color: #0056b3;
}

html, body {
    height: 100%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    line-height: 1.5;
}

footer {
    background-color: var(--c-bg);
    color: white;
    text-align: center;
    padding: 10px 0;
}