/* ESTILOS GLOBALES - FUKURO CREATIVE
   Paleta: #F9F9F9 (Fondo), #1A1A1A (Texto), #C5A059 (Acento Oro)
*/

:root {
    --bg-color: #F9F9F9;
    --text-color: #1A1A1A;
    --accent-color: #C5A059; /* Oro apagado */
    --spacing: 2rem;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, .logo {
    font-family: 'Playfair Display', serif; /* Tipografía elegante */
    font-weight: 400;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* --- NAVEGACIÓN --- */
header {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(249, 249, 249, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a:hover {
    color: var(--accent-color);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.btn {
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-color);
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: var(--text-color);
    color: white;
}

/* --- GRID DE PROYECTOS --- */
.projects {
    padding: 5rem 5%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    aspect-ratio: 3/4;
    background: #eee;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: var(--transition);
}

.project-card h3 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.5rem;
}

/* --- ABOUT SECTION --- */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    align-items: center;
}

.about-text {
    padding: 10%;
}

.about-image {
    background: #e0e0e0;
    height: 100%;
    min-height: 400px;
}

/* --- FOOTER --- */
footer {
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid #ddd;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .about-container { grid-template-columns: 1fr; }
    nav { display: none; } /* Podrías agregar un menú hamburguesa luego */
    .hero h1 { font-size: 3rem; }
}