/*  phpBB3 Style Sheet
	--------------------------------------------------------------
	Style name:			prosilver Special Edition
	Based on style:		prosilver (the default phpBB 3.3.x style)
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Limited ( https://www.phpbb.com/ )
	--------------------------------------------------------------
*/

/* colours.css changes */
html, body {
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 10px;
	line-height: normal;
	margin: 0;
	padding: 12px 0;
	word-wrap: break-word;
	-webkit-print-color-adjust: exact;
	background-color: #424251;
	background: url('https://www.phpbbextnl.be/images/Background.jpg') no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

body.simple {
	min-height: 100%;
	padding: 0 5px;
}

.wrap {
	background-color: #ebf2f3;
	border-color: #000000;
	border: 2px solid #0080ff;
	border-radius: 15px;
	box-shadow: 0 0 5px 2px #8a8a8a, inset 0 3px 18px rgba(100, 100, 100, .25);
	margin: 0 auto;
	max-width: 1152px;
	padding: 13px 13px;
}

.site_logo {
	background-image: url("./images/site_logo.png") !important;
}

.headerbar {
    background: 
        linear-gradient(
            90deg,
            rgba(2, 31, 74, 0.95) 0%,
            rgba(18, 62, 97, 0.9) 53%,
            rgba(66, 110, 167, 0.85) 100%
        ),
        url("./images/headerbarbackground.png") !important;

    background-position: right center !important;
    background-repeat: no-repeat !important;
    background-blend-mode: multiply !important;
    
    padding: 12px 5px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    height: auto !important;
    color: #fff;
	
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.headerbar:hover {
    background-color: rgba(255, 255, 255, 0.06); /* subtiel highlight */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* zachte schaduw */
}

.dropdown {
	opacity: 1;
	transform: scaleY(1);
	transform-origin: top;
	transition-property: opacity, transform, overlay, display;
	transition-duration: 0.4s;
	transition-behavior: allow-discrete;
}
.dropdown-up .dropdown {
	transform-origin: bottom;
}
@starting-style {
	.dropdown {
		opacity: 0;
		transform: scaleY(0);
	}
}

.breadcrumbs .crumb {
	float: left !important;
	font-weight: bold !important;
	word-wrap: normal !important;
	background: linear-gradient(
		to bottom,
		rgba(235, 242, 250, 0.9),
		rgba(179, 198, 218, 0.68)
	) !important;
	border-radius: 8px !important;   /* afgeronde hoeken */
	overflow: hidden !important;      /* gradient netjes binnen de hoeken */
	padding: 4px 12px !important;     /* ietsje groter, beter balans rondom tekst */
	margin-right: 5px !important;     /* ruimte tussen crumbs */
	margin-top: 5px !important;     /* ruimte tussen crumbs */
	line-height: 1.5 !important;      /* betere verticale uitlijning van tekst */
}

/* Profile in overall_header.html */
.header-profile {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(145deg, #bacbde, #b8c8d6); /* subtiele blauw-grijze achtergrond */
    border: 1px solid;                                       /* iets dikkere border voor effect */
    border-image: linear-gradient(45deg, blue, grey, black, red) 1; /* rainbow border */
    border-radius: 6px;                                      /* afgeronde hoeken */
    padding: 2px 6px;                                        /* compacte padding rondom tekst */
    margin-top: 2px;
    line-height: 1.2;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);                  /* lichte schaduw */
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #fff;                                             /* witte tekst */
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;                                      /* voor dropdown positioning */
}

.header-profile:hover {
    background: linear-gradient(145deg, #aec2d9, #d7dfe8);  /* lichte hover gradient */
    box-shadow: 0 3px 5px rgba(0,0,0,0.15);                 /* iets sterkere hover schaduw */
}

/* Buttons */

.button {
  color: #18619B;                 /* Dark gray text */
  background-color: #d9e9fb;     /* Even lighter soft blue */
  font-size: 14px;               /* Smaller font */
  font-weight: 600;
  font-family: "Open Sans", "Droid Sans", Verdana, Arial, Helvetica;
  text-align: center;
  cursor: pointer;
  padding: 2px 2px;             /* Smaller padding */
  border: 1.2px solid #9cc4f1;  /* Light blue border */
  border-radius: 3px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  user-select: none;
}

.button:hover {
  color: #18619B;                 /* Dark gray text */
  background-color: #c3ddf9;     /* Slightly darker on hover */
  border-color: #7ba9e8;
}

.button:active {
  color: #18619B;                 /* Dark gray text */
  background-color: #a7c7f5;     /* Darker blue on active */
  border-color: #5685d0;
}

a.button1, input.button1, input.button3, a.button2, input.button2 {
	color: #fff !important;
	max-height: 20px;
	font-size: 14px;
	display: inline-flex;        /* flexbox inline */
	justify-content: center;     /* horizontal center */
	align-items: center;         /* vertical center */
	height: 32px;
	line-height: normal;
	background-color: #2279ee;
	border: 1px solid #005e8a;
	border-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
	transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
	background-image: none;
	text-align: center; /* fallback for non-flex */
}

a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
	background-color: #0099e6;
	border-color: #005e8a;
	color: #fff;
	background-image: none;
}

a.button1:active, input.button1:active,
a.button2:active, input.button2:active,
input.button3:active {
	background-color: #006699;
	border-color: #005e8a;
	color: #fff;
}

.inputbox {
	background-color: #f8f9fa;
	--angle: 0deg;
	border: 1px solid;
	border-top-color: currentcolor;
	border-right-width: 1px;
	border-right-color: currentcolor;
	border-bottom-color: currentcolor;
	border-left-color: currentcolor;
	border-image-outset: 0;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
	border-image: conic-gradient(from var(--angle), #ff0000, #067506, #f0f00a, #b67a0b, #d45c91, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000) 1;
	animation: 3s rotate linear infinite;
}

@keyframes rotate {
	to {
		--angle: 360deg;
	}
}

@property --angle {
	syntax: '<angle>';
	initial-value: 0deg;
	inherits: false;
}

.search-header {
	box-shadow: 0 0 10px #505C65;
}

.headerbar {
	background: #082D60;
	background: linear-gradient(90deg,rgba(8, 45, 96, 1) 0%, rgba(6, 45, 97, 1) 50%, rgba(9, 46, 97, 1) 100%);
	background-repeat: repeat-x;
}

.navbar {
	background-color: #DCDEE2;
}

.forabg, .forumbg {
	background-color: #444444;
	background-image: -moz-linear-gradient(top, #333333 0%, #444444 4%, #76828B 10%, #444444 29%, #505C65 38%, #505C65 100%);
	background-image: linear-gradient(to bottom, #333333 0%, #444444 4%, #333333 10%, #444444 29%, #505C65 38%,#505C65 100%);
	background-repeat: repeat-x;
}

.copyright {
	color: #ffffff;
	background: 
		linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
		url('https://www.phpbbextnl.be/images/copyrightimage.jpg') center/cover no-repeat fixed;
	border-radius: 12px;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(3px);
	
	padding: 1.5em 2em;
	margin: 1em auto 0.5em auto; /* boven = 2em, onder = 0.5em */
	max-width: 1100px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

	/* Typografie */
	font-family: 'Inter', sans-serif;
	font-size: 1.1rem;
	line-height: 1.6;
	letter-spacing: 0.3px;

	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.copyright:hover {
	transform: scale(1.02);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
	border-color: rgba(255, 255, 255, 0.5);
}

.sticky-steve {
	background-color: #0074ac !important;
	background-image: none !important;
}
.announce-steve {
	background-color: #008080 !important;
	background-image: none !important;
}
.global-steve {
	background-color: #a80000 !important;
	background-image: none !important;
}


/* Responsieve typografie en spacing */
@media (max-width: 768px) {
	.copyright {
		font-size: 1rem;
		padding: 1.2em 1.5em;
	}
}

@media (max-width: 480px) {
	.copyright {
		font-size: 0.95rem;
		padding: 1em;
		border-radius: 10px;
	}
}


.copyright a {
	color: #ffff68 !important;
}

li.row {
	background-color: #dddddd;
}

li.row:hover {
	background-color: #dddddd;
}

li.row.bg3 {
	background-color: #dddddd;
}

li.row.bg3:hover {
	background-color: #dddddd;
}

.post {
	padding: 5px 10px;
	margin-bottom: 7px;
	background-repeat: no-repeat;
	background-position: 100% 0;
	border-radius: 7px;
	border: 3px solid #DCDEE2;
	position: relative;
}

.jumpbox-cat-link {
	background-color: #505C65;
	background-image: -moz-linear-gradient(top, #333333 0%, #444444 4%, #76828B 10%, #444444 29%, #505C65 38%, #505C65 100%);
	background-image: linear-gradient(to bottom, #333333 0%, #444444 4%, #76828B 10%, #444444 29%, #505C65 38%,#505C65 100%);
	background-repeat: repeat-x;
	color: #FFFFFF;
}

.jumpbox-sub-link {
	background-color: #E8ECEE;
}

.ring-ring {
	color: #D31141;
	-webkit-animation: ring 4s .7s ease-in-out infinite;
	-webkit-transform-origin: 50% 4px;
	-moz-animation: ring 4s .7s ease-in-out infinite;
	-moz-transform-origin: 50% 4px;
	animation: ring 4s .7s ease-in-out infinite;
	transform-origin: 50% 4px;
}
@-webkit-keyframes ring {
  0% { -webkit-transform: rotateZ(0); }
  1% { -webkit-transform: rotateZ(30deg); }
  3% { -webkit-transform: rotateZ(-28deg); }
  5% { -webkit-transform: rotateZ(34deg); }
  7% { -webkit-transform: rotateZ(-32deg); }
  9% { -webkit-transform: rotateZ(30deg); }
  11% { -webkit-transform: rotateZ(-28deg); }
  13% { -webkit-transform: rotateZ(26deg); }
  15% { -webkit-transform: rotateZ(-24deg); }
  17% { -webkit-transform: rotateZ(22deg); }
  19% { -webkit-transform: rotateZ(-20deg); }
  21% { -webkit-transform: rotateZ(18deg); }
  23% { -webkit-transform: rotateZ(-16deg); }
  25% { -webkit-transform: rotateZ(14deg); }
  27% { -webkit-transform: rotateZ(-12deg); }
  29% { -webkit-transform: rotateZ(10deg); }
  31% { -webkit-transform: rotateZ(-8deg); }
  33% { -webkit-transform: rotateZ(6deg); }
  35% { -webkit-transform: rotateZ(-4deg); }
  37% { -webkit-transform: rotateZ(2deg); }
  39% { -webkit-transform: rotateZ(-1deg); }
  41% { -webkit-transform: rotateZ(1deg); }

  43% { -webkit-transform: rotateZ(0); }
  100% { -webkit-transform: rotateZ(0); }
}

@-moz-keyframes ring {
  0% { -moz-transform: rotate(0); }
  1% { -moz-transform: rotate(30deg); }
  3% { -moz-transform: rotate(-28deg); }
  5% { -moz-transform: rotate(34deg); }
  7% { -moz-transform: rotate(-32deg); }
  9% { -moz-transform: rotate(30deg); }
  11% { -moz-transform: rotate(-28deg); }
  13% { -moz-transform: rotate(26deg); }
  15% { -moz-transform: rotate(-24deg); }
  17% { -moz-transform: rotate(22deg); }
  19% { -moz-transform: rotate(-20deg); }
  21% { -moz-transform: rotate(18deg); }
  23% { -moz-transform: rotate(-16deg); }
  25% { -moz-transform: rotate(14deg); }
  27% { -moz-transform: rotate(-12deg); }
  29% { -moz-transform: rotate(10deg); }
  31% { -moz-transform: rotate(-8deg); }
  33% { -moz-transform: rotate(6deg); }
  35% { -moz-transform: rotate(-4deg); }
  37% { -moz-transform: rotate(2deg); }
  39% { -moz-transform: rotate(-1deg); }
  41% { -moz-transform: rotate(1deg); }

  43% { -moz-transform: rotate(0); }
  100% { -moz-transform: rotate(0); }
}

@keyframes ring {
  0% { transform: rotate(0); }
  1% { transform: rotate(30deg); }
  3% { transform: rotate(-28deg); }
  5% { transform: rotate(34deg); }
  7% { transform: rotate(-32deg); }
  9% { transform: rotate(30deg); }
  11% { transform: rotate(-28deg); }
  13% { transform: rotate(26deg); }
  15% { transform: rotate(-24deg); }
  17% { transform: rotate(22deg); }
  19% { transform: rotate(-20deg); }
  21% { transform: rotate(18deg); }
  23% { transform: rotate(-16deg); }
  25% { transform: rotate(14deg); }
  27% { transform: rotate(-12deg); }
  29% { transform: rotate(10deg); }
  31% { transform: rotate(-8deg); }
  33% { transform: rotate(6deg); }
  35% { transform: rotate(-4deg); }
  37% { transform: rotate(2deg); }
  39% { transform: rotate(-1deg); }
  41% { transform: rotate(1deg); }

  43% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

/* Code block */
.codebox {
	background-color: #ecf5ff;
	border-color: #9eafba;
}

.codebox p {
	border-bottom-color: #bfcbd2;
}

.codebox code {
	overflow: auto;
	display: block;
	height: auto;
	max-height: 200px;
	padding: 12px 5px;
	color: #00350e;
	font: 0.9em Monaco, "Andale Mono","Courier New", Courier, monospace;
	line-height: 1.3em;
}

/* responsive.css changes */
@media only screen and (max-width: 920px), only screen and (max-device-width: 920px) {
	html, body {
		background-color: #444444;
	}

	body {
		padding-left: 5px;
		padding-right: 3px;
	}

	#wrap {
		width: auto;
	}
}

@media only screen and (max-width: 860px), only screen and (max-device-width: 860px) {
	#wrap {
		width: auto;
	}
}
