/* Estilos Globales - alejandromata.work */
body {
    background-color: #fdfcf0; /* Blanco Crema */
    color: #121212;
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fdfcf0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-weight: 900;
    letter-spacing: 2px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #121212;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Hero Video */
.hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.hero iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Grid de Proyectos */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 50px 8%;
}

.project-card {
    text-align: left;
}

.project-img {
    width: 100%;
    aspect-ratio: 2/3;
    background: #e0ddd0; /* Placeholder */
    margin-bottom: 15px;
    border-radius: 4px;
}

/* Botón Idioma Inferior Derecha */
.lang-toggle {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #121212;
    color: #fdfcf0;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1000;
}

footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.social-icons a {
    color: #121212;
    font-size: 1.4rem;
    margin: 0 10px;
    text-decoration: none;
}
