/************************************************  
 *	v. 1.0.1 									*
 *	Contingut de fitxes 						*
 *  www.senderslaguar.com 	 					*
 *												*
 *	Per:										*
 *  Marcos Moll Barber 							*
 *  Estudis Geomoll 							*
 *  estudisgeomoll@gmail.com 					*
 ************************************************/


/******************
 * IMPORTACIONS 
*******************/
@import url(capçalera.css);
@import url(menu.css);
@import url(peu.css);

/******************
 * GENÈRIC 
*******************/

* {
	text-decoration: none;
	/* box-sizing: border-box; */
}


/******************
 * BOTONS SENDERS 
*******************/
.botonsSenders {
	padding-left: 5px;
	/* Animació */
	-webkit-animation-name: moureBotons; /* Safari */
	-webkit-animation-duration: 1.5s; /* Safari */
	animation-name: moureBotons;
	animation-duration: 1.5s;
}	

.botonsSenders button{
	background: #909000;
	border-radius: 5px;
	color: #fff;
	margin: 3px;
	padding: 8px;
	cursor: pointer;
}	

.botonsSenders button:hover{
	background: #606000;
}

/***************
 * COS PRINCIPAL 
****************/
.main{
	padding-top: 70px;
}

#contingut {
	padding-top: 2%;
	padding-left: 7%;
	padding-right: 7%;
}

/***************
 * SECCIONS 
****************/
section{
	/* width: 98%;*/ 
	margin: 10px;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 2px;
	padding-top: 2px;
	/* background: #DDE6DB;*/ 
	border-radius: 5px;
	border: 1px solid #C2C2C2;
	/* Animació */
	-webkit-animation-name: moureSeccions; /* Safari */
	-webkit-animation-duration: 1.5s; /* Safari */
	animation-name: moureSeccions;
	animation-duration: 1.5s;
}

/* Colors fons */
.entorn { background: #DDE6DB; }
.localitzacio { background: #E9EAEC; }
.toponim { background: #EEE2D1; }
.descripcio { background: #E5DAD4; }
.bibliografia { background: #F1EEC8; }

.entorn:hover,
.localitzacio:hover,
.toponim:hover,
.descripcio:hover,
.bibliografia:hover {
	background: #EAE9E6;
}

/***************
 * FONTS 
****************/
h1.subtitol {
	font-family: 'Bitter', serif;
	font-size: 30px;
	padding-left: 15px;
}

h2, p, button{
	padding-left: 12px;
	padding-right: 12px;
	line-height: 1.3em;
}

p, label{
	font-family: 'Nunito', sans-serif;
}

h2 {
	font-family: 'Oswald', sans-serif;
	letter-spacing: 2px;
	font-size: 20px;
}

h5 {
	line-height: 0.1em;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 2px;
}

hr{
	border-top: 0px;
	border-bottom: 1px solid #C2C2C2;
}

/***************
 * ANIMACIONS 
****************/
@keyframes moureSeccions{
	0%{ transform: translateX(100%); }
	100%{ transform: translateX(0%); }
}
  /* crhome */
@-webkit-keyframes moureSeccions{
	0%{ transform: translateX(100%); }
	100%{ transform: translateX(0%); }
}
  /* Mozilla */
@-moz-keyframes moureSeccions{
	0%{ transform: translateX(100%); }
	100%{ transform: translateX(0%); }
}

@keyframes moureBotons{
	0%{ transform: translateX(-100%); }
	100%{ transform: translateX(0%); }
}
  /* crhome */
@-webkit-keyframes moureBotons{
	0%{ transform: translateX(-100%); }
	100%{ transform: translateX(0%); }
}
  /* Mozilla */
@-moz-keyframes moureBotons{
	0%{ transform: translateX(-100%); }
	100%{ transform: translateX(0%); }
}

/***************
 * RESPONSIVE 
****************/
@media (max-width: 650px){
	h1.subtitol { font-size: 24px; padding: 0 0 0 1px; }
	header { padding-bottom: 0; }
	#contingut { padding: 5px; }
	.ol-touch .ol-control button { font-size: 1em; }
	h1 ~ div { float: none; }
	div.senders { padding: 0 0 0 0; }
}

@media (max-width: 500px){
	section{ margin: 5px; }
	.botonsSenders button { 
		padding-left: 5px;
		padding-right: 5px;
		line-height: 1.0em;
		font-size: 0.6em;
	} 
}

@media (max-width: 350px){ 
	#contingut{ padding: 0.5px; }
	.botonsSenders button { font-size: 0.55em; } 
}

