﻿@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&subset=cyrillic,cyrillic-ext,latin-ext') ;
body {
font-family : "Open Sans", Arial, sans-serif;
}
.navbar-toggle {
background : rgb(0, 0, 0, 0.01) !important ;
border : rgb(0, 0, 0, 0.15) solid 1px;
}
.navbar-toggle span.icon-bar {
background-color : #777;
}
h1 {
font-weight : 300;
color : #000080;
}
h4 {
font-weight : 400;
color : #000080;
font-size : 1.7em;
}
.bg-info h2 {
color : #fff;
}
.bg-info h2 .text-muted {
color : #ccc;
}
.lead strong {
font-weight : 500;
}
.navbar-nav > li > a {
font-size : 1.8em;
color : #000080;
}
.navbar-right > li > a {
font-size : 1em;
}
.navbar-right > li > a {
padding : 5px 15px;
}
@media (min-width: 768px) {
.navbar-right > li > a {
padding : 10px 8px;
line-height : 2.4em;
}
.navbar-right {
padding-right : 15px;
padding-left : 15px;
}
}
.on-scroll-enable {
display : inline;
}
.onscrolldisable {
display : none;
background-color : #66ffff;
}
.padding-x-10 {
padding-left : 10px;
padding-right : 10px;
}
.padding-x-20 {
padding-left : 20px;
padding-right : 20px;
}
.padding-x-30 {
padding-left : 30px;
padding-right : 30px;
}
.padding-x-40 {
padding-left : 40px;
padding-right : 40px;
}
.padding-x-50 {
padding-left : 50px;
padding-right : 50px;
}
.padding-xl-10 {
padding-left : 10px;
}
.padding-xl-20 {
padding-left : 20px;
}
.padding-xl-30 {
padding-left : 30px;
}
.padding-xl-40 {
padding-left : 40px;
}
.padding-xl-50 {
padding-left : 50px;
}
.padding-xr-10 {
padding-right : 10px;
}
.padding-xr-20 {
padding-right : 20px;
}
.padding-xr-30 {
padding-right : 30px;
}
.padding-xr-40 {
padding-right : 40px;
}
.padding-xr-50 {
padding-right : 50px;
}
.padding-y-10 {
padding-top : 10px;
padding-bottom : 10px;
}
.padding-y-20 {
padding-top : 20px;
padding-bottom : 20px;
}
.padding-y-30 {
padding-top : 30px;
padding-bottom : 30px;
}
.padding-y-40 {
padding-top : 40px;
padding-bottom : 40px;
}
.padding-y-50 {
padding-top : 50px;
padding-bottom : 50px;
}
.padding-yt-10 {
padding-top : 10px;
}
.padding-yt-20 {
padding-top : 20px;
}
.padding-yt-30 {
padding-top : 30px;
}
.padding-yt-40 {
padding-top : 40px;
}
.padding-yt-50 {
padding-top : 50px;
}
.padding-yb-10 {
padding-bottom : 10px;
}
.padding-yb-20 {
padding-bottom : 20px;
}
.padding-yb-30 {
padding-bottom : 30px;
}
.padding-yb-40 {
padding-bottom : 40px;
}
.padding-yb-50 {
padding-bottom : 50px;
}
.zoom-gallery img {
padding-bottom : 30px;
}
.zoom-gallery a {
text-align : center;
}
.google-maps {
border-width : 0;
height : 360px;
width : 100%;
padding : 0;
margin : 10px 0 0 0;
border : none;
}
.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
margin : auto;
}
.featurette ul {
padding-bottom : 20px;
font-size : 18px;
color : #555;
}
@media (max-width: 1200px) {
h1 {
font-size : 1.8em;
}
}
@media (max-width: 768px) {
h1 {
font-size : 1.2em;
padding-top : 10px !important ;
padding-bottom : 10px !important ;
}
.navbar-header {
margin-right : auto !important ;
margin-left : auto !important ;
text-align : center;
}
.navbar-toggle {
float : none;
}
.responsive-text-center {
text-align : center;
}
body {
padding-top : 223px;
}
}



@media (max-width: 500px){
.google-maps {
border-width : 0;
height : 180px;
width : 100%;
padding : 0;
margin : 10px 0 0 0;
border : none;
}
}
/* Pływający odtwarzacz audio */
.floating-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    opacity: 0.95;
}

.floating-player:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.player-container {
    padding: 0;
    color: white;
}

/* Nagłówek odtwarzacza */
.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.music-icon {
    font-size: 16px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

.player-controls-header {
    display: flex;
    gap: 5px;
}

.minimize-btn, .close-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.minimize-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.6);
}

/* Główna zawartość odtwarzacza */
.player-content {
    padding: 20px 15px 15px;
}

/* Informacje o utworze */
.track-info {
    text-align: center;
    margin-bottom: 15px;
}

.track-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.track-artist {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Pasek postępu */
.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.time-display {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    min-width: 35px;
}

.progress-bar-container {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-bar {
    width: 100%;
    height: 100%;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fff, #f0f0f0);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    left: 0%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar-container:hover .progress-handle {
    opacity: 1;
}

/* Kontrolki odtwarzacza */
.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 16px;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#prev-btn, #next-btn {
    width: 40px;
    height: 40px;
}

#play-pause-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
}

#play-pause-btn:hover {
    background: white;
}

.play-btn .pause-icon,
.playing .play-icon {
    display: none;
}

.playing .pause-icon {
    display: block;
}

/* Kontrolki głośności */
.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
}

.volume-slider-container {
    width: 60px;
}

.volume-slider {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Przycisk toggle (gdy odtwarzacz jest zminimalizowany) */
.floating-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    transition: all 0.3s ease;
}

.floating-toggle.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
}

.toggle-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.music-note {
    font-size: 16px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Stany odtwarzacza */
.floating-player.minimized {
    opacity: 0;
    pointer-events: none;
    transform: translateY(100px) scale(0.8);
}

.floating-player.playing .music-icon {
    animation: bounce 1s infinite;
}

/* Responsywność */
@media (max-width: 768px) {
    .floating-player {
        width: 280px;
        bottom: 15px;
        right: 15px;
    }
    
    .player-content {
        padding: 15px 12px 12px;
    }
    
    .floating-toggle {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .floating-player {
        width: 260px;
        bottom: 10px;
        right: 10px;
    }
    
    .volume-slider-container {
        width: 50px;
    }
    
    .player-controls {
        gap: 10px;
    }
    
    #prev-btn, #next-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    #play-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Animacja pojawiania się */
.floating-player.show {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

/* Efekt świecenia podczas odtwarzania */
.floating-player.playing {
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
}

.floating-player.playing::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #667eea);
    border-radius: 17px;
    z-index: -1;
    animation: glow 3s linear infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}
  .video-section {
            background: #f8f9fa;
            padding: 30px 20px;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .video-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .video-container video {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        
        .video-title {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
            font-size: 24px;
            font-weight: bold;
        }
        
        .video-description {
            text-align: center;
            margin-bottom: 25px;
            font-style: italic;
            color: #666;
            font-size: 16px;
        }
        
        /* Responsywność */
        @media (max-width: 768px) {
            .video-section {
                padding: 20px 15px;
                margin: 20px 0;
            }
            
            .video-title {
                font-size: 20px;
            }
            
            .video-description {
                font-size: 14px;
            }
        }