
    /* Global styles */
    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
        line-height: 1.6;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .navbar,
    .btn {
        font-weight: 600;
    }

    .section-title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }

    /* Navigation 
    .navbar {
        height: 60px;
    }
*/
    /* Add padding to sections to start below the header */
    #usluge, #dostava, #cena, #kontakt {
        padding-top: 60px;
    }


    /* Section 4: Dostava prevoda */
     #cena {
            background-image: url('https://images.unsplash.com/photo-1518655048521-f130df041f66?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
			min-width: 100%;
            padding: 0; /* Remove padding to extend background image to the edges */
        }

    /* Style for content within the left section of Section 5 */
    .left-content {
        background-color: rgba(255, 255, 255, 0.8);
        padding: 20px;
    }
	
	/* Sticky Footer Styles */
	.sticky-footer {
		position: fixed;
		bottom: 0;
		width: 100%;
		background-color: #343a40; /* Adjust the background color as needed */
		color: white; /* Adjust the text color as needed */
		padding: 20px 0;
	}
	
	/* Add additional styles for links, text, or other elements inside the footer */
	.sticky-footer a {
		color: white;
	}

    /* Responsive Google Map + "Did the map open?" prompt */
    .map-container {
        position: relative;
        width: 100%;
        height: min(65vh, 620px);
        min-height: 320px;
        overflow: hidden;
        background-color: #f1f3f5;
    }

    .map-frame {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    .map-check {
        position: absolute;
        left: 50%;
        bottom: 1rem;
        z-index: 3;
        width: calc(100% - 2rem);
        max-width: 420px;
        transform: translateX(-50%);
        display: none;
        padding: 1rem 1.1rem;
        border-radius: 8px;
        background: rgba(52, 58, 64, 0.96);
        color: #ffffff;
        text-align: center;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    .map-check.is-visible {
        display: block;
    }

    .map-check p {
        margin: 0 0 0.85rem;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
    }

    .map-check-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }

    .map-check-actions .btn {
        min-width: 7rem;
    }

    .map-open-link {
        display: inline-block;
        margin-top: 0.85rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #343a40;
        text-decoration: underline;
    }

    .map-open-link:hover,
    .map-open-link:focus {
        color: #007bff;
    }

    /* Mobile phone shortcut */
    .mobile-call-button {
        display: none;
    }
	
	.carousel-item {
		height:100vh;
		background-size:cover;
		background-position:center;
		position:relative;
		z-index:1;
		}

	.carousel-item:before {
		content:'';
		position:absolute;
		left:0;
		top:0;
		width:100%;
		height:100%;
		background-color:rgba(0,0,0,0.5);
		z-index:-1;
		
		}

	.carousel-item .container{
		position:absolute;
		left:50%;
		top:50%;
		transform:translate(-50%,-50%);
		text-align:center;
		}

	.carousel-item .container h2{
		font-size:2.5rem;
		color: white;
		margin:0 0 10 px;
		}

	.carousel-item .container p{
		font-size:1.3rem;
		color: white;
		margin:0;
		}

    @media (max-width: 767.98px) {
        .mobile-call-button {
            position: fixed;
            right: 1rem;
            bottom: calc(1rem + env(safe-area-inset-bottom));
            z-index: 1100;
            display: inline-flex;
            width: 56px;
            height: 56px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            background-color: #28a745;
            border-radius: 50%;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
            transition: background-color 0.2s ease, transform 0.2s ease;
        }

        .mobile-call-button:hover,
        .mobile-call-button:focus {
            color: #ffffff;
            background-color: #218838;
            outline: 3px solid rgba(40, 167, 69, 0.35);
            outline-offset: 3px;
            text-decoration: none;
            transform: translateY(-2px);
        }

        .mobile-call-button svg {
            width: 26px;
            height: 26px;
        }

        .map-container {
            height: 55vh;
            min-height: 300px;
        }

        #cena .container,
        #price .container {
            width: 100% !important;
            max-width: 100%;
            padding-right: 1.25rem;
            padding-left: 1.25rem;
        }
    }

