body {
    font-family: 'Montserrat', sans-serif;
	margin: 0;
	font-size: 12px;
}

@media (max-width: 700px) {
	body {
		min-width: 100%;
    }
}

@media (max-width: 425px) {
    body {
        font-size: 0.8rem;
    }
}

	/* Custom navbar styles for all pages */
	
.navbar {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 1920px) {
    .container-fluid {
        max-width: 1920px;
        margin: 0 auto;
    }
}
	
.custom-navbar {
    background-color: #00266d;
	position: relative;
}

.navbar-nav .nav-link {
    color: #fff;
    opacity: 1; 
}

.nav-link:hover {
    opacity: 0.7;
    transition: 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.active:hover,
.navbar-nav .nav-link.active:focus {
    font-weight: bold;
}

.navbar-toggler {
    background-color: #fff;
    border: none;
}

.navbar-toggler-icon {
    background-color: #fff; 
}

        .navbar-separator {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1920px; 
            max-width: 100%;
            height: 1px;
            background-color: #fff;
        }

	/* background for main page */

.general-container {
	width: 100%;
	margin: auto;
	background: rgba(0, 38, 109, 0.85); 
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
	overflow-x: hidden;
}

	/* carousel top side of the main page */

.carousel {
    max-width: 1920px;
    margin: auto; 
	justify-content: center;
}
		.carousel-item::before {
			content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
		background: rgba(0, 0, 0, 0.5);
		}
		
.carousel-item img{
	max-height: 300px;
	width: 100%;  
	object-fit: cover;  
	object-position: center;  
}


@media (min-width: 1920px) {
    .carousel {
		width: 100%;
    }
}

	/* title separator style on main page */

.separator {
	position: relative;
    padding: 1rem;
	max-width: 1920px;
    margin: 0 auto;
}

.separator::before,
.separator::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
}

.separator::before {
    top: 0; 
}

.separator::after {
    bottom: 0.5rem; 
}

        @media (min-width: 1920px) {
            .separator {
                width: 100%;
            }
        }






	/* Container Table styles */

	
	.mainTableContainer {
    max-height: 48rem;
	overflow-x: auto;
    overflow-y: hidden;
    transition: max-height 0.8s ease;
}
	
    @media (min-width: 1921px) {
        .mainTableContainer {
            max-width: 1920px;
            margin: 0 auto;
        }
    }

    @media (max-width: 540px) {
        .mainTableContainer {
            width: 100%;
            overflow-x: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(0, 38, 109, 0.85) transparent;
            min-width: 539px;
        }
        .table {
          width: 100%;
          min-width: 520px;
        }
    }
	
    .table {
        position: relative;
        margin-top: 10px;
    }

    .row-number-head h5 {
        position: relative;
		color: #fff;
        padding-left: 1rem;
    }
	
	.row-title-head h5 {
		margin-right: 50%;
	}

    .second-column-text-head {
        min-width: 220px;
    }
	
	th {
		vertical-align: middle;
	}
	
	th h5 {
        color: #fff;	
	}
	
    th span h5 {
		        color: #fff;
        margin-left: 1rem;
    }

    tbody tr:hover {
        background: #00266D;
    }

    tr:hover .row-number::before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" fill="none"><g id="Polygon-icon"><path id="Polygon 12" d="M27 13.268C28.3333 14.0378 28.3333 15.9623 27 16.7321L10.5 26.2583C9.16667 27.0281 7.5 26.0659 7.5 24.5263V5.47372C7.5 3.93412 9.16667 2.97187 10.5 3.74167L27 13.268Z" fill="white"/></g></svg>');
    }

    .row-number {
        font-size: 2rem;
        position: relative;
        padding-left: 2rem;
    }
	
	 .row-number span{
		color: #fff; 
	 }

    tr:hover .row-number span {
        display: none;
    }
	
	.track-logo {
    display: flex;
    align-items: center;
    gap: 25px;
	}

	.track-logo img {
		max-height: 100px;
	}

	.first-column-text {
		margin: 0; 
	}

	.first-column-text h5 {
		margin: 0; 
	}

    .track-logo img {
        width: 100px;
        height: 100px;
        border-radius: 15px;
    }

    .first-column-text span {
        position: relative;
        margin: auto;
        text-align: center;
    }

    .second-column-text span {
        font-size: 0.9rem;
    }

    .play-pause-button-function {
      min-width: 120px;
    }


    button {
        cursor: pointer;
        border: none;
        background-color: transparent;
    }

    .play-icon,
    .pause-icon {
        transition: opacity 0.3s ease;
    }

    .pause-icon {
        opacity: 0;
        transform: translate(-100%);
    }

    button.playing .play-icon {
        opacity: 0;
    }

    button.play-pause:not(.playing):hover .play-icon {
        opacity: 0.5;
    }

    button.playing .pause-icon:hover {
        opacity: 0.5;
    }

    button.playing .pause-icon {
        opacity: 1;
    }

    .heart-icon:hover {
        transition: opacity 0.3s ease;
        opacity: 0.5;
    }

        .popup-heart-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }

        .popup-heart-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    position: relative; 
    animation: slideIn 0.5s ease;
}

