/* montserrat-300 - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/montserrat-v29-latin_latin-ext-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/montserrat-v29-latin_latin-ext-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* montserrat-regular - latin_latin-ext */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin_latin-ext-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
    url('../fonts/montserrat-v29-latin_latin-ext-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('../bg.jpg') no-repeat center center fixed;
    background-size: cover;
    background-blend-mode: darken;
    color: white;
}

@media (max-width: 1024px) {
    body {
        background-size: auto;
        background-repeat: repeat; /* Nadal wypełnia ekran */
    }
}

.contact-info {
    padding: 20px;
}

.contact-info h1 {
    font-size: 48px;
    letter-spacing: 2px;
}

.personal-info {
    font-size: 20px;
    margin-bottom: 10px;
}

.map-pin {
    font-size: 18px;
}

.gallery {
    margin-top: 20px;
    text-align: center;
}

/* Styling for vertical images with 4:5 aspect ratio */
.gallery .img-container {
    display: inline-block;
    margin: 10px;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
    width: 250px;
    overflow: hidden;
}

.img-container img {
    transform-origin: center center;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.gallery .img-container img {
    width: 250px;
    /*height: 350px;*/
    object-fit: cover;
}

/* Styling for bold, white links */
a {
    color: #b3d9ff;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: #4da6ff;
}

/* Container to maintain 1:1 aspect ratio */
.map-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Iframe inside the container */
.map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Styling for the text below the address */
.service-description {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
    color: white;
}

.footer-content {
    width: 100%;
    position: relative;
}
.footer-content .left {
    position: absolute;
    left: 20px;
}
.footer-content .right {
    position: absolute;
    right: 20px;
}

h1, h2, .personal-info {
    margin-top: 0; !important;
    margin-bottom: 0; !important;
}