/* ==========================================================================
   File: style.css
   Description: Main stylesheet for responsive centered layout
   Author: Rafal Dziedzic / Purrpool Legacy UK
   Language: en-GB / pl
   Charset: UTF-8
   ========================================================================== */

@charset "UTF-8";


html, body {
            height: 100%;
            margin: 0;
}

body {
            display: flex;
            justify-content: center;
            align-items: center;
			background-image: url("img/www_bg.png");
			background-repeat: repeat;
            font-family: Tahoma, Helvetica, sans-serif;
}

.center-box {
            padding: 40px 60px;
            font-size: 24px;
            text-align: center;
			background-image: url("img/logo_www.png");
			background-repeat: no-repeat;
			background-position: top;
			width: 460px;
			height:640px;
		
}



.bottom-bar {
    position: fixed;
    bottom: 20px;              /* odstęp od dołu */
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 40px;
    background: transparent;
    color: #492443;
    border-radius: 30px;
    font-size: 11px;
	font-family: Tahoma; 
    text-align: center;	
	min-width: 400px;
}

/* ============================
   Baner cookies – pełna wersja
============================ */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none; /* pokazuje się przez JS */
    z-index: 10000;
	border-radius:12px 12px 0 0; /* górne rogi zaokrąglone */
    box-shadow:0 -5px 20px rgba(0,0,0,0.3);
	min-width: 400px;
    font-size: 11px;
	font-family: Tahoma; 
}

.cookie-consent-banner a {
    color: #4da3ff;
    text-decoration: underline;
    font-size: 11px;
	font-family: Tahoma; 
}

.cookie-consent-button {
    background: #4da3ff;
    border: none;
    color: #fff;
    padding: 8px 16px;
    margin-left: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
}

.cookie-consent-button:hover {
    background: #338ed8;
    font-size: 11px;
}

/* kontener */
.social-bubbles{
    position:fixed;
    bottom:40px;
    right:40px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

/* bąbelki */
.bubble{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:22px;
    text-decoration:none;
    transition:all 0.4s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.4);
    position:relative;
}

/* tekst po hover */
.bubble span{
    position:absolute;
    right:75px;
    background:#222;
    padding:6px 12px;
    border-radius:8px;
    font-size:14px;
    opacity:0;
    transform:translateX(20px);
    transition:0.4s;
    white-space:nowrap;
}

.bubble:hover span{
    opacity:1;
    transform:translateX(0);
}

/* hover efekt */
.bubble:hover{
    transform:scale(1.15) rotate(10deg);
}

/* kolory */
.fb{
    background:#1877f2;
}

.ig{
    background:linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
}