@import url('https://fonts.googleapis.com/css2?family=Gabriela&display=swap');

:root {
	--color-red: #ED6F6A;
	--color-red-deep: #D05065;
	--color-yellow: #FFD98F;
	--color-blue: #a69dc4;
	--color-blue-deep: #7a7197;
	--color-brown: #AF6F57;
	--color-brown-light: #D5B992;
	--color-green: #9BB475;
	--color-pink-light: #FBD9C9;
	--color-pink-bg: rgba(255,241,208,1);
    --color-purple-light: #F0EBFF;
	--color-turquoise: #8CAA92;
	--color-sky-top: #D2F1DA;
	--color-sky-bottom: #C7DFCF;
	--border-radius: 0;
}

/*
	Custom fonts
*/
@font-face {
    font-family: 'Gabriela';
    src: url('../font/Gabriela-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}


body {
	font-family: ABeeZee;
	margin-bottom: 20px;
	background-color: var(--color-purple-light);
	/* background-image: url('../img/bgf-background.jpg'); */
	background-size: cover;
	background-attachment:fixed;
	background-position: top center;
	background-repeat: no-repeat;
}
/*
	Titles
*/
H1,
H2,
H3,
H4,
H5 {
	font-family: Gabriela;
}
H1 {
	color: var(--color-red);
}
H2 {
	color: var(--color-brown);
}
H3 {
	color: var(--color-red);
}
H4 {
	color: var(--color-green);
}
/*
	Header
*/
HEADER {
	margin-bottom: 10px;
	padding-bottom: 10px;
	background-color: rgba(187,45,59,.2);
}
.site-logo {
	display: block;
	width: 200px;
	padding: 10px 16px;
	background-color: var(--color-blue-deep);
	border-radius: 8px;
	transition: width .5s;
}
@media (max-width: 640px) {
	.site-logo {
		width: 140px;
	}
}
.main-site-link {
	width: fit-content;
}
/*
	Forms and inputs
*/
LABEL {
	font-weight: bold;
	color: var(--color-red-deep);
}
.form-check-label {
	font-weight: normal;
	color: black;
}
.form-control:read-only {
	color: #999;
}
FORM.register {
	padding: 20px;
	border: dotted 3px var(--color-blue-deep);
	border-radius: 20px;
	background-color: white;
}
FORM .refund {
	background-color: #F0F0F0;
	padding: 20px;
	border-radius: 20px;
}
FORM .info {
	font-style: italic;
}
/*
	Link on row
*/
A.row {
	border-bottom: solid 1px var(--color-brown-light);
	text-decoration: none;
}
A.row > DIV {
	text-decoration: none;
	color: black;
}
A.row:hover {
	background-color: #bde7ff;
}
/*
	Nav
*/
.nav .nav-item .nav-link.active {
	color: black;
	text-decoration: underline;
}
/*
	Card
*/
.card {
	border-radius: 0;
	border-color: var(--color-brown-light);
}
.card-footer {
	background-color: var(--color-pink-bg);
}
/*
	Primary color
*/
.btn-primary {
	background-color: var(--color-blue-deep);
}
.btn-primary,
.btn-outline-primary {
	border-color: var(--color-blue-deep);
}
.btn-primary:hover,
.btn-outline-primary:hover {
	background-color: var(--color-sky-top);
	border-color: var(--color-blue-deep);
}
A,
.btn-outline-primary {
	color: var(--color-blue-deep);
}
/*
	Alert
*/
.alert {
	border-style: none;
}
.alert-success {
	background-color: var(--color-turquoise);
	color: white;
}
/*
	Language switcher
*/
.lang-switcher {
	display: flex;
}
.lang-switcher A {
	display: block;
	margin-left: 10px;

}
.lang-switcher A.active {
	text-decoration: none;
	color: var(--color-red-deep);
	border-bottom: dotted 2px var(--color-red-deep);
}
/*
	Scanner
*/
.scanner {
	border: solid 1px var(--color-red);
	border-radius: 10px;
	padding: 10px;
	margin-bottom: 20px;
}
/*
	Quote (comment)
*/
BLOCKQUOTE {
	margin-left: 10px;
	border-left: solid 2px #999;
	padding-left: 10px;
	color: #666;
	font-style: italic;
}
/*
	Placeholder
*/
::-webkit-input-placeholder {
    color: #aaa !important;
    font-weight: normal;
    opacity: 1;
}
INPUT::-moz-placeholder,
TEXTAREA::-moz-placeholder {
    color: #aaa !important;
    font-weight: normal;
    opacity: 1;
}
INPUT:-ms-input-placeholder,
TEXTAREA:-ms-input-placeholder {
    color: #aaa !important;
    font-weight: normal;
    opacity: 1;
}
INPUT::placeholder,
TEXTAREA::placeholder {
    color: #aaa !important;
    font-weight: normal;
    opacity: 1;
}
