/* GENERAL BODY + TEXT */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: #222;
    color: #fff;
}

/* MAIN RISK MESSAGE */
.risk-text {
    text-align: center;
    font-size: 2em;
    padding: 20vh 30vh;
}

/* CONTACT DETAILS */
.contact-header {
	text-align: center;
    font-size: 1.6em;
    padding: 10vh 30vh 2vh 30vh;
}

.contact-email {
	text-align: center;
    font-size: 1.8em;
	font-weight: bold;
    padding: 2vh 30vh 10vh 30vh;
}

/* WTF PAGE */
.wtf {
	text-align: justify;
    font-size: 1.2em;
    padding: 0vh 30%;
}

.wtf p {
	text-indent: 10vh;
}

.wtf div.nurtujace-pytanie {
	text-align: center;
    font-size: 1.4em;
	font-variant: small-caps;
	color: red;
	
}

.wtf div.sign {
	text-align: right;
	font-style: italic;
	padding-top: 1vh;
}

/* MENU ICON (hamburger) */
.menu-icon {
    position: fixed;
    top: 15px;
    right: 30px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 999;
    display: none; /* hidden unless JS is active */
}

.menu-icon img {
    position: fixed;
    top: 15px;
    right: 30px;
	height: 60px;
	width: 60px;
}

/* SIDE MENU (initially hidden off screen if JS is active) */
.side-menu {
    background-color: #111;
    padding-top: 60px;
    color: white;
}

/* DEFAULT: NO-JS fallback (menu is visible at top of page) */
.side-menu {
    position: static;
    width: 100%;
    border-bottom: 2px solid #333;
}

/* WITH JS: override to be slide-in */
html.js .side-menu {
    position: fixed;
    top: 0;
    right: -260px;
    width: 260px;
    height: 100%;
    transition: right 0.3s ease-in-out;
    z-index: 998;
    padding-top: 60px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

/* SHOW SLIDE-IN MENU WHEN ACTIVE */
html.js .side-menu.visible {
    right: 0;
}

/* ONLY show hamburger icon when JS is active */
html.js .menu-icon {
    display: block;
}

/* MENU LIST STYLES */
.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    padding: 12px 20px;
    border-bottom: 1px solid #333;
}

.side-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.submenu {
    padding-left: 15px;
    font-size: 0.95em;
}

/* NO-JS WARNING BAR */
.no-js-warning {
    background: #ffcc00;
    color: #000;
    padding: 10px;
    font-weight: bold;
    text-align: center;
}

.main-banner {
	height: 308px;
	text-align: center;
	background-color: #282828;
	display: flex;
}

.main-banner img {
	/* border-radius: 25px 25px 25px 25px; */
	content: url("./images/banner_all_small.png");
	height: 308px;
}

.main-banner-left {
	height: 308px;
	width: auto;
	text-align: center;
	background-color: #282828;
	background-image: url("./images/banner_bkg_left.png");
	flex: 1;
}

.main-banner-right {
	height: 308px;
	width: auto;
	text-align: center;
	background-color: #282828;
	background-image: url("./images/banner_bkg_right.png");
	flex: 1;
}

/* MOBILE OVERRIDE */
@media (max-width: 768px) {
    .main-banner img {
        content: url("./images/banner-small.png");
        height: auto;
        width: 100%;
        object-fit: cover;
    }
	
	/* MAIN RISK MESSAGE */
	.risk-text {
		text-align: center;
		font-size: 2em;
		padding: 10vh 3vh;
	}

	/* CONTACT DETAILS */
	.contact-header {
		font-size: 1.2em;
		padding: 5vh 3vh 2vh 3vh;
	}

	.contact-email {
		font-size: 1.4em;
		padding: 2vh 3vh 10vh 3vh;
	}

	/* WTF PAGE */
	.wtf {
		font-size: 1em;
		padding: 0vh 10%;
	}

	.wtf p {
		text-indent: 7vh;
	}
	
	.side-menu {
		padding-top: 10px;
	}
	
	html.js .side-menu {
		padding-top: 10px;
	}
	
	.side-menu li {
		padding: 7px 20px;
	}
}