

header{
	position: sticky;
	top: 0;
}




.topheader{
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
	margin: 0 auto;
	max-width: 1600px;
	position: sticky;
	top: 0;
	transition: all linear 0.2s;
}


.menu-logo{
    height: 35px;
	margin: 4px;
	margin-left: 15PX;
	transition: all linear 0.2s;
}

header.shrink .topheader{
	padding: 3px;
	color: #fff;
}

header.shrink{
	background-color: #2c1779;
	color: #fff;
	z-index: 99;
}


header.shrink .menu-logo{
	height: 25px;
	margin: 2px;
	margin-left: 15PX;
	filter: grayscale() invert();
}


.page-footer{
    text-align: center;
}






/*
------------------ posts de wp
*/

.wp-posts {
	margin: 1em 0;
}

.wp-post {
	border-bottom: 1px solid #ddd;
	padding: 0.5em 0;
}

.wp-post-title {
	margin: 0;
	font-size: 1.1rem;
	color: var(--primary-color-theme, #005cbf);
	cursor: pointer;
}

.wp-post-title:hover {
	text-decoration: underline;
}

.wp-post-date {
	font-size: 0.8rem;
	color: #666;
	display: block;
	margin-bottom: 0.5em;
}

.wp-post-excerpt {
	color: #444;
	font-size: 0.95rem;
}




/*
------------------- big-banner
*/


.big-banner{
	width: 100%;
	height: 88vh;
	background-repeat: no-repeat;
	background-position-x:  center;
	background-position-y: bottom;
	background-size: cover;
	background-image: url('../img/bg/banner-bg.jpg');
	background-attachment:fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.big-banner .big-banner-image-center{
	max-width: 100%;
	margin-top: 3vh;
	margin-bottom: 55px;
	max-height: 90%;
}

.big-banner .big-banner-image-claim{
	width: 80vh;
	max-width: 80%;
}

.big-banner .big-banner-big-banner-title{
	position: absolute;
	top: 15vh;
	left: 10%;
	font-size: 75px;
	width: 32vh;
}

@media (max-height: 400px) {
	
	.big-banner{
		background-position-y: bottom;
	}
}

/*
end big-banner---------------------------------
*/





/*
------------------- botonera
*/


.menu-buttons{
	
}

.grid-row{
	display: grid;
	grid-template-columns: repeat(6, 1fr); /* 6 columnas iguales */
	gap: 1rem; /* espacio entre columnas (y filas) */
	align-items: center;
  }
  
.col-button{
	padding: 0;
	box-sizing: border-box;
	text-align:center;
	background:#f3f3f3;
	border-radius:8px;
	background-position: center 10px;
	background-repeat: no-repeat;
	background-size: auto 38px;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: end;
	color: #FFF;
	font-size: 10px;
	font-weight: bold;
	cursor: pointer;
	transform: translateY(8px);
	border: 4px solid transparent;
	transition: all linear 0.3s;
}

.col-button:hover{
	border-color: #000000;
}

.col-button:nth-child(1){ background-color: #7dccfa; background-image: url('../img/icon/actividades-todos-los-dias.png'); text-shadow: 1px 1px 1px rgba(0,18,58,0.2); }
.col-button:nth-child(2){ background-color: #0a80af; background-image: url('../img/icon/miscelanea.png'); }
.col-button:nth-child(3){ background-color: #f56e50; background-image: url('../img/icon/moros-y-cristianos.png'); }
.col-button:nth-child(4){ background-color: #de463c; background-image: url('../img/icon/sardina.png'); }
.col-button:nth-child(5){ background-color: #38ad79; background-image: url('../img/icon/conciertos-y-espectaculos.png');}
.col-button:nth-child(6){ background-color: #dec537; background-image: url('../img/icon/cine-y-teatro.png'); text-shadow: 1px 1px 1px rgba(45,28,0,0.2); }

/* responsive: menos columnas en pantallas pequeñas */
@media (max-width: 767px){
	.grid-row{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) and (max-width:960px) {
	.col-button{height: 90px;}
}


/*
end botonera ---------------------------------
*/







@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(8px); }
	to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
	opacity: 0; 
	animation: fadeInUp 700ms ease-out forwards;
}


.fade-in-2 {
	opacity: 0; 
	animation: fadeInUp 400ms ease-out forwards;
	animation-delay: 400ms;
}


@media (prefers-reduced-motion: reduce) {
	.fade-in { animation: none; opacity: 1; transform: none; }
}