/* ==========================================
   SISTEMA DE DISEÑO (Variables Globales)
   ========================================== */
:root {
    /* Paleta de Colores */
    --bg-main: #1a1a1a;
    --bg-card: #2a2a2a;
    --bg-section: #222222;
    
    --text-primary: #ffffff;
    --text-muted: #cccccc;
    
    --accent-color: #ff944d;
    --accent-hover: #f3ac7d;
    
    --border-main: #444444;
    --border-light: #333333;

    /* Espaciados y Bordes */
    --radius-main: 8px;
    --transition-fast: 0.2s ease-in-out;
}

/* ==========================================
   ESTILOS BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: sans-serif;
    padding: 40px;
}

h1 {
    color: var(--accent-color);
    margin-bottom: 20px;
}

ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin-bottom: 40px;
}

/* ==========================================
   GALERÍA DE PROYECTOS
   ========================================== */
.projects-gallery {
    margin-top: 60px;
}

.projects-gallery h2 {
    color: var(--text-primary);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.project-card-link {
    text-decoration: none; /* Elimina el subrayado de los enlaces */
    display: block;        /* Hace que todo el espacio de la tarjeta sea clickeable */
}

.project-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-main);
    border: 1px solid var(--border-main);
    transition: transform var(--transition-fast);
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.project-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.project-card p {
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   SECCIÓN DE CONTACTO
   ========================================== */
.contact-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: var(--bg-section);
    border-radius: var(--radius-main);
    border: 1px solid var(--border-light);
}

.contact-section h2 {
    color: var(--text-primary);
    margin-bottom: 15px;
}

.contact-section p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: var(--bg-main);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color var(--transition-fast);
}

.contact-btn:hover {
    background-color: var(--accent-hover);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    margin-top: 60px;
    text-align: center;
    color: var(--text-muted);
}