Meta Description" name="description" />
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Club Social y Deportivo Mijayi</title>
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700;900&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<style>
/* VARIABLES DE COLOR - Estilo Sobrio */
:root {
--celeste-bandera: #74ACDF;
--negro-profundo: #1A1A1A;
--blanco-puro: #FFFFFF;
--gris-claro: #F4F4F4;
}
body {
margin: 0;
font-family: 'Roboto', sans-serif;
background-color: var(--gris-claro);
}
/* HEADER MODULAR */
header {
background-color: var(--negro-profundo);
color: var(--blanco-puro);
padding: 20px 5%;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 5px solid var(--celeste-bandera);
}
/* Bloque de Título Izquierdo */
.header-title {
font-family: 'Big Shoulders Display', sans-serif;
font-size: 1.8rem;
line-height: 1;
text-transform: uppercase;
letter-spacing: 1px;
}
.header-title span {
color: var(--celeste-bandera);
display: block;
font-size: 1.2rem;
}
/* Contenedor del Logo Central */
.logo-container img {
height: 80px;
/* Aquí iría el logo circular que diseñamos */
filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5));
}
/* Nombre del Club Derecho */
.club-name-large {
font-family: 'Big Shoulders Display', sans-serif;
font-size: 3.5rem;
font-weight: 900;
letter-spacing: -2px;
}
/* MENÚ DE NAVEGACIÓN MODULAR */
nav {
background-color: var(--blanco-puro);
padding: 10px 5%;
display: flex;
justify-content: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
nav a {
text-decoration: none;
color: var(--negro-profundo);
font-weight: 700;
margin: 0 15px;
text-transform: uppercase;
font-size: 0.9rem;
transition: color 0.3s;
}
nav a:hover {
color: var(--celeste-bandera);
border-bottom: 2px solid var(--celeste-bandera);
}
/* RESPONSIVE: Para celulares */
@media (max-width: 768px) {
header {
flex-direction: column;
text-align: center;
gap: 15px;
}
.club-name-large {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<header>
<div class="header-title">
<span>Club Social</span>
y Deportivo
</div>
<div class="logo-container">
<img src="https://via.placeholder.com/80" alt="Logo Mijayi">
</div>
<div class="club-name-large">
MIJAYI
</div>
</header>
<nav>
<a href="#">Inicio</a>
<a href="#">Noticias</a>
<a href="#">Equipos</a>
<a href="#">Fixture</a>
<a href="#">Socios</a>
<a href="#">Tienda</a>
<a href="#">Contacto</a>
</nav>
</body>
</html>
5
4
83KB
94KB
252.0ms
292.0ms
375.0ms