html {
  font-size: 14px; 
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}


.wide-bg {
    background-image: url("../images/background.jpg"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    width: 100%;
    min-height: 300px
}

.wide-bg-page {
    background-image: url("../images/background.jpg"); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    width: 100%;
    min-height: 200px;

    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center;     /* vertical centering */
    text-align: center;      /* optional: center text inside */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.responsive-img {
    width: 100%; /* Make the image scale to 100% of its container */
    height: auto; /* Maintain aspect ratio */
}




.video-container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.video-thumbnail {
    width: 100%;
    max-width: 560px; /* standard YouTube embed width */
    height: auto; /* zachowuje proporcje */
    cursor: pointer;
    border-radius: 6px; /* opcjonalnie: lekko zaokrąglone rogi */
    display: block;
}