.popup-heart-content .close-success-btn {
    position: absolute;  
    top: -10px;
    right: -10px; 
    cursor: pointer;
    background-color: #ff5555;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.close-success-btn:hover {
    background-color:rgba(0, 0, 0, 1);
}

        @keyframes slideIn {
            from {
                transform: translateY(-50%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        @media (max-width: 620px) {
    .popup-heart-content {
        max-width: 80vw;
        margin: auto;
    }
}

	
.rotating-button {
    margin-top: 0.8rem;
	margin-bottom: 5rem;
}

.rotating-button:hover {
	opacity: 0.5;
	transition: 0.5s ease;
}

#rotatingImage.rotate {
    transform: rotate(180deg);
}






	/* Rounded container bottom side of main page */
	
.rounded-container {
	position: relative;
	display: flex;
	align-items: center;
            width: 100%;
            color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
            background-color: rgba(0, 38, 109, 0.8);
            text-align: center;
			margin: auto;
			bottom: 25px;
        }
		
		        @media (min-width: 1921px) {
			.rounded-container {
				max-width: 1920px;
				margin: auto;
			}
			}
		
		    .hand-icon {
            margin-right: 20px; 
        }

        .text-rounded-bottom {
            text-align: left; 
        }

	/* mail icon phone icon on main style */

    .mail-icon,
    .phone-icon {
      position: fixed;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.2s ease, transform 0.2s ease;
    }

    .mail-icon {
      bottom: 100px;
      right: 10px;
      background-color: #007bff;
    }

    .mail-icon:hover {
      background-color: #0056b3;
      transform: scale(1.2);
    }

    .phone-icon {
      position: fixed;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1rem;
      cursor: pointer;
      transition: width 0.2s ease, border-radius 0.2s ease;
      border-radius: 50%;
      bottom: 160px; 
      right: 10px; 
      background-color: #007bff; 
      overflow: hidden; 
    }

    .phone-icon:hover {
      width: 275px;  
      border-radius: 10px; 
      background-color: #0056b3;
    }

    .phone-number {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      cursor: pointer; 
      color: #fff; 
      font-size: 1rem;
      text-decoration: none; 
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .phone-icon:hover .phone-number {
     opacity: 1;
    }

    .icon-phone {
      display: flex;
    }

    .phone-icon:hover .icon-phone {
      display: none;
    }

	/* 'Dodaj sugestię' button and form style */
	
	        .suggestion-button {
            position: fixed;
            bottom: -8px;
            right: 0;
            padding: 6px;
            background-color: #943d00;
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
		
		.suggestion-button:hover {
			background-color: #0056b3;
		}
		
        .popup-container {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }

        .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: left;
    position: relative; 
    animation: slideIn 0.5s ease;
}

.popup-content .close-success-btn {
    position: absolute;  
    top: -30px;
    right: -30px; 
    cursor: pointer;
    background-color: #ff5555;
    color: #fff;
    border: none;
    border-radius: 20%;
    width: 10px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.contact-form {
	animation: slideIn 0.5s ease;
}

.contact-form label {
	color: black;
	
}

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            margin-bottom: 10px;
            box-sizing: border-box;
			border-radius: 5px;
			
        }

        .contact-form button {
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
        }

        .Send-button {
            background-color: #4CAF50;
        }
		
		.Send-button:hover {
            background-color: #00266d;
        }

        .Cancel-button {
            background-color: #ff0000;
            float: right;        
        }   
		
		.Cancel-button:hover {
            background-color: #00266d;
        }   

        .popup-content-success {
            background: #fff;
            padding: 20px;
            border-radius: 5px;
            text-align: center;
            position: relative;
            animation: slideIn 0.5s ease;
        }

        .popup-content-success .close-success-btn {
            position: absolute;
			top: -10px;
			right: -10px;
			cursor: pointer;
			background-color: #ff5555;
			color: #fff;
			border: none;
			border-radius: 20%;
			width: 38px;
			height: 30px;
			display: flex;
			justify-content: center;
			align-items: center;
			font-size: 18px;
		}

		.close-success-btn:hover {
			background-color: #00266d;
		}

        .success-icon {
            color: #4CAF50;
            font-size: 48px;
            margin-bottom: 2px;
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        @media (max-width: 620px) {
			.popup-content-success {
				max-width: 80vw;
				margin: auto;
			}
			.popup-content {
				max-width: 80vw;
				margin: auto;
			}
		}


	/* main page footer */
	
@media (min-width: 1920px) {
    .footer {
        max-width: 1920px;
        margin: auto;
    }
}
	
.weo-icon {
		cursor: pointer;
}

.weo-icon:hover {
	transform: scale(1.2);
	opacity: 0.6;
	transition: 0.3s ease;
}






	/* 'Kontakt' subpage form style */
	
.head-content-kontakt-subpage {
        color: white;
		font-size: 1rem;
		position: relative;
		text-align: center;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 5rem;
		margin-top: 0.5rem;
		max-width: 600px;
    }
	
.head-content-kontakt-subpage p{
        color: white;
		font-size: 1rem;
		margin-top: 2rem;
    }

form {
    max-width: 600px;
    margin: 20px auto;
    background: rgba(0, 0, 0, 0.35);
    padding: 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

label, textarea {
    display: block;
    margin-bottom: 0.5rem;
}

label {
    color: white;
	font-size: 1rem;
}

textarea {
    width: 100%;
    height: 10rem;
}

button.form-button-subpage, button.clear {
    padding: 0.625rem;
    width: calc(50% - 5px);
    margin-top: 10px;
    cursor: pointer;
    border-radius: 0.4rem;
}

button.form-button-subpage {
    background-color: #00266d;
    color: white;
    border: none;
}

button.form-button-subpage:hover {
    background-color: #34476C;
}

button.clear {
    background-color: #C05B5B;
    color: white;
    border: none;
}

button.clear:hover {
    background-color: #C38484;
}


	/* o mnie subpage content styles */

.content-container {
  width: 100%;
  max-width: 1920px;
  margin: 6rem auto; 
  box-sizing: border-box; 
}

@media (min-width: 1921px) {
  .content-container {
    margin-left: auto;
    margin-right: auto;
  }
}


.separator-content {
	position: relative;
    padding: 0;
	max-width: 1920px;
    margin: 0 auto;
}

.separator-content::before,
.separator-content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #fff;
}

.separator-content::before {
    top: -1rem;
}

.separator-content::after {
    bottom: 0; 
}

        @media (min-width: 1920px) {
            .separator {
                width: 100%;
            }
        }

	/* o mnie subpage styles gallery */

        .gallery-container {
            width: 100vw;
            background-color: rgba(0, 38, 109, 0.8);
            max-width: 1920px;
            max-height: 500px;
            border-radius: 10px;
            overflow: auto;
            white-space: nowrap;
            margin: auto;
			margin-top: 20px;
			margin-bottom: 25px;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        @media (min-width: 1921px) {
            .gallery-container {
                max-width: 1920px;;
            }
        }

        .thumbnail {
            display: inline-block;
            margin: 15px 2px;
            cursor: pointer;
            text-align: center;
            flex: 0 0 calc(16.666% - 20px); 
            max-width: calc(16.666% - 20px);
        }

        .thumbnail img {
            width: 200px;
            height: auto;
            object-fit: cover;  
	        object-position: center;  
            border: 2px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .thumbnail img:hover {
            transform: scale(1.1);
        }

        #overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 1; 
            justify-content: center;
            align-items: center;
        }

        #overlay img {
            max-width: 90%;
            max-height: 90%;
        }

        #close-button {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            font-size: 16px;
            cursor: pointer;
        }

        #close-button:hover {
            opacity: 0.25;
        }

        #prev-button, #next-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            cursor: pointer;
            padding: 10px;
        }

        #prev-button:hover, #next-button:hover {
            opacity: 0.25;
        }

        #prev-button {
            left: 10px;
        }

        #next-button {
            right: 10px;
        }
		
	/* contact content styles */
		
		
		
		.contact-form-container {
            width: 100vw;
            background-color: rgba(0, 38, 109, 0.8);
            max-width: 1920px;
            min-height: 700px;
            border-radius: 10px;
            margin: auto;
			margin-bottom: 25px;
            text-align: center;
            justify-content: center;
		}

        @media (min-width: 1921px) {
            .contact-form-container {
                max-width: 1920px;;
            }
        }

		.head-content-kontakt-subpage {
		  text-align: center; 
		}

		form {
		  width: 100%;
		}
				
				
		.card-body {
            background-color: rgba(0, 38, 109, 0.85);
            color: #fff;
            
            display: flex;
            align-items: center;
            justify-content: center;
        }


        .faq-container {
            max-width: 1920px;
            margin: auto;
        }

        .faq-container .btn {
            min-width: 1920px;
        }
